Allow WebSocket connect with no sub-protocols.

This commit is contained in:
Fabio Alessandrelli 2018-08-30 20:23:16 +02:00
parent 9e43129906
commit 6bc97cc7cc
4 changed files with 40 additions and 43 deletions

View File

@ -62,25 +62,23 @@ EMSCRIPTEN_KEEPALIVE void _esws_on_close(void *obj, int code, char *reason, int
Error EMWSClient::connect_to_host(String p_host, String p_path, uint16_t p_port, bool p_ssl, PoolVector<String> p_protocols) { Error EMWSClient::connect_to_host(String p_host, String p_path, uint16_t p_port, bool p_ssl, PoolVector<String> p_protocols) {
String proto_string = p_protocols.join(",");
String str = "ws://"; String str = "ws://";
String proto_string = "";
if (p_ssl) if (p_ssl)
str = "wss://"; str = "wss://";
str += p_host + ":" + itos(p_port) + p_path; str += p_host + ":" + itos(p_port) + p_path;
for (int i = 0; i < p_protocols.size(); i++) {
proto_string += p_protocols[i];
proto_string += ",";
}
if (proto_string == "")
proto_string = "binary,";
proto_string = proto_string.substr(0, proto_string.length() - 1);
_is_connecting = true; _is_connecting = true;
/* clang-format off */ /* clang-format off */
int peer_sock = EM_ASM_INT({ int peer_sock = EM_ASM_INT({
var socket = new WebSocket(UTF8ToString($1), UTF8ToString($2).split(",")); var proto_str = UTF8ToString($2);
var socket = null;
if (proto_str) {
socket = new WebSocket(UTF8ToString($1), proto_str.split(","));
} else {
socket = new WebSocket(UTF8ToString($1));
}
var c_ptr = Module.IDHandler.get($0); var c_ptr = Module.IDHandler.get($0);
socket.binaryType = "arraybuffer"; socket.binaryType = "arraybuffer";

View File

@ -48,12 +48,10 @@ Error LWSClient::connect_to_host(String p_host, String p_path, uint16_t p_port,
ERR_FAIL_COND_V(!addr.is_valid(), ERR_INVALID_PARAMETER); ERR_FAIL_COND_V(!addr.is_valid(), ERR_INVALID_PARAMETER);
// prepare protocols // Prepare protocols
if (p_protocols.size() == 0) // default to binary protocol
p_protocols.append("binary");
_lws_make_protocols(this, &LWSClient::_lws_gd_callback, p_protocols, &_lws_ref); _lws_make_protocols(this, &LWSClient::_lws_gd_callback, p_protocols, &_lws_ref);
// init lws client // Init lws client
struct lws_context_creation_info info; struct lws_context_creation_info info;
struct lws_client_connect_info i; struct lws_client_connect_info i;
@ -87,7 +85,10 @@ Error LWSClient::connect_to_host(String p_host, String p_path, uint16_t p_port,
strncpy(pbuf, p_path.utf8().get_data(), 2048); strncpy(pbuf, p_path.utf8().get_data(), 2048);
i.context = context; i.context = context;
i.protocol = _lws_ref->lws_names; if (p_protocols.size() > 0)
i.protocol = _lws_ref->lws_names;
else
i.protocol = NULL;
i.address = abuf; i.address = abuf;
i.host = hbuf; i.host = hbuf;
i.path = pbuf; i.path = pbuf;
@ -134,13 +135,13 @@ int LWSClient::_handle_cb(struct lws *wsi, enum lws_callback_reasons reason, voi
case LWS_CALLBACK_CLIENT_CONNECTION_ERROR: case LWS_CALLBACK_CLIENT_CONNECTION_ERROR:
_on_error(); _on_error();
destroy_context(); destroy_context();
return -1; // we should close the connection (would probably happen anyway) return -1; // We should close the connection (would probably happen anyway)
case LWS_CALLBACK_CLIENT_CLOSED: case LWS_CALLBACK_CLIENT_CLOSED:
peer->close(); peer->close();
destroy_context(); destroy_context();
_on_disconnect(); _on_disconnect();
return 0; // we can end here return 0; // We can end here
case LWS_CALLBACK_CLIENT_RECEIVE: case LWS_CALLBACK_CLIENT_RECEIVE:
peer->read_wsi(in, len); peer->read_wsi(in, len);

View File

@ -105,53 +105,54 @@ static bool _lws_poll(struct lws_context *context, _LWSRef *ref) {
} }
/* /*
* prepare the protocol_structs to be fed to context * Prepare the protocol_structs to be fed to context.
* also prepare the protocol string used by the client * Also prepare the protocol string used by the client.
*/ */
static void _lws_make_protocols(void *p_obj, lws_callback_function *p_callback, PoolVector<String> p_names, _LWSRef **r_lws_ref) { static void _lws_make_protocols(void *p_obj, lws_callback_function *p_callback, PoolVector<String> p_names, _LWSRef **r_lws_ref) {
/* the input strings might go away after this call, // The input strings might go away after this call, we need to copy them.
* we need to copy them. Will clear them when // We will clear them when destroying the context.
* destroying the context */
int i; int i;
int len = p_names.size(); int len = p_names.size();
size_t data_size = sizeof(struct LWSPeer::PeerData); size_t data_size = sizeof(struct LWSPeer::PeerData);
PoolVector<String>::Read pnr = p_names.read(); PoolVector<String>::Read pnr = p_names.read();
/* // This is a reference connecting the object with lws keep track of status, mallocs, etc.
* This is a reference connecting the object with lws // Must survive as long the context.
* keep track of status, mallocs, etc. // Must be freed manually when context creation fails.
* Must survive as long the context
* Must be freed manually when context creation fails.
*/
_LWSRef *ref = _lws_create_ref(p_obj); _LWSRef *ref = _lws_create_ref(p_obj);
/* LWS protocol structs */ // LWS protocol structs.
ref->lws_structs = (struct lws_protocols *)memalloc(sizeof(struct lws_protocols) * (len + 2)); ref->lws_structs = (struct lws_protocols *)memalloc(sizeof(struct lws_protocols) * (len + 2));
memset(ref->lws_structs, 0, sizeof(struct lws_protocols) * (len + 2)); memset(ref->lws_structs, 0, sizeof(struct lws_protocols) * (len + 2));
CharString strings = p_names.join(",").ascii(); CharString strings = p_names.join(",").ascii();
int str_len = strings.length(); int str_len = strings.length();
/* Joined string of protocols, double the size: comma separated first, NULL separated last */ // Joined string of protocols, double the size: comma separated first, NULL separated last
ref->lws_names = (char *)memalloc((str_len + 1) * 2); /* plus the terminator */ ref->lws_names = (char *)memalloc((str_len + 1) * 2); // Plus the terminator
char *names_ptr = ref->lws_names; char *names_ptr = ref->lws_names;
struct lws_protocols *structs_ptr = ref->lws_structs; struct lws_protocols *structs_ptr = ref->lws_structs;
copymem(names_ptr, strings.get_data(), str_len); // Comma separated protocols string to be used in client Sec-WebSocket-Protocol header
names_ptr[str_len] = '\0'; /* NULL terminator */ if (str_len > 0)
/* NULL terminated strings to be used in protocol structs */ copymem(names_ptr, strings.get_data(), str_len);
copymem(&names_ptr[str_len + 1], strings.get_data(), str_len); names_ptr[str_len] = '\0'; // NULL terminator
names_ptr[(str_len * 2) + 1] = '\0'; /* NULL terminator */
// NULL terminated protocol strings to be used in protocol structs
if (str_len > 0)
copymem(&names_ptr[str_len + 1], strings.get_data(), str_len);
names_ptr[(str_len * 2) + 1] = '\0'; // NULL terminator
int pos = str_len + 1; int pos = str_len + 1;
/* the first protocol is always http-only */ // The first protocol is the default for any http request (before upgrade).
structs_ptr[0].name = "http-only"; // It is also used as the websocket protocol when no subprotocol is specified.
structs_ptr[0].name = "default";
structs_ptr[0].callback = p_callback; structs_ptr[0].callback = p_callback;
structs_ptr[0].per_session_data_size = data_size; structs_ptr[0].per_session_data_size = data_size;
structs_ptr[0].rx_buffer_size = LWS_BUF_SIZE; structs_ptr[0].rx_buffer_size = LWS_BUF_SIZE;
structs_ptr[0].tx_packet_size = LWS_PACKET_SIZE; structs_ptr[0].tx_packet_size = LWS_PACKET_SIZE;
/* add user defined protocols */ // Add user defined protocols
for (i = 0; i < len; i++) { for (i = 0; i < len; i++) {
structs_ptr[i + 1].name = (const char *)&names_ptr[pos]; structs_ptr[i + 1].name = (const char *)&names_ptr[pos];
structs_ptr[i + 1].callback = p_callback; structs_ptr[i + 1].callback = p_callback;
@ -161,7 +162,7 @@ static void _lws_make_protocols(void *p_obj, lws_callback_function *p_callback,
pos += pnr[i].ascii().length() + 1; pos += pnr[i].ascii().length() + 1;
names_ptr[pos - 1] = '\0'; names_ptr[pos - 1] = '\0';
} }
/* add protocols terminator */ // Add protocols terminator
structs_ptr[len + 1].name = NULL; structs_ptr[len + 1].name = NULL;
structs_ptr[len + 1].callback = NULL; structs_ptr[len + 1].callback = NULL;
structs_ptr[len + 1].per_session_data_size = 0; structs_ptr[len + 1].per_session_data_size = 0;

View File

@ -41,9 +41,6 @@ Error LWSServer::listen(int p_port, PoolVector<String> p_protocols, bool gd_mp_a
struct lws_context_creation_info info; struct lws_context_creation_info info;
memset(&info, 0, sizeof info); memset(&info, 0, sizeof info);
if (p_protocols.size() == 0) // default to binary protocol
p_protocols.append(String("binary"));
// Prepare lws protocol structs // Prepare lws protocol structs
_lws_make_protocols(this, &LWSServer::_lws_gd_callback, p_protocols, &_lws_ref); _lws_make_protocols(this, &LWSServer::_lws_gd_callback, p_protocols, &_lws_ref);