nope/lib/communication/mirrors/ioSocketMirrorClient.ts

70 lines
2.0 KiB
TypeScript
Raw Normal View History

2020-11-04 16:39:20 +00:00
/**
* @author Martin Karkowski
* @email m.karkowski@zema.de
2021-03-22 19:24:15 +00:00
* @create date 2021-03-22 19:03:15
2022-01-03 18:13:51 +00:00
* @modify date 2022-01-03 17:34:43
2020-11-04 16:39:20 +00:00
* @desc [description]
*/
import { connect } from "socket.io-client";
2022-01-03 18:13:51 +00:00
import {
defineNopeLogger,
ValidLoggerDefinition,
} from "../../logger/getLogger";
2021-03-22 19:24:15 +00:00
import { EventMirror } from "./eventMirror";
/**
2021-04-12 05:09:47 +00:00
* Mirror Layer using IO-Sockets.
*
* @export
2021-04-12 05:09:47 +00:00
* @class IoSocketMirrorClient
*/
2021-04-12 05:09:47 +00:00
export class IoSocketMirrorClient extends EventMirror {
2021-03-19 18:17:39 +00:00
/**
2021-04-12 05:09:47 +00:00
* Creates an instance of IoSocketMirrorClient.
2022-01-03 18:13:51 +00:00
* @author M.Karkowski
* @param {string} uri
* @param {ValidLoggerDefinition} [logger="info"]
2021-04-12 05:09:47 +00:00
* @memberof IoSocketMirrorClient
2021-03-19 18:17:39 +00:00
*/
2022-01-03 18:13:51 +00:00
constructor(public uri: string, logger: ValidLoggerDefinition = "info") {
2021-03-22 19:24:15 +00:00
super(
2021-04-12 05:09:47 +00:00
// As event Emitter, we provide the IO-Client.
2021-03-22 19:24:15 +00:00
connect(uri.startsWith("http://") ? uri : "http://" + uri) as any,
2022-01-03 18:13:51 +00:00
defineNopeLogger(logger, "core.mirror.io"),
2021-11-12 07:57:03 +00:00
false
2021-03-22 19:24:15 +00:00
);
2020-12-30 18:53:33 +00:00
2021-04-12 05:09:47 +00:00
// Make shure we use the http as starting of the uri.
this.uri = this.uri.startsWith("http://") ? this.uri : "http://" + this.uri;
2021-04-12 05:09:47 +00:00
// Now, because we arent connected we set the connected flag to false,
// it will only be true, if a connection with the server has been established
// Therefore we will connect to the "connect" and "disconnect" event of the
// socket.
this.connected.setContent(false);
this._logger.info("connecting to: " + uri);
2021-03-22 19:24:15 +00:00
const _this = this;
2021-03-19 18:17:39 +00:00
2021-03-22 19:24:15 +00:00
this._emitter.on("connect", (...args) => {
// Element is connected
_this._logger.info("connected");
_this.connected.setContent(true);
});
2021-03-19 18:17:39 +00:00
2021-03-22 19:24:15 +00:00
this._emitter.on("disconnect", () => {
// Connection Lost.
_this._logger.error("Connection lost!");
_this.connected.setContent(false);
});
}
2021-10-19 08:01:00 +00:00
async dispose(): Promise<void> {
// Disposes the Emitter.
(this._emitter as any as SocketIOClient.Socket).removeAllListeners();
(this._emitter as any as SocketIOClient.Socket).disconnect();
}
2020-12-30 18:53:33 +00:00
}