123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- import "./chunk-2LSFTFF7.js";
- // node_modules/.pnpm/reconnecting-websocket@4.4.0/node_modules/reconnecting-websocket/dist/reconnecting-websocket-mjs.js
- var extendStatics = function(d, b) {
- extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
- d2.__proto__ = b2;
- } || function(d2, b2) {
- for (var p in b2)
- if (b2.hasOwnProperty(p))
- d2[p] = b2[p];
- };
- return extendStatics(d, b);
- };
- function __extends(d, b) {
- extendStatics(d, b);
- function __() {
- this.constructor = d;
- }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- }
- function __values(o) {
- var m = typeof Symbol === "function" && o[Symbol.iterator], i = 0;
- if (m)
- return m.call(o);
- return {
- next: function() {
- if (o && i >= o.length)
- o = void 0;
- return { value: o && o[i++], done: !o };
- }
- };
- }
- function __read(o, n) {
- var m = typeof Symbol === "function" && o[Symbol.iterator];
- if (!m)
- return o;
- var i = m.call(o), r, ar = [], e;
- try {
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
- ar.push(r.value);
- } catch (error) {
- e = { error };
- } finally {
- try {
- if (r && !r.done && (m = i["return"]))
- m.call(i);
- } finally {
- if (e)
- throw e.error;
- }
- }
- return ar;
- }
- function __spread() {
- for (var ar = [], i = 0; i < arguments.length; i++)
- ar = ar.concat(__read(arguments[i]));
- return ar;
- }
- var Event = (
- /** @class */
- function() {
- function Event2(type, target) {
- this.target = target;
- this.type = type;
- }
- return Event2;
- }()
- );
- var ErrorEvent = (
- /** @class */
- function(_super) {
- __extends(ErrorEvent2, _super);
- function ErrorEvent2(error, target) {
- var _this = _super.call(this, "error", target) || this;
- _this.message = error.message;
- _this.error = error;
- return _this;
- }
- return ErrorEvent2;
- }(Event)
- );
- var CloseEvent = (
- /** @class */
- function(_super) {
- __extends(CloseEvent2, _super);
- function CloseEvent2(code, reason, target) {
- if (code === void 0) {
- code = 1e3;
- }
- if (reason === void 0) {
- reason = "";
- }
- var _this = _super.call(this, "close", target) || this;
- _this.wasClean = true;
- _this.code = code;
- _this.reason = reason;
- return _this;
- }
- return CloseEvent2;
- }(Event)
- );
- var getGlobalWebSocket = function() {
- if (typeof WebSocket !== "undefined") {
- return WebSocket;
- }
- };
- var isWebSocket = function(w) {
- return typeof w !== "undefined" && !!w && w.CLOSING === 2;
- };
- var DEFAULT = {
- maxReconnectionDelay: 1e4,
- minReconnectionDelay: 1e3 + Math.random() * 4e3,
- minUptime: 5e3,
- reconnectionDelayGrowFactor: 1.3,
- connectionTimeout: 4e3,
- maxRetries: Infinity,
- maxEnqueuedMessages: Infinity,
- startClosed: false,
- debug: false
- };
- var ReconnectingWebSocket = (
- /** @class */
- function() {
- function ReconnectingWebSocket2(url, protocols, options) {
- var _this = this;
- if (options === void 0) {
- options = {};
- }
- this._listeners = {
- error: [],
- message: [],
- open: [],
- close: []
- };
- this._retryCount = -1;
- this._shouldReconnect = true;
- this._connectLock = false;
- this._binaryType = "blob";
- this._closeCalled = false;
- this._messageQueue = [];
- this.onclose = null;
- this.onerror = null;
- this.onmessage = null;
- this.onopen = null;
- this._handleOpen = function(event) {
- _this._debug("open event");
- var _a = _this._options.minUptime, minUptime = _a === void 0 ? DEFAULT.minUptime : _a;
- clearTimeout(_this._connectTimeout);
- _this._uptimeTimeout = setTimeout(function() {
- return _this._acceptOpen();
- }, minUptime);
- _this._ws.binaryType = _this._binaryType;
- _this._messageQueue.forEach(function(message) {
- return _this._ws.send(message);
- });
- _this._messageQueue = [];
- if (_this.onopen) {
- _this.onopen(event);
- }
- _this._listeners.open.forEach(function(listener) {
- return _this._callEventListener(event, listener);
- });
- };
- this._handleMessage = function(event) {
- _this._debug("message event");
- if (_this.onmessage) {
- _this.onmessage(event);
- }
- _this._listeners.message.forEach(function(listener) {
- return _this._callEventListener(event, listener);
- });
- };
- this._handleError = function(event) {
- _this._debug("error event", event.message);
- _this._disconnect(void 0, event.message === "TIMEOUT" ? "timeout" : void 0);
- if (_this.onerror) {
- _this.onerror(event);
- }
- _this._debug("exec error listeners");
- _this._listeners.error.forEach(function(listener) {
- return _this._callEventListener(event, listener);
- });
- _this._connect();
- };
- this._handleClose = function(event) {
- _this._debug("close event");
- _this._clearTimeouts();
- if (_this._shouldReconnect) {
- _this._connect();
- }
- if (_this.onclose) {
- _this.onclose(event);
- }
- _this._listeners.close.forEach(function(listener) {
- return _this._callEventListener(event, listener);
- });
- };
- this._url = url;
- this._protocols = protocols;
- this._options = options;
- if (this._options.startClosed) {
- this._shouldReconnect = false;
- }
- this._connect();
- }
- Object.defineProperty(ReconnectingWebSocket2, "CONNECTING", {
- get: function() {
- return 0;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2, "OPEN", {
- get: function() {
- return 1;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2, "CLOSING", {
- get: function() {
- return 2;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2, "CLOSED", {
- get: function() {
- return 3;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "CONNECTING", {
- get: function() {
- return ReconnectingWebSocket2.CONNECTING;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "OPEN", {
- get: function() {
- return ReconnectingWebSocket2.OPEN;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "CLOSING", {
- get: function() {
- return ReconnectingWebSocket2.CLOSING;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "CLOSED", {
- get: function() {
- return ReconnectingWebSocket2.CLOSED;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "binaryType", {
- get: function() {
- return this._ws ? this._ws.binaryType : this._binaryType;
- },
- set: function(value) {
- this._binaryType = value;
- if (this._ws) {
- this._ws.binaryType = value;
- }
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "retryCount", {
- /**
- * Returns the number or connection retries
- */
- get: function() {
- return Math.max(this._retryCount, 0);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "bufferedAmount", {
- /**
- * The number of bytes of data that have been queued using calls to send() but not yet
- * transmitted to the network. This value resets to zero once all queued data has been sent.
- * This value does not reset to zero when the connection is closed; if you keep calling send(),
- * this will continue to climb. Read only
- */
- get: function() {
- var bytes = this._messageQueue.reduce(function(acc, message) {
- if (typeof message === "string") {
- acc += message.length;
- } else if (message instanceof Blob) {
- acc += message.size;
- } else {
- acc += message.byteLength;
- }
- return acc;
- }, 0);
- return bytes + (this._ws ? this._ws.bufferedAmount : 0);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "extensions", {
- /**
- * The extensions selected by the server. This is currently only the empty string or a list of
- * extensions as negotiated by the connection
- */
- get: function() {
- return this._ws ? this._ws.extensions : "";
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "protocol", {
- /**
- * A string indicating the name of the sub-protocol the server selected;
- * this will be one of the strings specified in the protocols parameter when creating the
- * WebSocket object
- */
- get: function() {
- return this._ws ? this._ws.protocol : "";
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "readyState", {
- /**
- * The current state of the connection; this is one of the Ready state constants
- */
- get: function() {
- if (this._ws) {
- return this._ws.readyState;
- }
- return this._options.startClosed ? ReconnectingWebSocket2.CLOSED : ReconnectingWebSocket2.CONNECTING;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(ReconnectingWebSocket2.prototype, "url", {
- /**
- * The URL as resolved by the constructor
- */
- get: function() {
- return this._ws ? this._ws.url : "";
- },
- enumerable: true,
- configurable: true
- });
- ReconnectingWebSocket2.prototype.close = function(code, reason) {
- if (code === void 0) {
- code = 1e3;
- }
- this._closeCalled = true;
- this._shouldReconnect = false;
- this._clearTimeouts();
- if (!this._ws) {
- this._debug("close enqueued: no ws instance");
- return;
- }
- if (this._ws.readyState === this.CLOSED) {
- this._debug("close: already closed");
- return;
- }
- this._ws.close(code, reason);
- };
- ReconnectingWebSocket2.prototype.reconnect = function(code, reason) {
- this._shouldReconnect = true;
- this._closeCalled = false;
- this._retryCount = -1;
- if (!this._ws || this._ws.readyState === this.CLOSED) {
- this._connect();
- } else {
- this._disconnect(code, reason);
- this._connect();
- }
- };
- ReconnectingWebSocket2.prototype.send = function(data) {
- if (this._ws && this._ws.readyState === this.OPEN) {
- this._debug("send", data);
- this._ws.send(data);
- } else {
- var _a = this._options.maxEnqueuedMessages, maxEnqueuedMessages = _a === void 0 ? DEFAULT.maxEnqueuedMessages : _a;
- if (this._messageQueue.length < maxEnqueuedMessages) {
- this._debug("enqueue", data);
- this._messageQueue.push(data);
- }
- }
- };
- ReconnectingWebSocket2.prototype.addEventListener = function(type, listener) {
- if (this._listeners[type]) {
- this._listeners[type].push(listener);
- }
- };
- ReconnectingWebSocket2.prototype.dispatchEvent = function(event) {
- var e_1, _a;
- var listeners = this._listeners[event.type];
- if (listeners) {
- try {
- for (var listeners_1 = __values(listeners), listeners_1_1 = listeners_1.next(); !listeners_1_1.done; listeners_1_1 = listeners_1.next()) {
- var listener = listeners_1_1.value;
- this._callEventListener(event, listener);
- }
- } catch (e_1_1) {
- e_1 = { error: e_1_1 };
- } finally {
- try {
- if (listeners_1_1 && !listeners_1_1.done && (_a = listeners_1.return))
- _a.call(listeners_1);
- } finally {
- if (e_1)
- throw e_1.error;
- }
- }
- }
- return true;
- };
- ReconnectingWebSocket2.prototype.removeEventListener = function(type, listener) {
- if (this._listeners[type]) {
- this._listeners[type] = this._listeners[type].filter(function(l) {
- return l !== listener;
- });
- }
- };
- ReconnectingWebSocket2.prototype._debug = function() {
- var args = [];
- for (var _i = 0; _i < arguments.length; _i++) {
- args[_i] = arguments[_i];
- }
- if (this._options.debug) {
- console.log.apply(console, __spread(["RWS>"], args));
- }
- };
- ReconnectingWebSocket2.prototype._getNextDelay = function() {
- var _a = this._options, _b = _a.reconnectionDelayGrowFactor, reconnectionDelayGrowFactor = _b === void 0 ? DEFAULT.reconnectionDelayGrowFactor : _b, _c = _a.minReconnectionDelay, minReconnectionDelay = _c === void 0 ? DEFAULT.minReconnectionDelay : _c, _d = _a.maxReconnectionDelay, maxReconnectionDelay = _d === void 0 ? DEFAULT.maxReconnectionDelay : _d;
- var delay = 0;
- if (this._retryCount > 0) {
- delay = minReconnectionDelay * Math.pow(reconnectionDelayGrowFactor, this._retryCount - 1);
- if (delay > maxReconnectionDelay) {
- delay = maxReconnectionDelay;
- }
- }
- this._debug("next delay", delay);
- return delay;
- };
- ReconnectingWebSocket2.prototype._wait = function() {
- var _this = this;
- return new Promise(function(resolve) {
- setTimeout(resolve, _this._getNextDelay());
- });
- };
- ReconnectingWebSocket2.prototype._getNextUrl = function(urlProvider) {
- if (typeof urlProvider === "string") {
- return Promise.resolve(urlProvider);
- }
- if (typeof urlProvider === "function") {
- var url = urlProvider();
- if (typeof url === "string") {
- return Promise.resolve(url);
- }
- if (!!url.then) {
- return url;
- }
- }
- throw Error("Invalid URL");
- };
- ReconnectingWebSocket2.prototype._connect = function() {
- var _this = this;
- if (this._connectLock || !this._shouldReconnect) {
- return;
- }
- this._connectLock = true;
- var _a = this._options, _b = _a.maxRetries, maxRetries = _b === void 0 ? DEFAULT.maxRetries : _b, _c = _a.connectionTimeout, connectionTimeout = _c === void 0 ? DEFAULT.connectionTimeout : _c, _d = _a.WebSocket, WebSocket2 = _d === void 0 ? getGlobalWebSocket() : _d;
- if (this._retryCount >= maxRetries) {
- this._debug("max retries reached", this._retryCount, ">=", maxRetries);
- return;
- }
- this._retryCount++;
- this._debug("connect", this._retryCount);
- this._removeListeners();
- if (!isWebSocket(WebSocket2)) {
- throw Error("No valid WebSocket class provided");
- }
- this._wait().then(function() {
- return _this._getNextUrl(_this._url);
- }).then(function(url) {
- if (_this._closeCalled) {
- return;
- }
- _this._debug("connect", { url, protocols: _this._protocols });
- _this._ws = _this._protocols ? new WebSocket2(url, _this._protocols) : new WebSocket2(url);
- _this._ws.binaryType = _this._binaryType;
- _this._connectLock = false;
- _this._addListeners();
- _this._connectTimeout = setTimeout(function() {
- return _this._handleTimeout();
- }, connectionTimeout);
- });
- };
- ReconnectingWebSocket2.prototype._handleTimeout = function() {
- this._debug("timeout event");
- this._handleError(new ErrorEvent(Error("TIMEOUT"), this));
- };
- ReconnectingWebSocket2.prototype._disconnect = function(code, reason) {
- if (code === void 0) {
- code = 1e3;
- }
- this._clearTimeouts();
- if (!this._ws) {
- return;
- }
- this._removeListeners();
- try {
- this._ws.close(code, reason);
- this._handleClose(new CloseEvent(code, reason, this));
- } catch (error) {
- }
- };
- ReconnectingWebSocket2.prototype._acceptOpen = function() {
- this._debug("accept open");
- this._retryCount = 0;
- };
- ReconnectingWebSocket2.prototype._callEventListener = function(event, listener) {
- if ("handleEvent" in listener) {
- listener.handleEvent(event);
- } else {
- listener(event);
- }
- };
- ReconnectingWebSocket2.prototype._removeListeners = function() {
- if (!this._ws) {
- return;
- }
- this._debug("removeListeners");
- this._ws.removeEventListener("open", this._handleOpen);
- this._ws.removeEventListener("close", this._handleClose);
- this._ws.removeEventListener("message", this._handleMessage);
- this._ws.removeEventListener("error", this._handleError);
- };
- ReconnectingWebSocket2.prototype._addListeners = function() {
- if (!this._ws) {
- return;
- }
- this._debug("addListeners");
- this._ws.addEventListener("open", this._handleOpen);
- this._ws.addEventListener("close", this._handleClose);
- this._ws.addEventListener("message", this._handleMessage);
- this._ws.addEventListener("error", this._handleError);
- };
- ReconnectingWebSocket2.prototype._clearTimeouts = function() {
- clearTimeout(this._connectTimeout);
- clearTimeout(this._uptimeTimeout);
- };
- return ReconnectingWebSocket2;
- }()
- );
- var reconnecting_websocket_mjs_default = ReconnectingWebSocket;
- export {
- reconnecting_websocket_mjs_default as default
- };
- /*! Bundled license information:
- reconnecting-websocket/dist/reconnecting-websocket-mjs.js:
- (*! *****************************************************************************
- Copyright (c) Microsoft Corporation. All rights reserved.
- 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
-
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
- MERCHANTABLITY OR NON-INFRINGEMENT.
-
- See the Apache Version 2.0 License for specific language governing permissions
- and limitations under the License.
- ***************************************************************************** *)
- (*!
- * Reconnecting WebSocket
- * by Pedro Ladaria <pedro.ladaria@gmail.com>
- * https://github.com/pladaria/reconnecting-websocket
- * License MIT
- *)
- */
- //# sourceMappingURL=reconnecting-websocket.js.map
|