86 lines
2.4 KiB
JavaScript
86 lines
2.4 KiB
JavaScript
/* vim: ts=4:sw=4:expandtab
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* var socket = TextSecureWebSocket(url);
|
|
*
|
|
* Returns an adamantium-reinforced super socket, capable of
|
|
* automatically reconnecting.
|
|
*
|
|
*/
|
|
|
|
TextSecureWebSocket = function (url, opts) {
|
|
'use strict';
|
|
opts = opts || {};
|
|
var reconnectTimeout = 1000;
|
|
if (opts && opts.reconnectTimeout !== undefined) {
|
|
reconnectTimeout = opts.reconnectTimeout;
|
|
}
|
|
var reconnectSemaphore = 0;
|
|
var socket;
|
|
var calledClose = false;
|
|
var socketWrapper = {
|
|
onmessage : function() {},
|
|
onclose : function() {},
|
|
onerror : function() {},
|
|
getStatus : function() { return socket.readyState; },
|
|
close : function(code, reason) {
|
|
calledClose = true;
|
|
socket.close(code, reason);
|
|
}
|
|
};
|
|
var error;
|
|
|
|
function onclose(e) {
|
|
if (!error && !calledClose && reconnectTimeout) {
|
|
reconnectSemaphore--;
|
|
setTimeout(connect, reconnectTimeout);
|
|
}
|
|
if (e !== 1000 ) { // CLOSE_NORMAL
|
|
console.log('websocket closed', e.code);
|
|
}
|
|
socketWrapper.onclose(e);
|
|
};
|
|
|
|
function onerror(e) {
|
|
error = e;
|
|
console.log('websocket error');
|
|
socketWrapper.onerror(e);
|
|
};
|
|
|
|
function onmessage(response) {
|
|
socketWrapper.onmessage(response);
|
|
};
|
|
|
|
function send(msg) {
|
|
socket.send(msg);
|
|
};
|
|
|
|
function connect() {
|
|
if (++reconnectSemaphore <= 0) { return; }
|
|
|
|
if (socket) { socket.close(); }
|
|
socket = new WebSocket(url);
|
|
|
|
socket.onerror = onerror
|
|
socket.onclose = onclose;
|
|
socket.onmessage = onmessage;
|
|
socketWrapper.send = send;
|
|
};
|
|
|
|
connect();
|
|
return socketWrapper;
|
|
};
|