-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(runtime): message router service #19571
Merged
Merged
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
1f28529
feat: message router service
julienrbrt c8622b3
updates
julienrbrt cf6ff8a
`make lint-fix`
julienrbrt 3c550b2
updates
julienrbrt 9700f78
updates
julienrbrt c7b8a8a
nit
julienrbrt 37c08d2
feedback
julienrbrt ad4ec72
go docs
julienrbrt 3a986fa
add test
julienrbrt e8f8d24
updates
julienrbrt 64a92c4
updates
julienrbrt 092f902
lint
julienrbrt dee1a22
fix test only
julienrbrt d84802d
updates
julienrbrt 59f1727
updates
julienrbrt c58a930
fixes
julienrbrt e38add9
Merge branch 'main' into julien/msgrouterservice
julienrbrt 1caec81
match api
julienrbrt b3a330a
add `CanInvoke`
julienrbrt ca231ae
Merge branch 'main' into julien/msgrouterservice
julienrbrt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package router | ||
|
||
import ( | ||
"context" | ||
|
||
"google.golang.org/protobuf/runtime/protoiface" | ||
) | ||
|
||
// Service is the interface that wraps the basic methods for a router service. | ||
type Service interface { | ||
InvokeTyped(ctx context.Context, req, res protoiface.MessageV1) error | ||
julienrbrt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// InvokeUntyped(ctx context.Context, req protoiface.MessageV1) (res protoiface.MessageV1, err error) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package runtime | ||
|
||
import ( | ||
"context" | ||
|
||
"cosmossdk.io/core/router" | ||
"cosmossdk.io/core/store" | ||
"github.com/cosmos/cosmos-sdk/baseapp" | ||
"github.com/cosmos/gogoproto/proto" | ||
protov2 "google.golang.org/protobuf/proto" | ||
"google.golang.org/protobuf/runtime/protoiface" | ||
) | ||
|
||
func NewMsgRouterService(storeService store.KVStoreService, router *baseapp.MsgServiceRouter) router.Service { | ||
return &msgRouterService{ | ||
storeService: storeService, | ||
router: router, | ||
julienrbrt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
} | ||
|
||
type msgRouterService struct { | ||
storeService store.KVStoreService | ||
router *baseapp.MsgServiceRouter | ||
} | ||
|
||
// InvokeTyped implements router.Service. | ||
func (m *msgRouterService) InvokeTyped(ctx context.Context, req protoiface.MessageV1, res protoiface.MessageV1) error { | ||
messageName := msgTypeURL(req) | ||
return m.router.HybridHandlerByMsgName(messageName)(ctx, req, res) | ||
} | ||
|
||
// msgTypeURL returns the TypeURL of a `sdk.Msg`. | ||
func msgTypeURL(msg proto.Message) string { | ||
if m, ok := msg.(protov2.Message); ok { | ||
return "/" + string(m.ProtoReflect().Descriptor().FullName()) | ||
} | ||
|
||
return "/" + proto.MessageName(msg) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this dep will be gone in server_modular as I can make use of this: https://github.com/cosmos/cosmos-sdk/pull/19499/files#diff-c1fc6f9f872ad64b8a1e6dee2e5e8bb2d675b920a403e621b8cf1f4ac5d6938cR12-R21