49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package socket
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.loafle.net/commons_go/logging"
|
|
"git.loafle.net/commons_go/rpc/client"
|
|
"git.loafle.net/commons_go/rpc/protocol"
|
|
"git.loafle.net/commons_go/server"
|
|
)
|
|
|
|
type ClientReadWriteCloseHandlers struct {
|
|
client.ClientReadWriteCloseHandlers
|
|
|
|
Address string
|
|
}
|
|
|
|
func (crwch *ClientReadWriteCloseHandlers) Connect() (interface{}, error) {
|
|
return nil, fmt.Errorf("RPC Client RWC Handler: ClientHandlers method[Connect] is not implement")
|
|
}
|
|
|
|
func (crwch *ClientReadWriteCloseHandlers) ReadResponse(clientCTX ClientContext, codec protocol.ClientCodec, conn interface{}) (protocol.ClientResponseCodec, error) {
|
|
soc := conn.(server.Socket)
|
|
resCodec, err := codec.NewResponse(soc)
|
|
|
|
return resCodec, err
|
|
}
|
|
|
|
func (crwch *ClientReadWriteCloseHandlers) WriteRequest(clientCTX ClientContext, codec protocol.ClientCodec, conn interface{}, method string, params interface{}, id interface{}) error {
|
|
soc := conn.(server.Socket)
|
|
|
|
if wErr := codec.WriteRequest(soc, method, params); nil != wErr {
|
|
return wErr
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (crwch *ClientReadWriteCloseHandlers) Disconnect(conn interface{}) {
|
|
soc := conn.(server.Socket)
|
|
soc.Close()
|
|
}
|
|
|
|
func (crwch *ClientReadWriteCloseHandlers) Validate() {
|
|
if "" == crwch.Address {
|
|
logging.Logger().Panic("RPC Client RWC Handler: Address must be specified")
|
|
}
|
|
}
|