123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- const EventEmitter = require("events");
- const parser = require("engine.io-parser");
- const debug = require("debug")("engine:transport");
- /**
- * Noop function.
- *
- * @api private
- */
- function noop() {}
- class Transport extends EventEmitter {
- /**
- * Transport constructor.
- *
- * @param {http.IncomingMessage} request
- * @api public
- */
- constructor(req) {
- super();
- this.readyState = "open";
- this.discarded = false;
- }
- /**
- * Flags the transport as discarded.
- *
- * @api private
- */
- discard() {
- this.discarded = true;
- }
- /**
- * Called with an incoming HTTP request.
- *
- * @param {http.IncomingMessage} request
- * @api private
- */
- onRequest(req) {
- debug("setting request");
- this.req = req;
- }
- /**
- * Closes the transport.
- *
- * @api private
- */
- close(fn) {
- if ("closed" === this.readyState || "closing" === this.readyState) return;
- this.readyState = "closing";
- this.doClose(fn || noop);
- }
- /**
- * Called with a transport error.
- *
- * @param {String} message error
- * @param {Object} error description
- * @api private
- */
- onError(msg, desc) {
- if (this.listeners("error").length) {
- const err = new Error(msg);
- err.type = "TransportError";
- err.description = desc;
- this.emit("error", err);
- } else {
- debug("ignored transport error %s (%s)", msg, desc);
- }
- }
- /**
- * Called with parsed out a packets from the data stream.
- *
- * @param {Object} packet
- * @api private
- */
- onPacket(packet) {
- this.emit("packet", packet);
- }
- /**
- * Called with the encoded packet data.
- *
- * @param {String} data
- * @api private
- */
- onData(data) {
- this.onPacket(parser.decodePacket(data));
- }
- /**
- * Called upon transport close.
- *
- * @api private
- */
- onClose() {
- this.readyState = "closed";
- this.emit("close");
- }
- }
- module.exports = Transport;
|