Skip to content
Snippets Groups Projects
ws_client.go 2.03 KiB
Newer Older
// Copyright 2017 Monax Industries Limited
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

Androlo's avatar
Androlo committed
package client

// NOTE: this websocket client acts on rpc/v0,
// uses github.com/gorilla/websocket
// and will be deprecated after 0.12
// It is recommended to use the interfaces NodeClient
// and NodeWebsocketClient.
// Websocket client implementation. This will be used in tests.
Androlo's avatar
Androlo committed
import (
	"fmt"
	"net/http"
Silas Davis's avatar
Silas Davis committed

	"github.com/gorilla/websocket"
Androlo's avatar
Androlo committed
)

// A websocket client subscribes and unsubscribes to events
type WSClient struct {
Androlo's avatar
Androlo committed
	host   string
Androlo's avatar
Androlo committed
	closed bool
Androlo's avatar
Androlo committed
	conn   *websocket.Conn
Androlo's avatar
Androlo committed
}

// create a new connection
func NewWSClient(addr string) *WSClient {
	return &WSClient{
		host: addr,
	}
}

func (this *WSClient) Dial() (*http.Response, error) {
	dialer := websocket.DefaultDialer
	rHeader := http.Header{}
	conn, r, err := dialer.Dial(this.host, rHeader)
	if err != nil {
		return r, err
	}
	this.conn = conn
Androlo's avatar
Androlo committed

Androlo's avatar
Androlo committed
	return r, nil
}

// returns a channel from which messages can be pulled
// from a go routine that reads the socket.
// if the ws returns an error (eg. closes), we return
Androlo's avatar
Androlo committed
func (this *WSClient) StartRead() <-chan []byte {
Androlo's avatar
Androlo committed
	ch := make(chan []byte)
	go func() {
		for {
			_, msg, err := this.conn.ReadMessage()
			if err != nil {
				if !this.closed {
Androlo's avatar
Androlo committed
					// TODO For now.
Androlo's avatar
Androlo committed
					fmt.Println("Error: " + err.Error())
Androlo's avatar
Androlo committed
					close(ch)
Androlo's avatar
Androlo committed
				}
				return
			}
			ch <- msg
		}
	}()
	return ch
}

Androlo's avatar
Androlo committed
func (this *WSClient) WriteMsg(msg []byte) {
Androlo's avatar
Androlo committed
	this.conn.WriteMessage(websocket.TextMessage, msg)
}

func (this *WSClient) Close() {
Androlo's avatar
Androlo committed
	this.closed = true
Androlo's avatar
Androlo committed
	this.conn.Close()
Androlo's avatar
Androlo committed
}