rpc/service_map.go

184 lines
4.7 KiB
Go
Raw Normal View History

2017-10-25 14:52:47 +00:00
package rpc
import (
"fmt"
"reflect"
"strings"
"sync"
"unicode"
"unicode/utf8"
)
var (
// Precompute the reflect.Type of error and http.Request
2017-10-27 03:06:50 +00:00
typeOfError = reflect.TypeOf((*error)(nil)).Elem()
2017-10-25 14:52:47 +00:00
)
// ----------------------------------------------------------------------------
// service
// ----------------------------------------------------------------------------
type service struct {
name string // name of service
rcvr reflect.Value // receiver of methods for the service
rcvrType reflect.Type // type of the receiver
methods map[string]*serviceMethod // registered methods
}
type serviceMethod struct {
2017-11-02 06:39:30 +00:00
method reflect.Method // receiver method
paramTypes []reflect.Type // type of the request argument
returnType reflect.Type // type of the response argument
2017-10-25 14:52:47 +00:00
}
2017-11-02 06:39:30 +00:00
func (sm *serviceMethod) getParams() (values []reflect.Value, instances []interface{}) {
if nil == sm.paramTypes || 0 == len(sm.paramTypes) {
return nil, nil
}
pCount := len(sm.paramTypes)
values = make([]reflect.Value, pCount)
instances = make([]interface{}, pCount)
for indexI := 0; indexI < pCount; indexI++ {
values[indexI] = reflect.New(sm.paramTypes[indexI])
instances[indexI] = values[indexI].Interface()
}
return
}
2017-10-31 09:25:44 +00:00
2017-10-25 14:52:47 +00:00
// ----------------------------------------------------------------------------
// serviceMap
// ----------------------------------------------------------------------------
// serviceMap is a registry for services.
type serviceMap struct {
mutex sync.Mutex
services map[string]*service
}
// register adds a new service using reflection to extract its methods.
func (m *serviceMap) register(rcvr interface{}, name string) error {
// Setup service.
s := &service{
name: name,
rcvr: reflect.ValueOf(rcvr),
rcvrType: reflect.TypeOf(rcvr),
methods: make(map[string]*serviceMethod),
}
if name == "" {
s.name = reflect.Indirect(s.rcvr).Type().Name()
if !isExported(s.name) {
return fmt.Errorf("rpc: type %q is not exported", s.name)
}
}
if s.name == "" {
return fmt.Errorf("rpc: no service name for type %q",
s.rcvrType.String())
}
2017-10-27 04:00:30 +00:00
2017-10-25 14:52:47 +00:00
// Setup methods.
2017-11-02 06:39:30 +00:00
Loop:
2017-10-25 14:52:47 +00:00
for i := 0; i < s.rcvrType.NumMethod(); i++ {
method := s.rcvrType.Method(i)
mtype := method.Type
// Method must be exported.
if method.PkgPath != "" {
continue
}
2017-10-27 03:06:50 +00:00
2017-11-02 06:39:30 +00:00
var paramTypes []reflect.Type
mCount := mtype.NumIn()
if 0 < mCount {
paramTypes = make([]reflect.Type, mCount)
for indexI := 0; indexI < mCount; indexI++ {
param := mtype.In(indexI)
if !isExportedOrBuiltin(param) {
continue Loop
}
paramTypes[indexI] = param.Elem()
}
2017-10-25 14:52:47 +00:00
}
2017-11-02 06:39:30 +00:00
var returnType reflect.Type
switch mtype.NumOut() {
case 1:
if returnType := mtype.Out(0); returnType != typeOfError {
continue Loop
}
case 2:
if returnType := mtype.Out(0); !isExportedOrBuiltin(returnType) {
continue Loop
}
if returnType := mtype.Out(1); returnType != typeOfError {
continue Loop
}
returnType = mtype.Out(1).Elem()
default:
2017-10-25 14:52:47 +00:00
continue
}
2017-11-02 06:39:30 +00:00
2017-10-25 14:52:47 +00:00
s.methods[method.Name] = &serviceMethod{
2017-11-02 06:39:30 +00:00
method: method,
paramTypes: paramTypes,
returnType: returnType,
2017-10-25 14:52:47 +00:00
}
}
if len(s.methods) == 0 {
2017-11-02 06:39:30 +00:00
return fmt.Errorf("rpc: %q has no exported methods of suitable type", s.name)
2017-10-25 14:52:47 +00:00
}
// Add to the map.
m.mutex.Lock()
defer m.mutex.Unlock()
if m.services == nil {
m.services = make(map[string]*service)
} else if _, ok := m.services[s.name]; ok {
return fmt.Errorf("rpc: service already defined: %q", s.name)
}
m.services[s.name] = s
return nil
}
// get returns a registered service given a method name.
//
// The method name uses a dotted notation as in "Service.Method".
func (m *serviceMap) get(method string) (*service, *serviceMethod, error) {
parts := strings.Split(method, ".")
if len(parts) != 2 {
err := fmt.Errorf("rpc: service/method request ill-formed: %q", method)
return nil, nil, err
}
m.mutex.Lock()
service := m.services[parts[0]]
m.mutex.Unlock()
if service == nil {
err := fmt.Errorf("rpc: can't find service %q", method)
return nil, nil, err
}
serviceMethod := service.methods[parts[1]]
if serviceMethod == nil {
err := fmt.Errorf("rpc: can't find method %q", method)
return nil, nil, err
}
return service, serviceMethod, nil
}
// isExported returns true of a string is an exported (upper case) name.
func isExported(name string) bool {
rune, _ := utf8.DecodeRuneInString(name)
return unicode.IsUpper(rune)
}
// isExportedOrBuiltin returns true if a type is exported or a builtin.
func isExportedOrBuiltin(t reflect.Type) bool {
for t.Kind() == reflect.Ptr {
t = t.Elem()
}
// PkgPath will be non-empty even for an exported type,
// so we need to check the type name as well.
return isExported(t.Name()) || t.PkgPath() == ""
}