37 lines
771 B
Go
37 lines
771 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"git.loafle.net/commons_go/logging"
|
||
|
"git.loafle.net/commons_go/rpc"
|
||
|
"git.loafle.net/commons_go/rpc/protocol"
|
||
|
)
|
||
|
|
||
|
type ServletHandlers struct {
|
||
|
rpc.ServletHandlers
|
||
|
|
||
|
RPCRegistry rpc.Registry
|
||
|
}
|
||
|
|
||
|
func (sh *ServletHandlers) Invoke(requestCodec protocol.RegistryCodec) (result interface{}, err error) {
|
||
|
if !sh.RPCRegistry.HasMethod(requestCodec.Method()) {
|
||
|
return nil, fmt.Errorf("RPC Servlet Handler: Method[%s] is not exist", requestCodec.Method())
|
||
|
}
|
||
|
|
||
|
result, err = sh.RPCRegistry.Invoke(requestCodec)
|
||
|
if nil != err {
|
||
|
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (sh *ServletHandlers) Validate() {
|
||
|
sh.ServletHandlers.Validate()
|
||
|
|
||
|
if nil == sh.RPCRegistry {
|
||
|
logging.Logger().Panic(fmt.Sprintf("RPC Servlet Handler: RPC Registry must be specified"))
|
||
|
}
|
||
|
}
|