fayec/transport/websocket/websocket.go

326 lines
7.8 KiB
Go
Raw Normal View History

2018-09-04 22:55:52 +00:00
package websocket
import (
"fmt"
2018-09-04 22:55:52 +00:00
"github.com/gorilla/websocket"
"github.com/thesyncim/faye/message"
"github.com/thesyncim/faye/transport"
2018-09-04 22:55:52 +00:00
"strconv"
2018-09-05 12:56:32 +00:00
"sync"
2018-09-04 22:55:52 +00:00
"sync/atomic"
)
2018-09-04 23:22:43 +00:00
const transportName = "websocket"
2018-09-04 22:55:52 +00:00
func init() {
transport.RegisterTransport(&Websocket{})
}
2018-09-06 14:31:05 +00:00
//Websocket represents an websocket transport for the faye protocol
2018-09-04 22:55:52 +00:00
type Websocket struct {
TransportOpts *transport.Options
2018-09-06 15:59:56 +00:00
connMu sync.Mutex
conn *websocket.Conn
clientID string
msgID *uint64
once sync.Once
advice atomic.Value //type message.Advise
2018-09-05 12:56:32 +00:00
2018-09-06 13:29:49 +00:00
stopCh chan error
2018-09-05 12:56:32 +00:00
subsMu sync.Mutex //todo sync.Map
subs map[string]chan *message.Message
2018-09-06 13:29:49 +00:00
onPubResponseMu sync.Mutex //todo sync.Map
onPublishResponse map[string]func(message *message.Message)
2018-09-04 22:55:52 +00:00
}
var _ transport.Transport = (*Websocket)(nil)
2018-09-06 14:31:05 +00:00
//Init initializes the transport with the provided options
2018-09-04 22:55:52 +00:00
func (w *Websocket) Init(options *transport.Options) error {
var (
err error
msgID uint64
)
w.TransportOpts = options
w.msgID = &msgID
2018-09-05 12:56:32 +00:00
w.subs = map[string]chan *message.Message{}
2018-09-06 15:59:56 +00:00
w.onPublishResponse = map[string]func(message *message.Message){}
2018-09-06 13:29:49 +00:00
w.stopCh = make(chan error)
2018-09-04 22:55:52 +00:00
w.conn, _, err = websocket.DefaultDialer.Dial(options.Url, nil)
if err != nil {
return err
}
return nil
}
2018-09-05 12:56:32 +00:00
func (w *Websocket) readWorker() error {
for {
select {
2018-09-06 13:29:49 +00:00
case err := <-w.stopCh:
return err
default:
}
2018-09-06 09:16:36 +00:00
var payload []message.Message
2018-09-05 12:56:32 +00:00
err := w.conn.ReadJSON(&payload)
if err != nil {
return err
}
//dispatch
msg := &payload[0]
2018-09-06 15:59:56 +00:00
w.applyInExtensions(msg)
2018-09-05 13:17:11 +00:00
2018-09-06 11:23:53 +00:00
if msg.Advice != nil {
w.handleAdvise(msg.Advice)
}
2018-09-06 13:29:49 +00:00
if transport.IsMetaMessage(msg) {
2018-09-05 13:23:03 +00:00
//handle it
switch msg.Channel {
case transport.MetaSubscribe:
//handle MetaSubscribe resp
2018-09-05 13:45:53 +00:00
if !msg.Successful {
w.subsMu.Lock()
2018-09-06 09:16:36 +00:00
subscription, ok := w.subs[msg.Subscription]
2018-09-05 13:45:53 +00:00
w.subsMu.Unlock()
if !ok {
2018-09-06 09:16:36 +00:00
panic("BUG: subscription not registered `" + msg.Subscription + "`")
2018-09-05 13:45:53 +00:00
}
if msg.GetError() != nil {
//inject the error
msg.Error = fmt.Sprintf("susbscription `%s` failed", msg.Subscription)
}
subscription <- msg
2018-09-05 13:45:53 +00:00
close(subscription)
w.subsMu.Lock()
delete(w.subs, msg.Channel)
w.subsMu.Unlock()
}
case transport.MetaUnsubscribe:
//handle MetaUnsubscribe resp
case transport.MetaConnect:
//handle MetaConnect resp
2018-09-05 13:23:03 +00:00
case transport.MetaDisconnect:
//handle MetaDisconnect resp
2018-09-05 13:23:03 +00:00
case transport.MetaHandshake:
//handle MetaHandshake resp
2018-09-05 13:23:03 +00:00
}
2018-09-05 13:17:11 +00:00
continue
2018-09-05 12:56:32 +00:00
}
2018-09-06 13:29:49 +00:00
//is Event Message
//there are 2 types of Event Message
// 1. Publish
// 2. Delivery
2018-09-05 12:56:32 +00:00
2018-09-06 13:29:49 +00:00
if transport.IsEventDelivery(msg) {
w.subsMu.Lock()
2018-09-06 15:59:56 +00:00
subscription, ok := w.subs[msg.Channel]
2018-09-06 13:29:49 +00:00
w.subsMu.Unlock()
2018-09-05 12:56:32 +00:00
2018-09-06 15:59:56 +00:00
if ok {
if subscription != nil {
subscription <- msg
}
2018-09-06 13:29:49 +00:00
}
2018-09-06 15:59:56 +00:00
2018-09-06 13:29:49 +00:00
continue
}
if transport.IsEventPublish(msg) {
w.onPubResponseMu.Lock()
onPublish, ok := w.onPublishResponse[msg.Channel]
w.onPubResponseMu.Unlock()
if ok {
onPublish(msg)
}
2018-09-05 13:17:11 +00:00
}
2018-09-06 13:29:49 +00:00
2018-09-05 12:56:32 +00:00
}
}
2018-09-06 14:31:05 +00:00
//Name returns the transport name (websocket)
2018-09-04 22:55:52 +00:00
func (w *Websocket) Name() string {
2018-09-04 23:22:43 +00:00
return transportName
2018-09-04 22:55:52 +00:00
}
2018-09-05 12:56:32 +00:00
func (w *Websocket) sendMessage(m *message.Message) error {
2018-09-06 15:59:56 +00:00
w.connMu.Lock()
defer w.connMu.Unlock()
w.applyOutExtensions(m)
2018-09-05 12:56:32 +00:00
var payload []message.Message
payload = append(payload, *m)
return w.conn.WriteJSON(payload)
}
2018-09-04 22:55:52 +00:00
func (w *Websocket) nextMsgID() string {
return strconv.Itoa(int(atomic.AddUint64(w.msgID, 1)))
}
2018-09-06 14:31:05 +00:00
//Options return the transport Options
2018-09-04 22:55:52 +00:00
func (w *Websocket) Options() *transport.Options {
return w.TransportOpts
}
2018-09-05 12:56:32 +00:00
2018-09-06 14:31:05 +00:00
//Handshake initiates a connection negotiation by sending a message to the /meta/handshake channel.
2018-09-06 09:16:36 +00:00
func (w *Websocket) Handshake() (err error) {
2018-09-05 12:56:32 +00:00
m := message.Message{
Channel: transport.MetaHandshake,
2018-09-04 22:55:52 +00:00
Version: "1.0", //todo const
2018-09-04 23:22:43 +00:00
SupportedConnectionTypes: []string{transportName},
2018-09-05 09:28:55 +00:00
}
2018-09-05 12:56:32 +00:00
err = w.sendMessage(&m)
if err != nil {
2018-09-04 22:55:52 +00:00
return err
}
var hsResps []message.Message
2018-09-04 23:56:25 +00:00
if err = w.conn.ReadJSON(&hsResps); err != nil {
2018-09-04 22:55:52 +00:00
return err
}
resp := &hsResps[0]
w.applyInExtensions(resp)
2018-09-04 22:55:52 +00:00
if resp.GetError() != nil {
return err
}
w.clientID = resp.ClientId
return nil
}
2018-09-06 14:31:05 +00:00
//Connect is called after a client has discovered the servers capabilities with a handshake exchange,
//a connection is established by sending a message to the /meta/connect channel
2018-09-04 22:55:52 +00:00
func (w *Websocket) Connect() error {
2018-09-05 12:56:32 +00:00
m := message.Message{
Channel: transport.MetaConnect,
2018-09-04 23:22:43 +00:00
ClientId: w.clientID,
ConnectionType: transportName,
Id: w.nextMsgID(),
2018-09-05 09:28:55 +00:00
}
//todo expect connect resp from server
2018-09-05 13:06:25 +00:00
go w.readWorker()
2018-09-05 12:56:32 +00:00
return w.sendMessage(&m)
2018-09-04 22:55:52 +00:00
}
2018-09-06 14:31:05 +00:00
//Disconnect closes all subscriptions and inform the server to remove any client-related state.
//any subsequent method call to the client object will result in undefined behaviour.
func (w *Websocket) Disconnect() error {
m := message.Message{
Channel: transport.MetaDisconnect,
ClientId: w.clientID,
Id: w.nextMsgID(),
}
2018-09-06 13:29:49 +00:00
w.stopCh <- nil
close(w.stopCh)
w.subsMu.Lock()
for i := range w.subs {
close(w.subs[i])
delete(w.subs, i)
}
w.subsMu.Unlock()
return w.sendMessage(&m)
}
2018-09-06 14:31:05 +00:00
//Subscribe informs the server that messages published to that channel are delivered to itself.
func (w *Websocket) Subscribe(subscription string, onMessage func(data message.Data)) error {
2018-09-04 23:56:25 +00:00
m := &message.Message{
Channel: transport.MetaSubscribe,
2018-09-04 23:56:25 +00:00
ClientId: w.clientID,
2018-09-05 09:28:55 +00:00
Subscription: subscription,
2018-09-04 23:56:25 +00:00
Id: w.nextMsgID(),
}
2018-09-05 08:56:45 +00:00
2018-09-05 12:56:32 +00:00
if err := w.sendMessage(m); err != nil {
2018-09-04 23:56:25 +00:00
return err
}
2018-09-05 12:56:32 +00:00
//todo validate
inMsgCh := make(chan *message.Message, 0)
2018-09-05 08:56:45 +00:00
2018-09-06 09:16:36 +00:00
w.subsMu.Lock()
2018-09-05 12:56:32 +00:00
w.subs[subscription] = inMsgCh
2018-09-06 09:16:36 +00:00
w.subsMu.Unlock()
2018-09-04 23:56:25 +00:00
2018-09-05 12:56:32 +00:00
var inMsg *message.Message
for inMsg = range inMsgCh {
2018-09-05 13:45:53 +00:00
if inMsg.GetError() != nil {
return inMsg.GetError()
}
onMessage(inMsg.Data)
2018-09-04 23:56:25 +00:00
}
2018-09-06 13:29:49 +00:00
//we we got were means that the subscription was closed
// return nil for now
2018-09-04 23:56:25 +00:00
return nil
2018-09-04 22:55:52 +00:00
}
2018-09-06 14:31:05 +00:00
//Unsubscribe informs the server that the client will no longer listen to incoming event messages on
//the specified channel/subscription
2018-09-04 22:55:52 +00:00
func (w *Websocket) Unsubscribe(subscription string) error {
//https://docs.cometd.org/current/reference/#_bayeux_meta_unsubscribe
m := &message.Message{
Channel: transport.MetaUnsubscribe,
Subscription: subscription,
ClientId: w.clientID,
Id: w.nextMsgID(),
}
w.subsMu.Lock()
sub, ok := w.subs[subscription]
if ok {
close(sub)
delete(w.subs, subscription)
}
w.subsMu.Unlock()
return w.sendMessage(m)
2018-09-04 22:55:52 +00:00
}
2018-09-06 14:31:05 +00:00
//Publish publishes events on a channel by sending event messages, the server MAY respond to a publish event
//if this feature is supported by the server use the OnPublishResponse to get the publish status.
2018-09-06 13:29:49 +00:00
func (w *Websocket) Publish(subscription string, data message.Data) (id string, err error) {
id = w.nextMsgID()
2018-09-06 11:23:53 +00:00
m := &message.Message{
Channel: subscription,
Data: data,
ClientId: w.clientID,
2018-09-06 13:29:49 +00:00
Id: id,
2018-09-06 11:23:53 +00:00
}
2018-09-06 13:29:49 +00:00
if err = w.sendMessage(m); err != nil {
return "", err
}
return id, nil
}
2018-09-06 14:31:05 +00:00
//OnPublishResponse sets the handler to be triggered if the server replies to the publish request
//according to the spec the server MAY reply to the publish request, so its not guaranteed that this handler will
//ever be triggered
//can be used to identify the status of the published request and for example retry failed published requests
2018-09-06 13:29:49 +00:00
func (w *Websocket) OnPublishResponse(subscription string, onMsg func(message *message.Message)) {
w.onPubResponseMu.Lock()
w.onPublishResponse[subscription] = onMsg
w.onPubResponseMu.Unlock()
2018-09-04 22:55:52 +00:00
}
func (w *Websocket) applyOutExtensions(m *message.Message) {
for i := range w.TransportOpts.OutExt {
w.TransportOpts.OutExt[i](m)
}
}
2018-09-06 11:23:53 +00:00
func (w *Websocket) applyInExtensions(m *message.Message) {
for i := range w.TransportOpts.InExt {
w.TransportOpts.InExt[i](m)
}
}
2018-09-06 11:23:53 +00:00
func (w *Websocket) handleAdvise(m *message.Advise) {
//todo actually handle the advice
w.advice.Store(m)
}