288 lines
8.8 KiB
C++
288 lines
8.8 KiB
C++
/*
|
|
* ws_connect.cpp
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2017-2018 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
|
|
#include "IXBench.h"
|
|
#include "linenoise.hpp"
|
|
#include <ixwebsocket/IXSocket.h>
|
|
#include <ixwebsocket/IXSocketTLSOptions.h>
|
|
#include <ixwebsocket/IXWebSocket.h>
|
|
#include <spdlog/spdlog.h>
|
|
#include <sstream>
|
|
|
|
|
|
namespace ix
|
|
{
|
|
class WebSocketConnect
|
|
{
|
|
public:
|
|
WebSocketConnect(const std::string& _url,
|
|
const std::string& headers,
|
|
bool disableAutomaticReconnection,
|
|
bool disablePerMessageDeflate,
|
|
bool binaryMode,
|
|
uint32_t maxWaitBetweenReconnectionRetries,
|
|
const ix::SocketTLSOptions& tlsOptions,
|
|
const std::string& subprotocol,
|
|
int pingIntervalSecs);
|
|
|
|
void subscribe(const std::string& channel);
|
|
void start();
|
|
void stop();
|
|
|
|
int getSentBytes()
|
|
{
|
|
return _sentBytes;
|
|
}
|
|
int getReceivedBytes()
|
|
{
|
|
return _receivedBytes;
|
|
}
|
|
|
|
void sendMessage(const std::string& text);
|
|
|
|
private:
|
|
std::string _url;
|
|
WebSocketHttpHeaders _headers;
|
|
ix::WebSocket _webSocket;
|
|
bool _disablePerMessageDeflate;
|
|
bool _binaryMode;
|
|
std::atomic<int> _receivedBytes;
|
|
std::atomic<int> _sentBytes;
|
|
|
|
void log(const std::string& msg);
|
|
WebSocketHttpHeaders parseHeaders(const std::string& data);
|
|
};
|
|
|
|
WebSocketConnect::WebSocketConnect(const std::string& url,
|
|
const std::string& headers,
|
|
bool disableAutomaticReconnection,
|
|
bool disablePerMessageDeflate,
|
|
bool binaryMode,
|
|
uint32_t maxWaitBetweenReconnectionRetries,
|
|
const ix::SocketTLSOptions& tlsOptions,
|
|
const std::string& subprotocol,
|
|
int pingIntervalSecs)
|
|
: _url(url)
|
|
, _disablePerMessageDeflate(disablePerMessageDeflate)
|
|
, _binaryMode(binaryMode)
|
|
, _receivedBytes(0)
|
|
, _sentBytes(0)
|
|
{
|
|
if (disableAutomaticReconnection)
|
|
{
|
|
_webSocket.disableAutomaticReconnection();
|
|
}
|
|
_webSocket.setMaxWaitBetweenReconnectionRetries(maxWaitBetweenReconnectionRetries);
|
|
_webSocket.setTLSOptions(tlsOptions);
|
|
_webSocket.setPingInterval(pingIntervalSecs);
|
|
|
|
_headers = parseHeaders(headers);
|
|
|
|
if (!subprotocol.empty())
|
|
{
|
|
_webSocket.addSubProtocol(subprotocol);
|
|
}
|
|
|
|
WebSocket::setTrafficTrackerCallback([this](int size, bool incoming) {
|
|
if (incoming)
|
|
{
|
|
_receivedBytes += size;
|
|
}
|
|
else
|
|
{
|
|
_sentBytes += size;
|
|
}
|
|
});
|
|
}
|
|
|
|
void WebSocketConnect::log(const std::string& msg)
|
|
{
|
|
std::cout << msg << std::endl;
|
|
}
|
|
|
|
WebSocketHttpHeaders WebSocketConnect::parseHeaders(const std::string& data)
|
|
{
|
|
WebSocketHttpHeaders headers;
|
|
|
|
// Split by \n
|
|
std::string token;
|
|
std::stringstream tokenStream(data);
|
|
|
|
while (std::getline(tokenStream, token))
|
|
{
|
|
std::size_t pos = token.rfind(':');
|
|
|
|
// Bail out if last '.' is found
|
|
if (pos == std::string::npos) continue;
|
|
|
|
auto key = token.substr(0, pos);
|
|
auto val = token.substr(pos + 1);
|
|
|
|
spdlog::info("{}: {}", key, val);
|
|
headers[key] = val;
|
|
}
|
|
|
|
return headers;
|
|
}
|
|
|
|
void WebSocketConnect::stop()
|
|
{
|
|
{
|
|
Bench bench("ws_connect: stop connection");
|
|
_webSocket.stop();
|
|
}
|
|
}
|
|
|
|
void WebSocketConnect::start()
|
|
{
|
|
_webSocket.setUrl(_url);
|
|
_webSocket.setExtraHeaders(_headers);
|
|
|
|
if (_disablePerMessageDeflate)
|
|
{
|
|
_webSocket.disablePerMessageDeflate();
|
|
}
|
|
else
|
|
{
|
|
ix::WebSocketPerMessageDeflateOptions webSocketPerMessageDeflateOptions(
|
|
true, false, false, 15, 15);
|
|
_webSocket.setPerMessageDeflateOptions(webSocketPerMessageDeflateOptions);
|
|
}
|
|
|
|
std::stringstream ss;
|
|
log(std::string("Connecting to url: ") + _url);
|
|
|
|
_webSocket.setOnMessageCallback([this](const ix::WebSocketMessagePtr& msg) {
|
|
std::stringstream ss;
|
|
if (msg->type == ix::WebSocketMessageType::Open)
|
|
{
|
|
log("ws_connect: connected");
|
|
spdlog::info("Uri: {}", msg->openInfo.uri);
|
|
spdlog::info("Headers:");
|
|
for (auto it : msg->openInfo.headers)
|
|
{
|
|
spdlog::info("{}: {}", it.first, it.second);
|
|
}
|
|
}
|
|
else if (msg->type == ix::WebSocketMessageType::Close)
|
|
{
|
|
ss << "ws_connect: connection closed:";
|
|
ss << " code " << msg->closeInfo.code;
|
|
ss << " reason " << msg->closeInfo.reason << std::endl;
|
|
log(ss.str());
|
|
}
|
|
else if (msg->type == ix::WebSocketMessageType::Message)
|
|
{
|
|
spdlog::info("Received {} bytes", msg->wireSize);
|
|
|
|
ss << "ws_connect: received message: " << msg->str;
|
|
log(ss.str());
|
|
}
|
|
else if (msg->type == ix::WebSocketMessageType::Error)
|
|
{
|
|
ss << "Connection error: " << msg->errorInfo.reason << std::endl;
|
|
ss << "#retries: " << msg->errorInfo.retries << std::endl;
|
|
ss << "Wait time(ms): " << msg->errorInfo.wait_time << std::endl;
|
|
ss << "HTTP Status: " << msg->errorInfo.http_status << std::endl;
|
|
log(ss.str());
|
|
}
|
|
else if (msg->type == ix::WebSocketMessageType::Fragment)
|
|
{
|
|
spdlog::info("Received message fragment");
|
|
}
|
|
else if (msg->type == ix::WebSocketMessageType::Ping)
|
|
{
|
|
spdlog::info("Received ping");
|
|
}
|
|
else if (msg->type == ix::WebSocketMessageType::Pong)
|
|
{
|
|
spdlog::info("Received pong");
|
|
}
|
|
else
|
|
{
|
|
ss << "Invalid ix::WebSocketMessageType";
|
|
log(ss.str());
|
|
}
|
|
});
|
|
|
|
_webSocket.start();
|
|
}
|
|
|
|
void WebSocketConnect::sendMessage(const std::string& text)
|
|
{
|
|
if (_binaryMode)
|
|
{
|
|
_webSocket.sendBinary(text);
|
|
}
|
|
else
|
|
{
|
|
_webSocket.sendText(text);
|
|
}
|
|
}
|
|
|
|
int ws_connect_main(const std::string& url,
|
|
const std::string& headers,
|
|
bool disableAutomaticReconnection,
|
|
bool disablePerMessageDeflate,
|
|
bool binaryMode,
|
|
uint32_t maxWaitBetweenReconnectionRetries,
|
|
const ix::SocketTLSOptions& tlsOptions,
|
|
const std::string& subprotocol,
|
|
int pingIntervalSecs)
|
|
{
|
|
std::cout << "Type Ctrl-D to exit prompt..." << std::endl;
|
|
WebSocketConnect webSocketChat(url,
|
|
headers,
|
|
disableAutomaticReconnection,
|
|
disablePerMessageDeflate,
|
|
binaryMode,
|
|
maxWaitBetweenReconnectionRetries,
|
|
tlsOptions,
|
|
subprotocol,
|
|
pingIntervalSecs);
|
|
webSocketChat.start();
|
|
|
|
while (true)
|
|
{
|
|
// Read line
|
|
std::string line;
|
|
auto quit = linenoise::Readline("> ", line);
|
|
|
|
if (quit)
|
|
{
|
|
break;
|
|
}
|
|
|
|
if (line == "/stop")
|
|
{
|
|
spdlog::info("Stopping connection...");
|
|
webSocketChat.stop();
|
|
continue;
|
|
}
|
|
|
|
if (line == "/start")
|
|
{
|
|
spdlog::info("Starting connection...");
|
|
webSocketChat.start();
|
|
continue;
|
|
}
|
|
|
|
webSocketChat.sendMessage(line);
|
|
|
|
// Add text to history
|
|
linenoise::AddHistory(line.c_str());
|
|
}
|
|
|
|
spdlog::info("");
|
|
webSocketChat.stop();
|
|
|
|
spdlog::info("Received {} bytes", webSocketChat.getReceivedBytes());
|
|
spdlog::info("Sent {} bytes", webSocketChat.getSentBytes());
|
|
|
|
return 0;
|
|
}
|
|
} // namespace ix
|