2017-11-29 18:55:24 +09:00
|
|
|
package socket
|
|
|
|
|
|
|
|
import (
|
2017-11-30 18:35:23 +09:00
|
|
|
"git.loafle.net/commons_go/logging"
|
2017-11-29 18:55:24 +09:00
|
|
|
"git.loafle.net/commons_go/rpc/client"
|
|
|
|
"git.loafle.net/commons_go/rpc/protocol"
|
2017-11-30 18:35:23 +09:00
|
|
|
csc "git.loafle.net/commons_go/server/client"
|
2017-11-29 18:55:24 +09:00
|
|
|
)
|
|
|
|
|
2017-11-30 18:35:23 +09:00
|
|
|
func New(socketBuilder csc.SocketBuilder) client.ClientReadWriteCloseHandler {
|
|
|
|
return &ClientReadWriteCloseHandlers{
|
|
|
|
SocketBuilder: socketBuilder,
|
|
|
|
}
|
2017-11-29 19:02:33 +09:00
|
|
|
}
|
|
|
|
|
2017-11-29 18:55:24 +09:00
|
|
|
type ClientReadWriteCloseHandlers struct {
|
|
|
|
client.ClientReadWriteCloseHandlers
|
2017-11-30 18:35:23 +09:00
|
|
|
|
|
|
|
SocketBuilder csc.SocketBuilder
|
|
|
|
}
|
|
|
|
|
|
|
|
func (crwch *ClientReadWriteCloseHandlers) Connect(clientCTX client.ClientContext) (interface{}, error) {
|
|
|
|
|
|
|
|
return csc.NewSocket(crwch.SocketBuilder, clientCTX)
|
2017-11-29 18:55:24 +09:00
|
|
|
}
|
|
|
|
|
2018-03-23 16:43:05 +09:00
|
|
|
func (crwch *ClientReadWriteCloseHandlers) NewDecoder(clientCTX client.ClientContext, codec protocol.ClientCodec, conn interface{}) (interface{}, error) {
|
2017-11-30 18:35:23 +09:00
|
|
|
soc := conn.(csc.Socket)
|
2018-03-22 22:35:08 +09:00
|
|
|
|
2018-03-23 16:43:05 +09:00
|
|
|
return codec.NewDecoder(soc), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (crwch *ClientReadWriteCloseHandlers) ReadResponse(clientCTX client.ClientContext, codec protocol.ClientCodec, decoder interface{}) (protocol.ClientResponseCodec, error) {
|
|
|
|
resCodec, err := codec.NewResponse(decoder)
|
2017-11-29 18:55:24 +09:00
|
|
|
|
|
|
|
return resCodec, err
|
|
|
|
}
|
|
|
|
|
2018-03-20 15:31:54 +09:00
|
|
|
func (crwch *ClientReadWriteCloseHandlers) WriteRequest(clientCTX client.ClientContext, codec protocol.ClientCodec, conn interface{}, method string, params []interface{}, id interface{}) error {
|
2018-03-22 22:35:08 +09:00
|
|
|
var (
|
|
|
|
wErr error
|
|
|
|
)
|
2017-11-30 18:35:23 +09:00
|
|
|
soc := conn.(csc.Socket)
|
2017-11-29 18:55:24 +09:00
|
|
|
|
2018-03-22 22:35:08 +09:00
|
|
|
wErr = codec.WriteRequest(soc, method, params, id)
|
2017-11-29 18:55:24 +09:00
|
|
|
|
2018-03-22 22:35:08 +09:00
|
|
|
return wErr
|
2017-11-29 18:55:24 +09:00
|
|
|
}
|
|
|
|
|
2017-11-30 12:36:03 +09:00
|
|
|
func (crwch *ClientReadWriteCloseHandlers) Disconnect(clientCTX client.ClientContext, conn interface{}) {
|
2017-11-30 18:35:23 +09:00
|
|
|
soc := conn.(csc.Socket)
|
2017-11-29 18:55:24 +09:00
|
|
|
soc.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (crwch *ClientReadWriteCloseHandlers) Validate() {
|
2017-11-30 13:59:46 +09:00
|
|
|
crwch.ClientReadWriteCloseHandlers.Validate()
|
2017-11-30 18:35:23 +09:00
|
|
|
|
|
|
|
if nil == crwch.SocketBuilder {
|
2018-03-21 20:26:36 +09:00
|
|
|
logging.Logger().Panicf("RPC Client: SocketBuilder must be specified")
|
2017-11-30 18:35:23 +09:00
|
|
|
}
|
2017-11-29 18:55:24 +09:00
|
|
|
}
|