123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /**
- *=================Event API
- *
- */
- /**
- * Interface with h5s Event API
- * @constructor
- * @param
- var conf = {
- protocol: window.location.protocol, // {string} - 'http:' or 'https:'
- host: window.location.host, //{string} - 'localhost:8080'
- rootpath:window.location.pathname, // {string} - path of the app running
- callback: EventCB, //{function}(event(string), userdata(object))
- userdata: user data // user data
- session:'c1782caf-b670-42d8-ba90-2244d0b0ee83', //{string} - session got from login
- consolelog: 'true' // 'true' or 'false' enable/disable console.log
- };
- */
- function H5sEvent(conf)
- {
- this.wsSocket;
- this.keepaliveTimerId;
- this.bNeedReconnect = false;
- this.bDisConnected = false;
-
- this._debug = true;
- if (conf.consolelog !== undefined)
- {
- if (conf.consolelog === 'false')
- {
- this._debug = false;
- }
- }
-
- this._conf = conf;
- }
- H5sEvent.prototype.ReconnectFunction = function()
- {
- //if(this._debug === true) console.log('Try Reconnect...', this.bNeedReconnect);
- if (this.bNeedReconnect === true)
- {
- if(this._debug === true) console.log('Reconnect...');
-
- this.setupWebSocket(this._token);
- this.bNeedReconnect = false;
- }
- //if(this._debug === true) console.log('Try Reconnect...', this.bNeedReconnect);
- }
-
-
- H5sEvent.prototype.H5SWebSocketClient = function(h5spath)
- {
- var socket;
- if(this._debug === true) console.log("H5SWebSocketClient");
- try {
- //alert(this._conf.protocol);
- if (this._conf.protocol == "http:")
- {
- if (typeof MozWebSocket != "undefined")
- {
- socket = new MozWebSocket('ws://' + this._conf.host + h5spath);
- }else
- {
- socket = new WebSocket('ws://' + this._conf.host + h5spath);
- }
- }
- if (this._conf.protocol == "https:")
- {
- //alert(this._conf.host);
- if(this._debug === true) console.log(this._conf.host);
- if (typeof MozWebSocket != "undefined")
- {
- socket = new MozWebSocket('wss://' + this._conf.host + h5spath);
- }else
- {
- socket = new WebSocket('wss://' + this._conf.host + h5spath);
- }
- }
- if(this._debug === true) console.log(this._conf.host);
- } catch (e) {
- alert('error');
- return;
- }
- return socket;
- }
- H5sEvent.prototype.keepaliveTimer = function()
- {
- try {
- var j = {};
- j.type = "keepalive";
- this.wsSocket.send(JSON.stringify(j));
- } catch (e) {
- if(this._debug === true) console.log(e);
- }
- }
- H5sEvent.prototype.onWebSocketData = function(msg)
- {
-
- if (this._conf.callback != undefined)
- {
- this._conf.callback(msg.data, this._conf.userdata);
- }
- }
-
- H5sEvent.prototype.setupWebSocket = function(token)
- {
- var h5spath = "api/v1/h5seventapi";
- h5spath = this._conf.rootpath + h5spath + '?session=' + this._conf.session;
-
- if(this._debug === true) console.log(h5spath);
-
- this.wsSocket = this.H5SWebSocketClient(h5spath);
- if(this._debug === true) console.log("setupWebSocket", this.wsSocket);
- this.wsSocket.binaryType = 'arraybuffer';
- this.wsSocket.h5 = this;
- this.wsSocket.onmessage = this.onWebSocketData.bind(this);
-
- this.wsSocket.onopen = function()
- {
- if(this.h5._debug === true) console.log("wsSocket.onopen", this.h5);
-
- this.h5.keepaliveTimerId = setInterval(this.h5.keepaliveTimer.bind(this.h5), 1000);
- }
-
- this.wsSocket.onclose = function () {
- if(this.h5._debug === true) console.log("wsSocket.onclose", this.h5);
- if (this.h5.bDisConnected === true)
- {
- if(this.h5._debug === true) console.log("wsSocket.onclose disconnect");
- }else
- {
- this.h5.bNeedReconnect = true;
- }
-
- this.h5.CleanupWebSocket(this.h5);
- }
- }
- H5sEvent.prototype.CleanupWebSocket = function(h5sPlayer)
- {
- if(h5sPlayer._debug === true) console.log('CleanupWebSocket', h5sPlayer);
- clearInterval(h5sPlayer.keepaliveTimerId);
- h5sPlayer.emptyBuffCnt = 0;
- h5sPlayer.lastBuffTime = 0;
- h5sPlayer.buffTimeSameCnt = 0;
- }
- /**
- * Connect a websocket Stream to videoElement
- */
- H5sEvent.prototype.connect = function() {
- /* start connect to server */
- this.setupWebSocket(this._token);
- this.reconnectTimerId = setInterval(this.ReconnectFunction.bind(this), 3000);
- }
- /**
- * Disconnect a websocket Stream and clear videoElement source
- */
- H5sEvent.prototype.disconnect = function() {
- if(this._debug === true) console.log("disconnect", this);
- this.bDisConnected = true;
- clearInterval(this.reconnectTimerId);
-
- if (this.wsSocket != null)
- {
- this.wsSocket.close();
- this.wsSocket = null;
- }
- if(this._debug === true) console.log("disconnect", this);
- }
|