fayec/transport/websocket/websocket.go
2018-09-06 11:16:36 +02:00

207 lines
4.2 KiB
Go

package websocket
import (
"encoding/json"
"github.com/gorilla/websocket"
"github.com/thesyncim/faye/message"
"github.com/thesyncim/faye/transport"
"log"
"strconv"
"sync"
"sync/atomic"
)
const transportName = "websocket"
func init() {
transport.RegisterTransport(&Websocket{})
}
var Debug = true
func debugJson(v interface{}) string {
b, _ := json.MarshalIndent(v, "", " ")
return string(b)
}
type Websocket struct {
TransportOpts *transport.Options
conn *websocket.Conn
clientID string
msgID *uint64
once sync.Once
subsMu sync.Mutex //todo sync.Map
subs map[string]chan *message.Message
}
var _ transport.Transport = (*Websocket)(nil)
func (w *Websocket) Init(options *transport.Options) error {
var (
err error
msgID uint64
)
w.TransportOpts = options
w.msgID = &msgID
w.subs = map[string]chan *message.Message{}
w.conn, _, err = websocket.DefaultDialer.Dial(options.Url, nil)
if err != nil {
return err
}
return nil
}
func (w *Websocket) readWorker() error {
for {
var payload []message.Message
err := w.conn.ReadJSON(&payload)
if err != nil {
return err
}
//dispatch
msg := payload[0]
if transport.IsControlMsg(msg.Channel) {
//handle it
switch msg.Channel {
case transport.Subscribe:
//handle Subscribe resp
if !msg.Successful {
w.subsMu.Lock()
subscription, ok := w.subs[msg.Subscription]
w.subsMu.Unlock()
log.Println(debugJson(msg))
if !ok {
panic("BUG: subscription not registered `" + msg.Subscription + "`")
}
subscription <- &msg
close(subscription)
w.subsMu.Lock()
delete(w.subs, msg.Channel)
w.subsMu.Unlock()
}
case transport.Unsubscribe:
//handle Unsubscribe resp
case transport.Connect:
//handle Connect resp
case transport.Disconnect:
//handle Disconnect resp
case transport.Handshake:
//handle Handshake resp
}
continue
}
w.subsMu.Lock()
subscription := w.subs[msg.Channel]
w.subsMu.Unlock()
if subscription != nil {
subscription <- &msg
}
}
}
func (w *Websocket) Name() string {
return transportName
}
func (w *Websocket) sendMessage(m *message.Message) error {
var payload []message.Message
payload = append(payload, *m)
if Debug {
log.Println("sending request", debugJson(payload))
}
return w.conn.WriteJSON(payload)
}
func (w *Websocket) nextMsgID() string {
return strconv.Itoa(int(atomic.AddUint64(w.msgID, 1)))
}
func (w *Websocket) Options() *transport.Options {
return w.TransportOpts
}
func (w *Websocket) Handshake() (err error) {
m := message.Message{
Channel: transport.Handshake,
Version: "1.0", //todo const
SupportedConnectionTypes: []string{transportName},
}
err = w.sendMessage(&m)
if err != nil {
return err
}
var hsResps []message.Message
if err = w.conn.ReadJSON(&hsResps); err != nil {
return err
}
if Debug {
log.Println("handshake response", debugJson(hsResps))
}
resp := hsResps[0]
if resp.GetError() != nil {
return err
}
w.clientID = resp.ClientId
return nil
}
func (w *Websocket) Connect() error {
m := message.Message{
Channel: transport.Connect,
ClientId: w.clientID,
ConnectionType: transportName,
Id: w.nextMsgID(),
}
//todo verify if extensions are applied on connect,verify if hs is complete
go w.readWorker()
return w.sendMessage(&m)
}
func (w *Websocket) Subscribe(subscription string, onMessage func(message *message.Message)) error {
m := &message.Message{
Channel: transport.Subscribe,
ClientId: w.clientID,
Subscription: subscription,
Id: w.nextMsgID(),
}
if w.TransportOpts.OutExt != nil {
w.TransportOpts.OutExt(m)
}
if err := w.sendMessage(m); err != nil {
return err
}
//todo validate
inMsgCh := make(chan *message.Message, 0)
w.subsMu.Lock()
w.subs[subscription] = inMsgCh
w.subsMu.Unlock()
var inMsg *message.Message
for inMsg = range inMsgCh {
if inMsg.GetError() != nil {
return inMsg.GetError()
}
onMessage(inMsg)
}
return nil
}
func (w *Websocket) Unsubscribe(subscription string) error {
panic("not implemented")
}
func (w *Websocket) Publish(subscription string, message *message.Message) error {
panic("not implemented")
}