aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/v2/utils.go
diff options
context:
space:
mode:
authorzsfelfoldi <zsfelfoldi@gmail.com>2015-12-10 01:28:07 +0800
committerzsfelfoldi <zsfelfoldi@gmail.com>2015-12-16 10:48:08 +0800
commitf3aac71fad041dedd239f0a86f7c7c43614cbf4f (patch)
treee20b12359fbf06fb9f44d3c8120947ba97b4546a /rpc/v2/utils.go
parentfa187a366dda1894179635eeec2a929bfacc4ad3 (diff)
downloadgo-tangerine-f3aac71fad041dedd239f0a86f7c7c43614cbf4f.tar
go-tangerine-f3aac71fad041dedd239f0a86f7c7c43614cbf4f.tar.gz
go-tangerine-f3aac71fad041dedd239f0a86f7c7c43614cbf4f.tar.bz2
go-tangerine-f3aac71fad041dedd239f0a86f7c7c43614cbf4f.tar.lz
go-tangerine-f3aac71fad041dedd239f0a86f7c7c43614cbf4f.tar.xz
go-tangerine-f3aac71fad041dedd239f0a86f7c7c43614cbf4f.tar.zst
go-tangerine-f3aac71fad041dedd239f0a86f7c7c43614cbf4f.zip
rpc/v2: optionally passing context argument to rpc v2 api methods
Diffstat (limited to 'rpc/v2/utils.go')
-rw-r--r--rpc/v2/utils.go25
1 files changed, 17 insertions, 8 deletions
diff --git a/rpc/v2/utils.go b/rpc/v2/utils.go
index a564b2473..ca37924a3 100644
--- a/rpc/v2/utils.go
+++ b/rpc/v2/utils.go
@@ -24,6 +24,8 @@ import (
"reflect"
"unicode"
"unicode/utf8"
+
+ "golang.org/x/net/context"
)
// Is this an exported - upper case - name?
@@ -107,6 +109,8 @@ func isBlockNumber(t reflect.Type) bool {
return t == blockNumberType
}
+var contextType = reflect.TypeOf(new(context.Context)).Elem()
+
// suitableCallbacks iterates over the methods of the given type. It will determine if a method satisfies the criteria
// for a RPC callback or a subscription callback and adds it to the collection of callbacks or subscriptions. See server
// documentation for a summary of these criteria.
@@ -129,12 +133,19 @@ METHODS:
h.method = method
h.errPos = -1
+ firstArg := 1
+ numIn := mtype.NumIn()
+ if numIn >= 2 && mtype.In(1) == contextType {
+ h.hasCtx = true
+ firstArg = 2
+ }
+
if h.isSubscribe {
- h.argTypes = make([]reflect.Type, mtype.NumIn()-1) // skip rcvr type
- for i := 1; i < mtype.NumIn(); i++ {
+ h.argTypes = make([]reflect.Type, numIn-firstArg) // skip rcvr type
+ for i := firstArg; i < numIn; i++ {
argType := mtype.In(i)
if isExportedOrBuiltinType(argType) {
- h.argTypes[i-1] = argType
+ h.argTypes[i-firstArg] = argType
} else {
continue METHODS
}
@@ -144,17 +155,15 @@ METHODS:
continue METHODS
}
- numIn := mtype.NumIn()
-
// determine method arguments, ignore first arg since it's the receiver type
// Arguments must be exported or builtin types
- h.argTypes = make([]reflect.Type, numIn-1)
- for i := 1; i < numIn; i++ {
+ h.argTypes = make([]reflect.Type, numIn-firstArg)
+ for i := firstArg; i < numIn; i++ {
argType := mtype.In(i)
if !isExportedOrBuiltinType(argType) {
continue METHODS
}
- h.argTypes[i-1] = argType
+ h.argTypes[i-firstArg] = argType
}
// check that all returned values are exported or builtin types