forked from cosmos/cosmos-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queryrouter.go
41 lines (31 loc) · 956 Bytes
/
queryrouter.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package baseapp
import (
"fmt"
sdk "github.com/cosmos/cosmos-sdk/types"
)
type QueryRouter struct {
routes map[string]sdk.Querier
}
var _ sdk.QueryRouter = NewQueryRouter()
// NewQueryRouter returns a reference to a new QueryRouter.
func NewQueryRouter() *QueryRouter {
return &QueryRouter{
routes: map[string]sdk.Querier{},
}
}
// AddRoute adds a query path to the router with a given Querier. It will panic
// if a duplicate route is given. The route must be alphanumeric.
func (qrt *QueryRouter) AddRoute(path string, q sdk.Querier) sdk.QueryRouter {
if !sdk.IsAlphaNumeric(path) {
panic("route expressions can only contain alphanumeric characters")
}
if qrt.routes[path] != nil {
panic(fmt.Sprintf("route %s has already been initialized", path))
}
qrt.routes[path] = q
return qrt
}
// Route returns the Querier for a given query route path.
func (qrt *QueryRouter) Route(path string) sdk.Querier {
return qrt.routes[path]
}