fix: ack callback call twice

Signed-off-by: MiaoWoo <admin@yumc.pw>
backup
MiaoWoo 2020-03-24 14:52:50 +08:00
parent cbb73b451f
commit 9b69b1221b
5 changed files with 33 additions and 28 deletions

View File

@ -65,7 +65,7 @@ export class Client extends EventEmitter implements SocketIO.Client {
packet(packet: Packet, opts?: any) { packet(packet: Packet, opts?: any) {
this.conn.send(parser.encode(packet)) this.conn.send(parser.encode(packet))
} }
onclose(reason: string) { onclose(reason?: string) {
// debug('client close with reason %s', reason); // debug('client close with reason %s', reason);
// ignore a potential subsequent `close` event // ignore a potential subsequent `close` event
this.destroy(); this.destroy();
@ -77,8 +77,8 @@ export class Client extends EventEmitter implements SocketIO.Client {
} }
this.sockets = {}; this.sockets = {};
// this.decoder.destroy(); // clean up decoder // this.decoder.destroy(); // clean up decoder
}; }
close() { disconnect() {
// if ('open' == this.conn.readyState) { // if ('open' == this.conn.readyState) {
// debug('forcing transport close'); // debug('forcing transport close');
this.conn.close(); this.conn.close();

View File

@ -13,7 +13,6 @@ import { Socket } from './socket';
import { Adapter } from './adapter'; import { Adapter } from './adapter';
class Server implements SocketIO.Server { class Server implements SocketIO.Server {
private event: EventEmitter;
private nettyServer: NettyWebSocketServer; private nettyServer: NettyWebSocketServer;
private allClients: { [key: string]: Client }; private allClients: { [key: string]: Client };
@ -29,7 +28,6 @@ class Server implements SocketIO.Server {
constructor(pipeline: any, options: SocketIO.ServerOptions) { constructor(pipeline: any, options: SocketIO.ServerOptions) {
if (!pipeline) { throw new Error('Netty Pipeline can\'t be undefiend!') } if (!pipeline) { throw new Error('Netty Pipeline can\'t be undefiend!') }
this.event = new EventEmitter();
this.allClients = {}; this.allClients = {};
this.nsps = {}; this.nsps = {};
this.sockets = new Namespace('/', this); this.sockets = new Namespace('/', this);
@ -173,6 +171,8 @@ class Server implements SocketIO.Server {
this.processSubPacket(packet, client); this.processSubPacket(packet, client);
break; break;
case PacketTypes.CLOSE: case PacketTypes.CLOSE:
client.onclose()
break;
} }
} }
@ -182,9 +182,9 @@ class Server implements SocketIO.Server {
client.packet({ client.packet({
type: PacketTypes.MESSAGE, type: PacketTypes.MESSAGE,
sub_type: SubPacketTypes.ERROR, sub_type: SubPacketTypes.ERROR,
data: 'not support dynamic namespace' data: 'not support dynamic namespace: ' + packet.nsp
}); });
client.close(); client.disconnect();
return; return;
} }
namespace.process(packet, client); namespace.process(packet, client);

View File

@ -114,10 +114,7 @@ export class Namespace extends EventEmitter implements SocketIO.Namespace {
case SubPacketTypes.CONNECT: case SubPacketTypes.CONNECT:
this.add(client); this.add(client);
break; break;
case SubPacketTypes.DISCONNECT: default:
this.del(client);
break;
case SubPacketTypes.EVENT:
this.sockets[client.id].onpacket(packet); this.sockets[client.id].onpacket(packet);
break; break;
} }

View File

@ -28,7 +28,7 @@ export class Parser {
} }
if (packet.sub_type == SubPacketTypes.EVENT) { if (packet.sub_type == SubPacketTypes.EVENT) {
if (packet.name == undefined) { throw new Error(`SubPacketTypes.EVENT name can't be empty!`) } if (packet.name == undefined) { throw new Error(`SubPacketTypes.EVENT name can't be empty!`) }
packet.data = [packet.name, packet.data] packet.data = [packet.name, ...packet.data]
} }
// json data // json data
if (null != packet.data) { if (null != packet.data) {
@ -85,7 +85,7 @@ export class Parser {
if (i == str.length) break; if (i == str.length) break;
} }
if (buf != `${Number(buf)}` || str.charAt(i) !== '-') { if (buf != `${Number(buf)}` || str.charAt(i) !== '-') {
throw new Error('Illegal attachments'); return this.error('Illegal attachments');
} }
p.attachments = Number(buf); p.attachments = Number(buf);
} }
@ -105,11 +105,11 @@ export class Parser {
// look up id // look up id
let next = str.charAt(i + 1); let next = str.charAt(i + 1);
if ('' !== next && Number.isNaN(Number(next))) { if ('' !== next && !isNaN(Number(next))) {
let id = '' let id = ''
while (++i) { while (++i) {
let c = str.charAt(i); let c = str.charAt(i);
if (null == c || Number.isNaN(Number(c))) { if (null == c || isNaN(Number(c))) {
--i; --i;
break; break;
} }
@ -119,10 +119,6 @@ export class Parser {
p.id = Number(id); p.id = Number(id);
} }
// look up packet name
if (p.sub_type == SubPacketTypes.EVENT) {
}
// ignore binary packet // ignore binary packet
if (p.sub_type == SubPacketTypes.BINARY_EVENT) { if (p.sub_type == SubPacketTypes.BINARY_EVENT) {
return this.error('not support binary parse...') return this.error('not support binary parse...')
@ -134,9 +130,9 @@ export class Parser {
let isPayloadValid = payload !== false && (p.sub_type == SubPacketTypes.ERROR || Array.isArray(payload)); let isPayloadValid = payload !== false && (p.sub_type == SubPacketTypes.ERROR || Array.isArray(payload));
if (isPayloadValid) { if (isPayloadValid) {
p.name = payload[0]; p.name = payload[0];
p.data = payload[1]; p.data = payload.slice(1);
} else { } else {
return this.error('invalid payload'); return this.error('invalid payload ' + str.substr(i));
} }
} }

View File

@ -109,7 +109,13 @@ export class Socket extends EventEmitter implements SocketIO.Socket {
this.rooms = {}; this.rooms = {};
} }
disconnect(close?: boolean): SocketIO.Socket { disconnect(close?: boolean): SocketIO.Socket {
this.client.close(); if (!this.connected) return this;
if (close) {
this.client.disconnect();
} else {
this.packet({ type: PacketTypes.MESSAGE, sub_type: SubPacketTypes.DISCONNECT });
this.onclose('server namespace disconnect');
}
return this; return this;
} }
compress(compress: boolean): SocketIO.Socket { compress(compress: boolean): SocketIO.Socket {
@ -144,7 +150,7 @@ export class Socket extends EventEmitter implements SocketIO.Socket {
type: PacketTypes.MESSAGE, type: PacketTypes.MESSAGE,
sub_type: (this.flags.binary !== undefined ? this.flags.binary : this.hasBin(args)) ? SubPacketTypes.BINARY_EVENT : SubPacketTypes.EVENT, sub_type: (this.flags.binary !== undefined ? this.flags.binary : this.hasBin(args)) ? SubPacketTypes.BINARY_EVENT : SubPacketTypes.EVENT,
name: event, name: event,
data: args[0] data: args
} }
// access last argument to see if it's an ACK callback // access last argument to see if it's an ACK callback
@ -211,21 +217,27 @@ export class Socket extends EventEmitter implements SocketIO.Socket {
} }
onpacket(packet: Packet) { onpacket(packet: Packet) {
switch (packet.sub_type) { switch (packet.sub_type) {
// 2
case SubPacketTypes.EVENT: case SubPacketTypes.EVENT:
this.onevent(packet); this.onevent(packet);
break; break;
// 5
case SubPacketTypes.BINARY_EVENT: case SubPacketTypes.BINARY_EVENT:
this.onevent(packet); this.onevent(packet);
break; break;
// 3
case SubPacketTypes.ACK: case SubPacketTypes.ACK:
this.onack(packet); this.onack(packet);
break; break;
// 6
case SubPacketTypes.BINARY_ACK: case SubPacketTypes.BINARY_ACK:
this.onack(packet); this.onack(packet);
break; break;
// 1
case SubPacketTypes.DISCONNECT: case SubPacketTypes.DISCONNECT:
this.ondisconnect(); this.ondisconnect();
break; break;
// 4
case SubPacketTypes.ERROR: case SubPacketTypes.ERROR:
this.onerror(new Error(packet.data)); this.onerror(new Error(packet.data));
} }
@ -242,12 +254,12 @@ export class Socket extends EventEmitter implements SocketIO.Socket {
this.onclose('client namespace disconnect') this.onclose('client namespace disconnect')
} }
onevent(packet: Packet) { onevent(packet: Packet) {
// console.debug('emitting event %j', args);
if (null != packet.id) { if (null != packet.id) {
// console.debug('attaching ack callback to event'); // debug('attaching ack callback to event');
this.dispatch(packet, this.ack(packet.id)) this.dispatch(packet, this.ack(packet.id));
} else {
this.dispatch(packet);
} }
this.dispatch(packet);
} }
ack(id: number) { ack(id: number) {
let sent = false; let sent = false;
@ -274,7 +286,7 @@ export class Socket extends EventEmitter implements SocketIO.Socket {
} }
dispatch(packet: Packet, ack?: Function) { dispatch(packet: Packet, ack?: Function) {
if (ack) { this.acks[packet.id] = ack; } if (ack) { this.acks[packet.id] = ack; }
super.emit(packet.name, packet.data) super.emit(packet.name, ...packet.data, ack)
} }
private hasBin(obj: any) { private hasBin(obj: any) {
return false; return false;