123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- import {Socket} from 'net';
- import {Mutex} from 'async-mutex';
- const mutex = new Mutex();
- const closeError = new Error('NetSocket was closed');
- export class PromisedNetSockets {
- private client?: Socket;
- private closed: boolean;
- private stream: Buffer;
- private canRead?: boolean | Promise<boolean>;
- private resolveRead: ((value?: any) => void) | undefined;
- constructor() {
- this.client = undefined;
- this.closed = true
- this.stream = Buffer.alloc(0);
- }
- async readExactly(number: number) {
- let readData = Buffer.alloc(0);
- while (true) {
- const thisTime = await this.read(number);
- readData = Buffer.concat([readData, thisTime]);
- number = number - thisTime.length;
- if (!number) {
- return readData
- }
- }
- }
- async read(number: number) {
- if (this.closed) {
- throw closeError
- }
- await this.canRead;
- if (this.closed) {
- throw closeError
- }
- const toReturn = this.stream.slice(0, number);
- this.stream = this.stream.slice(number);
- if (this.stream.length === 0) {
- this.canRead = new Promise(resolve => {
- this.resolveRead = resolve
- })
- }
- return toReturn
- }
- async readAll() {
- if (this.closed || !await this.canRead) {
- throw closeError
- }
- const toReturn = this.stream;
- this.stream = Buffer.alloc(0);
- this.canRead = new Promise(resolve => {
- this.resolveRead = resolve
- });
- return toReturn
- }
- /**
- * Creates a new connection
- * @param port
- * @param ip
- * @returns {Promise<void>}
- */
- async connect(port: number, ip: string) {
- this.stream = Buffer.alloc(0);
- this.client = new Socket();
- this.canRead = new Promise(resolve => {
- this.resolveRead = resolve
- });
- this.closed = false;
- return new Promise((resolve, reject) => {
- if (this.client) {
- this.client.connect(port, ip, () => {
- this.receive();
- resolve(this)
- });
- this.client.on('error', reject);
- this.client.on('close', () => {
- if (this.client && this.client.destroyed) {
- if (this.resolveRead) {
- this.resolveRead(false);
- }
- this.closed = true
- }
- })
- }
- })
- }
- write(data: Buffer) {
- if (this.closed) {
- throw closeError
- }
- if (this.client) {
- this.client.write(data)
- }
- }
- async close() {
- if (this.client) {
- await this.client.destroy();
- this.client.unref();
- }
- this.closed = true;
- }
- async receive() {
- if (this.client) {
- this.client.on('data', async message => {
- const release = await mutex.acquire();
- try {
- let data;
- //CONTEST BROWSER
- this.stream = Buffer.concat([this.stream, message]);
- if (this.resolveRead) {
- this.resolveRead(true)
- }
- } finally {
- release()
- }
- });
- }
- }
- }
|