@dxos/network-manager 0.3.8 → 0.3.9-main.03b62b6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/{chunk-H7XJ7HES.mjs → chunk-KGZ5C6JO.mjs} +407 -118
- package/dist/lib/browser/chunk-KGZ5C6JO.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/testing/index.mjs +3 -3
- package/dist/lib/node/{chunk-XE5JOIGD.cjs → chunk-JDKM4UPJ.cjs} +21 -13
- package/dist/lib/node/chunk-JDKM4UPJ.cjs.map +7 -0
- package/dist/lib/node/{chunk-RBHZCZH4.cjs → chunk-WUBZ4UOJ.cjs} +410 -111
- package/dist/lib/node/chunk-WUBZ4UOJ.cjs.map +7 -0
- package/dist/lib/node/{datachannel-53JZPGFA.cjs → datachannel-3VTTIMR5.cjs} +9 -9
- package/dist/lib/node/{datachannel-53JZPGFA.cjs.map → datachannel-3VTTIMR5.cjs.map} +2 -2
- package/dist/lib/node/index.cjs +32 -32
- package/dist/lib/node/index.cjs.map +1 -1
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/testing/index.cjs +21 -21
- package/dist/types/src/connection-log.d.ts.map +1 -1
- package/dist/types/src/swarm/connection.d.ts +4 -1
- package/dist/types/src/swarm/connection.d.ts.map +1 -1
- package/dist/types/src/topology/mmst-topology.d.ts +1 -0
- package/dist/types/src/topology/mmst-topology.d.ts.map +1 -1
- package/dist/types/src/transport/datachannel/rtc-peer-connection.d.ts +7 -0
- package/dist/types/src/transport/datachannel/rtc-peer-connection.d.ts.map +1 -1
- package/dist/types/src/transport/libdatachannel-transport.d.ts +3 -1
- package/dist/types/src/transport/libdatachannel-transport.d.ts.map +1 -1
- package/dist/types/src/transport/memory-transport.d.ts +3 -1
- package/dist/types/src/transport/memory-transport.d.ts.map +1 -1
- package/dist/types/src/transport/simplepeer-transport-proxy.d.ts +3 -1
- package/dist/types/src/transport/simplepeer-transport-proxy.d.ts.map +1 -1
- package/dist/types/src/transport/simplepeer-transport-service.d.ts +3 -1
- package/dist/types/src/transport/simplepeer-transport-service.d.ts.map +1 -1
- package/dist/types/src/transport/simplepeer-transport.d.ts +7 -1
- package/dist/types/src/transport/simplepeer-transport.d.ts.map +1 -1
- package/dist/types/src/transport/tcp-transport.browser.d.ts +3 -1
- package/dist/types/src/transport/tcp-transport.browser.d.ts.map +1 -1
- package/dist/types/src/transport/tcp-transport.d.ts +3 -1
- package/dist/types/src/transport/tcp-transport.d.ts.map +1 -1
- package/dist/types/src/transport/transport.d.ts +17 -0
- package/dist/types/src/transport/transport.d.ts.map +1 -1
- package/dist/types/src/wire-protocol.d.ts +1 -1
- package/dist/types/src/wire-protocol.d.ts.map +1 -1
- package/package.json +17 -17
- package/src/connection-log.ts +27 -1
- package/src/swarm/connection.ts +40 -6
- package/src/topology/mmst-topology.ts +34 -6
- package/src/transport/datachannel/rtc-peer-connection.ts +20 -12
- package/src/transport/libdatachannel-transport.test.ts +0 -4
- package/src/transport/libdatachannel-transport.ts +44 -4
- package/src/transport/memory-transport.ts +14 -1
- package/src/transport/simplepeer-transport-proxy.ts +9 -1
- package/src/transport/simplepeer-transport-service.ts +14 -0
- package/src/transport/simplepeer-transport.ts +70 -4
- package/src/transport/tcp-transport.browser.ts +9 -1
- package/src/transport/tcp-transport.ts +19 -1
- package/src/transport/transport.ts +19 -0
- package/src/wire-protocol.ts +3 -3
- package/dist/lib/browser/chunk-H7XJ7HES.mjs.map +0 -7
- package/dist/lib/node/chunk-RBHZCZH4.cjs.map +0 -7
- package/dist/lib/node/chunk-XE5JOIGD.cjs.map +0 -7
|
@@ -22,7 +22,7 @@ import { ConnectionState, type BridgeEvent, type BridgeService } from '@dxos/pro
|
|
|
22
22
|
import { type Signal } from '@dxos/protocols/proto/dxos/mesh/swarm';
|
|
23
23
|
import { arrayToBuffer } from '@dxos/util';
|
|
24
24
|
|
|
25
|
-
import { type Transport, type TransportFactory, type TransportOptions } from './transport';
|
|
25
|
+
import { type Transport, type TransportFactory, type TransportOptions, type TransportStats } from './transport';
|
|
26
26
|
|
|
27
27
|
const RESP_MIN_THRESHOLD = 500;
|
|
28
28
|
const TIMEOUT_THRESHOLD = 10;
|
|
@@ -145,6 +145,14 @@ export class SimplePeerTransportProxy implements Transport {
|
|
|
145
145
|
.catch((err) => this.errors.raise(decodeError(err)));
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
+
async getDetails(): Promise<string> {
|
|
149
|
+
return (await this._params.bridgeService.getDetails({ proxyId: this._proxyId })).details;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
async getStats(): Promise<TransportStats> {
|
|
153
|
+
return (await this._params.bridgeService.getStats({ proxyId: this._proxyId })).stats as TransportStats;
|
|
154
|
+
}
|
|
155
|
+
|
|
148
156
|
// TODO(burdon): Move open from constructor.
|
|
149
157
|
async destroy(): Promise<void> {
|
|
150
158
|
await this._ctx.dispose();
|
|
@@ -16,6 +16,10 @@ import {
|
|
|
16
16
|
type BridgeEvent,
|
|
17
17
|
ConnectionState,
|
|
18
18
|
type CloseRequest,
|
|
19
|
+
type DetailsRequest,
|
|
20
|
+
type DetailsResponse,
|
|
21
|
+
type StatsRequest,
|
|
22
|
+
type StatsResponse,
|
|
19
23
|
} from '@dxos/protocols/proto/dxos/mesh/bridge';
|
|
20
24
|
import { ComplexMap } from '@dxos/util';
|
|
21
25
|
|
|
@@ -113,6 +117,16 @@ export class SimplePeerTransportService implements BridgeService {
|
|
|
113
117
|
await this.transports.get(proxyId)!.transport.signal(signal);
|
|
114
118
|
}
|
|
115
119
|
|
|
120
|
+
async getDetails({ proxyId }: DetailsRequest): Promise<DetailsResponse> {
|
|
121
|
+
invariant(this.transports.has(proxyId));
|
|
122
|
+
return { details: await this.transports.get(proxyId)!.transport.getDetails() };
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
async getStats({ proxyId }: StatsRequest): Promise<StatsResponse> {
|
|
126
|
+
invariant(this.transports.has(proxyId));
|
|
127
|
+
return { stats: await this.transports.get(proxyId)!.transport.getStats() };
|
|
128
|
+
}
|
|
129
|
+
|
|
116
130
|
async sendData({ proxyId, payload }: DataRequest): Promise<void> {
|
|
117
131
|
if (this.transports.get(proxyId)?.state !== 'OPEN') {
|
|
118
132
|
log.debug('transport is closed');
|
|
@@ -13,7 +13,7 @@ import { log } from '@dxos/log';
|
|
|
13
13
|
import { ConnectionResetError, ConnectivityError, ProtocolError, UnknownProtocolError, trace } from '@dxos/protocols';
|
|
14
14
|
import { type Signal } from '@dxos/protocols/proto/dxos/mesh/swarm';
|
|
15
15
|
|
|
16
|
-
import { type Transport, type TransportFactory } from './transport';
|
|
16
|
+
import { type Transport, type TransportFactory, type TransportStats } from './transport';
|
|
17
17
|
import { wrtc } from './webrtc';
|
|
18
18
|
|
|
19
19
|
export type SimplePeerTransportParams = {
|
|
@@ -37,6 +37,9 @@ export class SimplePeerTransport implements Transport {
|
|
|
37
37
|
|
|
38
38
|
private readonly _instanceId = PublicKey.random().toHex();
|
|
39
39
|
|
|
40
|
+
/**
|
|
41
|
+
* @params opts.config formatted as per https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/RTCPeerConnection
|
|
42
|
+
*/
|
|
40
43
|
constructor(private readonly params: SimplePeerTransportParams) {
|
|
41
44
|
log.trace('dxos.mesh.webrtc-transport.constructor', trace.begin({ id: this._instanceId }));
|
|
42
45
|
log('created connection', params);
|
|
@@ -71,6 +74,7 @@ export class SimplePeerTransport implements Transport {
|
|
|
71
74
|
if (err.errorDetail === 'sctp-failure') {
|
|
72
75
|
this.errors.raise(new ConnectionResetError('sctp-failure from RTCError', err));
|
|
73
76
|
} else {
|
|
77
|
+
log.info('unknown RTCError', { err });
|
|
74
78
|
this.errors.raise(new UnknownProtocolError('unknown RTCError', err));
|
|
75
79
|
}
|
|
76
80
|
// catch more generic simple-peer errors: https://github.com/feross/simple-peer/blob/master/README.md#error-codes
|
|
@@ -80,10 +84,12 @@ export class SimplePeerTransport implements Transport {
|
|
|
80
84
|
case 'ERR_WEBRTC_SUPPORT':
|
|
81
85
|
this.errors.raise(new ProtocolError('WebRTC not supported', err));
|
|
82
86
|
break;
|
|
87
|
+
case 'ERR_SIGNALING':
|
|
88
|
+
this.errors.raise(new ConnectivityError('signaling failure', err));
|
|
89
|
+
break;
|
|
83
90
|
case 'ERR_ICE_CONNECTION_FAILURE':
|
|
84
91
|
case 'ERR_DATA_CHANNEL':
|
|
85
92
|
case 'ERR_CONNECTION_FAILURE':
|
|
86
|
-
case 'ERR_SIGNALING':
|
|
87
93
|
this.errors.raise(new ConnectivityError('unknown communication failure', err));
|
|
88
94
|
break;
|
|
89
95
|
// errors due to library issues or improper API usage
|
|
@@ -109,7 +115,7 @@ export class SimplePeerTransport implements Transport {
|
|
|
109
115
|
(this._peer as any)._pc.getStats().then((stats: any) => {
|
|
110
116
|
log.info('report after webrtc error', {
|
|
111
117
|
config: this.params.webrtcConfig,
|
|
112
|
-
stats,
|
|
118
|
+
stats: Object.fromEntries((stats as any).entries()),
|
|
113
119
|
});
|
|
114
120
|
});
|
|
115
121
|
}
|
|
@@ -119,17 +125,77 @@ export class SimplePeerTransport implements Transport {
|
|
|
119
125
|
|
|
120
126
|
await this.destroy();
|
|
121
127
|
});
|
|
128
|
+
|
|
122
129
|
log.trace('dxos.mesh.webrtc-transport.constructor', trace.end({ id: this._instanceId }));
|
|
123
130
|
}
|
|
124
131
|
|
|
132
|
+
async getStats(): Promise<TransportStats> {
|
|
133
|
+
const stats = await this._getStats();
|
|
134
|
+
if (!stats) {
|
|
135
|
+
return {
|
|
136
|
+
bytesSent: 0,
|
|
137
|
+
bytesReceived: 0,
|
|
138
|
+
packetsSent: 0,
|
|
139
|
+
packetsReceived: 0,
|
|
140
|
+
rawStats: {},
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
// TODO(nf): transport or candidatePair?
|
|
145
|
+
return {
|
|
146
|
+
bytesSent: stats.transport.bytesSent,
|
|
147
|
+
bytesReceived: stats.transport.bytesReceived,
|
|
148
|
+
packetsSent: stats.transport.messagesSent,
|
|
149
|
+
packetsReceived: stats.transport.messagesReceived,
|
|
150
|
+
rawStats: stats.raw,
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
async _getStats(): Promise<any> {
|
|
155
|
+
if (typeof (this._peer as any)?._pc?.getStats !== 'function') {
|
|
156
|
+
return null;
|
|
157
|
+
}
|
|
158
|
+
return await (this._peer as any)._pc.getStats().then((stats: any) => {
|
|
159
|
+
const statsEntries = Array.from(stats.entries() as any[]);
|
|
160
|
+
const transport = statsEntries.filter((s: any) => s[1].type === 'transport')[0][1];
|
|
161
|
+
const candidatePair = statsEntries.filter((s: any) => s[0] === transport.selectedCandidatePairId);
|
|
162
|
+
let selectedCandidatePair: any;
|
|
163
|
+
let remoteCandidate: any;
|
|
164
|
+
if (candidatePair.length > 0) {
|
|
165
|
+
selectedCandidatePair = candidatePair[0][1];
|
|
166
|
+
remoteCandidate = statsEntries.filter((s: any) => s[0] === selectedCandidatePair.remoteCandidateId)[0][1];
|
|
167
|
+
}
|
|
168
|
+
return {
|
|
169
|
+
datachannel: statsEntries.filter((s: any) => s[1].type === 'data-channel')[0][1],
|
|
170
|
+
transport,
|
|
171
|
+
selectedCandidatePair,
|
|
172
|
+
remoteCandidate,
|
|
173
|
+
raw: Object.fromEntries(stats.entries()),
|
|
174
|
+
};
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
async getDetails(): Promise<string> {
|
|
179
|
+
const stats = await this._getStats();
|
|
180
|
+
const rc = stats?.remoteCandidate;
|
|
181
|
+
if (!rc) {
|
|
182
|
+
return 'unavailable';
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
if (rc.candidateType === 'relay') {
|
|
186
|
+
return `${rc.ip}:${rc.port}/${rc.protocol} relay for ${rc.relatedAddress}:${rc.relatedPort}`;
|
|
187
|
+
}
|
|
188
|
+
return `${rc.ip}:${rc.port}/${rc.protocol} ${rc.candidateType}`;
|
|
189
|
+
}
|
|
190
|
+
|
|
125
191
|
async destroy() {
|
|
126
192
|
log('closing...');
|
|
127
193
|
if (this._closed) {
|
|
128
194
|
return;
|
|
129
195
|
}
|
|
130
|
-
this._closed = true;
|
|
131
196
|
this._disconnectStreams();
|
|
132
197
|
this._peer!.destroy();
|
|
198
|
+
this._closed = true;
|
|
133
199
|
this.closed.emit();
|
|
134
200
|
log('closed');
|
|
135
201
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { Event } from '@dxos/async';
|
|
6
6
|
import { ErrorStream } from '@dxos/debug';
|
|
7
7
|
|
|
8
|
-
import { type Transport, type TransportFactory } from './transport';
|
|
8
|
+
import { type Transport, type TransportFactory, type TransportStats } from './transport';
|
|
9
9
|
|
|
10
10
|
// NOTE: Browser stub.
|
|
11
11
|
|
|
@@ -25,4 +25,12 @@ export class TcpTransport implements Transport {
|
|
|
25
25
|
signal() {
|
|
26
26
|
throw new Error('Method not implemented.');
|
|
27
27
|
}
|
|
28
|
+
|
|
29
|
+
async getStats(): Promise<TransportStats> {
|
|
30
|
+
throw new Error('Method not implemented.');
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
async getDetails(): Promise<string> {
|
|
34
|
+
throw new Error('Method not implemented.');
|
|
35
|
+
}
|
|
28
36
|
}
|
|
@@ -9,7 +9,7 @@ import { ErrorStream } from '@dxos/debug';
|
|
|
9
9
|
import { log } from '@dxos/log';
|
|
10
10
|
import { type Signal } from '@dxos/protocols/proto/dxos/mesh/swarm';
|
|
11
11
|
|
|
12
|
-
import { type Transport, type TransportFactory, type TransportOptions } from './transport';
|
|
12
|
+
import { type Transport, type TransportFactory, type TransportOptions, type TransportStats } from './transport';
|
|
13
13
|
|
|
14
14
|
export const TcpTransportFactory: TransportFactory = {
|
|
15
15
|
createTransport: (params) => new TcpTransport(params),
|
|
@@ -87,6 +87,24 @@ export class TcpTransport implements Transport {
|
|
|
87
87
|
socket.connect({ port: payload.port, host: 'localhost' });
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
+
async getDetails(): Promise<string> {
|
|
91
|
+
if (this.options.initiator) {
|
|
92
|
+
const { port, address } = this._server?.address() as AddressInfo;
|
|
93
|
+
return `LISTEN ${address}:${port}`;
|
|
94
|
+
}
|
|
95
|
+
const { port, address } = this._socket?.address() as AddressInfo;
|
|
96
|
+
return `ACCEPT ${address}:${port}`;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
async getStats(): Promise<TransportStats> {
|
|
100
|
+
return {
|
|
101
|
+
bytesSent: 0,
|
|
102
|
+
bytesReceived: 0,
|
|
103
|
+
packetsSent: 0,
|
|
104
|
+
packetsReceived: 0,
|
|
105
|
+
};
|
|
106
|
+
}
|
|
107
|
+
|
|
90
108
|
private _handleSocket(socket: Socket) {
|
|
91
109
|
log('handling socket', { remotePort: socket.remotePort, localPort: socket.localPort });
|
|
92
110
|
this._socket = socket;
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import { type Event } from '@dxos/async';
|
|
6
6
|
import { type ErrorStream } from '@dxos/debug';
|
|
7
|
+
import { type PublicKey } from '@dxos/keys';
|
|
7
8
|
import { type Signal } from '@dxos/protocols/proto/dxos/mesh/swarm';
|
|
8
9
|
|
|
9
10
|
export enum TransportKind {
|
|
@@ -22,6 +23,14 @@ export interface Transport {
|
|
|
22
23
|
connected: Event;
|
|
23
24
|
errors: ErrorStream;
|
|
24
25
|
|
|
26
|
+
/**
|
|
27
|
+
* Transport-specfic stats.
|
|
28
|
+
*/
|
|
29
|
+
getStats(): Promise<TransportStats>;
|
|
30
|
+
/**
|
|
31
|
+
* Transport-specfic connection details.
|
|
32
|
+
*/
|
|
33
|
+
getDetails(): Promise<string>;
|
|
25
34
|
destroy(): Promise<void>;
|
|
26
35
|
signal(signal: Signal): void;
|
|
27
36
|
}
|
|
@@ -43,6 +52,8 @@ export type TransportOptions = {
|
|
|
43
52
|
sendSignal: (signal: Signal) => Promise<void>; // TODO(burdon): Remove async?
|
|
44
53
|
|
|
45
54
|
timeout?: number;
|
|
55
|
+
|
|
56
|
+
sessionId?: PublicKey;
|
|
46
57
|
};
|
|
47
58
|
|
|
48
59
|
/**
|
|
@@ -51,3 +62,11 @@ export type TransportOptions = {
|
|
|
51
62
|
export interface TransportFactory {
|
|
52
63
|
createTransport(options: TransportOptions): Transport;
|
|
53
64
|
}
|
|
65
|
+
|
|
66
|
+
export type TransportStats = {
|
|
67
|
+
bytesSent: number;
|
|
68
|
+
bytesReceived: number;
|
|
69
|
+
packetsSent: number;
|
|
70
|
+
packetsReceived: number;
|
|
71
|
+
rawStats?: any;
|
|
72
|
+
};
|
package/src/wire-protocol.ts
CHANGED
|
@@ -23,7 +23,7 @@ export type WireProtocolProvider = (params: WireProtocolParams) => WireProtocol;
|
|
|
23
23
|
export interface WireProtocol {
|
|
24
24
|
stream: Duplex;
|
|
25
25
|
|
|
26
|
-
open(): Promise<void>;
|
|
26
|
+
open(sessionId?: PublicKey): Promise<void>;
|
|
27
27
|
close(): Promise<void>;
|
|
28
28
|
abort(): Promise<void>;
|
|
29
29
|
}
|
|
@@ -40,8 +40,8 @@ export const createTeleportProtocolFactory = (
|
|
|
40
40
|
const teleport = new Teleport(params);
|
|
41
41
|
return {
|
|
42
42
|
stream: teleport.stream,
|
|
43
|
-
open: async () => {
|
|
44
|
-
await teleport.open();
|
|
43
|
+
open: async (sessionId?: PublicKey) => {
|
|
44
|
+
await teleport.open(sessionId);
|
|
45
45
|
await onConnection(teleport);
|
|
46
46
|
},
|
|
47
47
|
close: async () => {
|