This commit is contained in:
crusader 2017-11-30 14:43:54 +09:00
parent 24532a16bb
commit 7a72c4a5f6
3 changed files with 5 additions and 51 deletions

View File

@ -1,16 +1,15 @@
package client package client
import ( import (
"git.loafle.net/commons_go/rpc"
"git.loafle.net/commons_go/rpc/client" "git.loafle.net/commons_go/rpc/client"
crcrwf "git.loafle.net/commons_go/rpc/client/rwc/websocket/fasthttp" crcrwf "git.loafle.net/commons_go/rpc/client/rwc/websocket/fasthttp"
cwfc "git.loafle.net/commons_go/websocket_fasthttp/client"
) )
func New(addr string, registry rpc.Registry) client.Client { func New(clientHandler ClientHandler, socketBuilder cwfc.SocketBuilder) client.Client {
cRWCHandler := crcrwf.New(socketBuilder)
ch := NewClientHandler(addr, registry) c := client.New(clientHandler, cRWCHandler)
cRWCHandler := crcrwf.New()
c := client.New(ch, cRWCHandler)
return c return c
} }

View File

@ -1,16 +1,13 @@
package client package client
import ( import (
"net"
"git.loafle.net/commons_go/rpc" "git.loafle.net/commons_go/rpc"
"git.loafle.net/commons_go/rpc/client" "git.loafle.net/commons_go/rpc/client"
"git.loafle.net/commons_go/rpc/protocol/json" "git.loafle.net/commons_go/rpc/protocol/json"
) )
func NewClientHandler(addr string, registry rpc.Registry) ClientHandler { func NewClientHandler(registry rpc.Registry) ClientHandler {
ch := &ClientHandlers{} ch := &ClientHandlers{}
ch.addr = addr
ch.RPCRegistry = registry ch.RPCRegistry = registry
ch.Codec = json.NewClientCodec() ch.Codec = json.NewClientCodec()
@ -19,10 +16,4 @@ func NewClientHandler(addr string, registry rpc.Registry) ClientHandler {
type ClientHandlers struct { type ClientHandlers struct {
client.ClientHandlers client.ClientHandlers
addr string
}
func (ch *ClientHandlers) Connect() (net.Conn, error) {
return net.Dial("unix", ch.addr)
} }

View File

@ -1,36 +0,0 @@
package client
import (
"fmt"
"net/http"
"net/url"
crcrwf "git.loafle.net/commons_go/rpc/client/rwc/websocket/fasthttp"
"git.loafle.net/commons_go/websocket_fasthttp/websocket"
)
type ClientReadWriteCloseHandlers struct {
crcrwf.ClientReadWriteCloseHandlers
Scheme string
Host string
Path string
}
func (crwch *ClientReadWriteCloseHandlers) Connect() (interface{}, error) {
u := url.URL{
Scheme: crwch.Scheme,
Host: crwch.Host,
Path: crwch.Path,
}
var reqHeader http.Header
reqHeader.Add("", "")
conn, res, err := websocket.DefaultDialer.Dial(u.String(), reqHeader)
return nil, fmt.Errorf("RPC Client RWC Handler: ClientHandlers method[Connect] is not implement")
}
func (crwch *ClientReadWriteCloseHandlers) Validate() {
}