53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
|
package fasthttp
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/gorilla/websocket"
|
||
|
|
||
|
"git.loafle.net/commons_go/rpc/client"
|
||
|
"git.loafle.net/commons_go/rpc/protocol"
|
||
|
cwf "git.loafle.net/commons_go/websocket_fasthttp"
|
||
|
)
|
||
|
|
||
|
type ClientReadWriteCloseHandlers struct {
|
||
|
client.ClientReadWriteCloseHandlers
|
||
|
}
|
||
|
|
||
|
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.(cwf.Socket)
|
||
|
_, r, err := soc.NextReader()
|
||
|
|
||
|
resCodec, err := codec.NewResponse(r)
|
||
|
|
||
|
return resCodec, err
|
||
|
}
|
||
|
|
||
|
func (crwch *ClientReadWriteCloseHandlers) WriteRequest(clientCTX ClientContext, codec protocol.ClientCodec, conn interface{}, method string, params interface{}, id interface{}) error {
|
||
|
soc := conn.(cwf.Socket)
|
||
|
|
||
|
wc, wErr := soc.NextWriter(websocket.TextMessage)
|
||
|
if nil != wErr {
|
||
|
return wErr
|
||
|
}
|
||
|
|
||
|
if wErr := codec.WriteRequest(wc, method, params); nil != wErr {
|
||
|
return wErr
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (crwch *ClientReadWriteCloseHandlers) Disconnect(conn interface{}) {
|
||
|
soc := conn.(cwf.Socket)
|
||
|
soc.Close()
|
||
|
}
|
||
|
|
||
|
func (crwch *ClientReadWriteCloseHandlers) Validate() {
|
||
|
|
||
|
}
|