@waku/core 0.0.33-f599932.0 → 0.0.33
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/CHANGELOG.md +22 -0
- package/bundle/{base_protocol-CS0EDeEY.js → base_protocol-Dzv-QHPR.js} +93 -78
- package/bundle/{index-BVysxsMu.js → index-BIW3qNYx.js} +19 -12
- package/bundle/index.js +45 -419
- package/bundle/lib/base_protocol.js +2 -2
- package/bundle/lib/message/version_0.js +2 -2
- package/bundle/{version_0-C5ObpJ_0.js → version_0-CdmZMfkQ.js} +10 -4
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/lib/base_protocol.d.ts +1 -1
- package/dist/lib/base_protocol.js +1 -5
- package/dist/lib/base_protocol.js.map +1 -1
- package/dist/lib/filter/index.d.ts +1 -2
- package/dist/lib/filter/index.js +2 -5
- package/dist/lib/filter/index.js.map +1 -1
- package/dist/lib/stream_manager/stream_manager.d.ts +12 -9
- package/dist/lib/stream_manager/stream_manager.js +87 -56
- package/dist/lib/stream_manager/stream_manager.js.map +1 -1
- package/dist/lib/stream_manager/utils.d.ts +1 -1
- package/dist/lib/stream_manager/utils.js +5 -17
- package/dist/lib/stream_manager/utils.js.map +1 -1
- package/package.json +126 -1
- package/src/index.ts +1 -3
- package/src/lib/base_protocol.ts +1 -7
- package/src/lib/filter/index.ts +2 -10
- package/src/lib/stream_manager/stream_manager.ts +124 -66
- package/src/lib/stream_manager/utils.ts +5 -17
- package/dist/lib/wait_for_remote_peer.d.ts +0 -22
- package/dist/lib/wait_for_remote_peer.js +0 -142
- package/dist/lib/wait_for_remote_peer.js.map +0 -1
- package/src/lib/wait_for_remote_peer.ts +0 -200
@@ -1,90 +1,121 @@
|
|
1
1
|
import { Logger } from "@waku/utils";
|
2
|
-
import {
|
3
|
-
const
|
4
|
-
const RETRY_BACKOFF_BASE = 1_000;
|
5
|
-
const MAX_RETRIES = 3;
|
2
|
+
import { selectOpenConnection } from "./utils.js";
|
3
|
+
const STREAM_LOCK_KEY = "consumed";
|
6
4
|
export class StreamManager {
|
7
5
|
multicodec;
|
8
6
|
getConnections;
|
9
7
|
addEventListener;
|
10
|
-
streamPool;
|
11
8
|
log;
|
9
|
+
ongoingCreation = new Set();
|
10
|
+
streamPool = new Map();
|
12
11
|
constructor(multicodec, getConnections, addEventListener) {
|
13
12
|
this.multicodec = multicodec;
|
14
13
|
this.getConnections = getConnections;
|
15
14
|
this.addEventListener = addEventListener;
|
16
15
|
this.log = new Logger(`stream-manager:${multicodec}`);
|
17
|
-
this.streamPool = new Map();
|
18
16
|
this.addEventListener("peer:update", this.handlePeerUpdateStreamPool);
|
19
17
|
}
|
20
18
|
async getStream(peer) {
|
21
|
-
const
|
22
|
-
const
|
23
|
-
if (
|
24
|
-
|
19
|
+
const peerId = peer.id.toString();
|
20
|
+
const scheduledStream = this.streamPool.get(peerId);
|
21
|
+
if (scheduledStream) {
|
22
|
+
this.streamPool.delete(peerId);
|
23
|
+
await scheduledStream;
|
25
24
|
}
|
26
|
-
this.
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
return stream;
|
32
|
-
}
|
33
|
-
}
|
34
|
-
catch (error) {
|
35
|
-
this.log.warn(`Failed to get stream for ${peerIdStr} -- `, error);
|
36
|
-
this.log.warn("Attempting to create a new stream for the peer");
|
25
|
+
let stream = this.getOpenStreamForCodec(peer.id);
|
26
|
+
if (stream) {
|
27
|
+
this.log.info(`Found existing stream peerId=${peer.id.toString()} multicodec=${this.multicodec}`);
|
28
|
+
this.lockStream(peer.id.toString(), stream);
|
29
|
+
return stream;
|
37
30
|
}
|
38
|
-
|
31
|
+
stream = await this.createStream(peer);
|
32
|
+
this.lockStream(peer.id.toString(), stream);
|
33
|
+
return stream;
|
39
34
|
}
|
40
35
|
async createStream(peer, retries = 0) {
|
41
36
|
const connections = this.getConnections(peer.id);
|
42
|
-
const connection =
|
37
|
+
const connection = selectOpenConnection(connections);
|
43
38
|
if (!connection) {
|
44
|
-
throw new Error(
|
39
|
+
throw new Error(`Failed to get a connection to the peer peerId=${peer.id.toString()} multicodec=${this.multicodec}`);
|
40
|
+
}
|
41
|
+
let lastError;
|
42
|
+
let stream;
|
43
|
+
for (let i = 0; i < retries + 1; i++) {
|
44
|
+
try {
|
45
|
+
this.log.info(`Attempting to create a stream for peerId=${peer.id.toString()} multicodec=${this.multicodec}`);
|
46
|
+
stream = await connection.newStream(this.multicodec);
|
47
|
+
this.log.info(`Created stream for peerId=${peer.id.toString()} multicodec=${this.multicodec}`);
|
48
|
+
break;
|
49
|
+
}
|
50
|
+
catch (error) {
|
51
|
+
lastError = error;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
if (!stream) {
|
55
|
+
throw new Error(`Failed to create a new stream for ${peer.id.toString()} -- ` +
|
56
|
+
lastError);
|
57
|
+
}
|
58
|
+
return stream;
|
59
|
+
}
|
60
|
+
async createStreamWithLock(peer) {
|
61
|
+
const peerId = peer.id.toString();
|
62
|
+
if (this.ongoingCreation.has(peerId)) {
|
63
|
+
this.log.info(`Skipping creation of a stream due to lock for peerId=${peerId} multicodec=${this.multicodec}`);
|
64
|
+
return;
|
45
65
|
}
|
46
66
|
try {
|
47
|
-
|
67
|
+
this.ongoingCreation.add(peerId);
|
68
|
+
await this.createStream(peer);
|
48
69
|
}
|
49
70
|
catch (error) {
|
50
|
-
|
51
|
-
const backoff = RETRY_BACKOFF_BASE * Math.pow(2, retries);
|
52
|
-
await new Promise((resolve) => setTimeout(resolve, backoff));
|
53
|
-
return this.createStream(peer, retries + 1);
|
54
|
-
}
|
55
|
-
throw new Error(`Failed to create a new stream for ${peer.id.toString()} -- ` + error);
|
71
|
+
this.log.error(`Failed to createStreamWithLock:`, error);
|
56
72
|
}
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
this.createStream(peer),
|
62
|
-
timeoutPromise.then(() => {
|
63
|
-
throw new Error("Connection timeout");
|
64
|
-
})
|
65
|
-
]).catch((error) => {
|
66
|
-
this.log.error(`Failed to prepare a new stream for ${peer.id.toString()} -- `, error);
|
67
|
-
});
|
68
|
-
this.streamPool.set(peer.id.toString(), streamPromise);
|
73
|
+
finally {
|
74
|
+
this.ongoingCreation.delete(peerId);
|
75
|
+
}
|
76
|
+
return;
|
69
77
|
}
|
70
78
|
handlePeerUpdateStreamPool = (evt) => {
|
71
79
|
const { peer } = evt.detail;
|
72
|
-
if (peer.protocols.includes(this.multicodec)) {
|
73
|
-
|
74
|
-
if (isConnected) {
|
75
|
-
this.log.info(`Preemptively opening a stream to ${peer.id.toString()}`);
|
76
|
-
this.prepareStream(peer);
|
77
|
-
}
|
78
|
-
else {
|
79
|
-
const peerIdStr = peer.id.toString();
|
80
|
-
this.streamPool.delete(peerIdStr);
|
81
|
-
this.log.info(`Removed pending stream for disconnected peer ${peerIdStr}`);
|
82
|
-
}
|
80
|
+
if (!peer.protocols.includes(this.multicodec)) {
|
81
|
+
return;
|
83
82
|
}
|
83
|
+
const stream = this.getOpenStreamForCodec(peer.id);
|
84
|
+
if (stream) {
|
85
|
+
return;
|
86
|
+
}
|
87
|
+
this.scheduleNewStream(peer);
|
84
88
|
};
|
85
|
-
|
89
|
+
scheduleNewStream(peer) {
|
90
|
+
this.log.info(`Scheduling creation of a stream for peerId=${peer.id.toString()} multicodec=${this.multicodec}`);
|
91
|
+
// abandon previous attempt
|
92
|
+
if (this.streamPool.has(peer.id.toString())) {
|
93
|
+
this.streamPool.delete(peer.id.toString());
|
94
|
+
}
|
95
|
+
this.streamPool.set(peer.id.toString(), this.createStreamWithLock(peer));
|
96
|
+
}
|
97
|
+
getOpenStreamForCodec(peerId) {
|
86
98
|
const connections = this.getConnections(peerId);
|
87
|
-
|
99
|
+
const connection = selectOpenConnection(connections);
|
100
|
+
if (!connection) {
|
101
|
+
return;
|
102
|
+
}
|
103
|
+
const stream = connection.streams.find((s) => s.protocol === this.multicodec);
|
104
|
+
if (!stream) {
|
105
|
+
return;
|
106
|
+
}
|
107
|
+
const isStreamUnusable = ["done", "closed", "closing"].includes(stream.writeStatus || "");
|
108
|
+
if (isStreamUnusable || this.isStreamLocked(stream)) {
|
109
|
+
return;
|
110
|
+
}
|
111
|
+
return stream;
|
112
|
+
}
|
113
|
+
lockStream(peerId, stream) {
|
114
|
+
this.log.info(`Locking stream for peerId:${peerId}\tstreamId:${stream.id}`);
|
115
|
+
stream.metadata[STREAM_LOCK_KEY] = true;
|
116
|
+
}
|
117
|
+
isStreamLocked(stream) {
|
118
|
+
return !!stream.metadata[STREAM_LOCK_KEY];
|
88
119
|
}
|
89
120
|
}
|
90
121
|
//# sourceMappingURL=stream_manager.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"stream_manager.js","sourceRoot":"","sources":["../../../src/lib/stream_manager/stream_manager.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"stream_manager.js","sourceRoot":"","sources":["../../../src/lib/stream_manager/stream_manager.ts"],"names":[],"mappings":"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"}
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import type { Connection } from "@libp2p/interface";
|
2
|
-
export declare function
|
2
|
+
export declare function selectOpenConnection(connections: Connection[]): Connection | undefined;
|
@@ -1,19 +1,7 @@
|
|
1
|
-
export function
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
let latestConnection;
|
7
|
-
connections.forEach((connection) => {
|
8
|
-
if (connection.status === "open") {
|
9
|
-
if (!latestConnection) {
|
10
|
-
latestConnection = connection;
|
11
|
-
}
|
12
|
-
else if (connection.timeline.open > latestConnection.timeline.open) {
|
13
|
-
latestConnection = connection;
|
14
|
-
}
|
15
|
-
}
|
16
|
-
});
|
17
|
-
return latestConnection;
|
1
|
+
export function selectOpenConnection(connections) {
|
2
|
+
return connections
|
3
|
+
.filter((c) => c.status === "open")
|
4
|
+
.sort((left, right) => right.timeline.open - left.timeline.open)
|
5
|
+
.at(0);
|
18
6
|
}
|
19
7
|
//# sourceMappingURL=utils.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/lib/stream_manager/utils.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/lib/stream_manager/utils.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,oBAAoB,CAClC,WAAyB;IAEzB,OAAO,WAAW;SACf,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,MAAM,CAAC;SAClC,IAAI,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;SAC/D,EAAE,CAAC,CAAC,CAAC,CAAC;AACX,CAAC"}
|
package/package.json
CHANGED
@@ -1 +1,126 @@
|
|
1
|
-
{
|
1
|
+
{
|
2
|
+
"name": "@waku/core",
|
3
|
+
"version": "0.0.33",
|
4
|
+
"description": "TypeScript implementation of the Waku v2 protocol",
|
5
|
+
"types": "./dist/index.d.ts",
|
6
|
+
"module": "./dist/index.js",
|
7
|
+
"exports": {
|
8
|
+
".": {
|
9
|
+
"types": "./dist/index.d.ts",
|
10
|
+
"import": "./dist/index.js"
|
11
|
+
},
|
12
|
+
"./lib/message/version_0": {
|
13
|
+
"types": "./dist/lib/message/version_0.d.ts",
|
14
|
+
"import": "./dist/lib/message/version_0.js"
|
15
|
+
},
|
16
|
+
"./lib/base_protocol": {
|
17
|
+
"types": "./dist/lib/base_protocol.d.ts",
|
18
|
+
"import": "./dist/lib/base_protocol.js"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"typesVersions": {
|
22
|
+
"*": {
|
23
|
+
"lib/*": [
|
24
|
+
"dist/lib/*"
|
25
|
+
],
|
26
|
+
"constants/*": [
|
27
|
+
"dist/constants/*"
|
28
|
+
]
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"type": "module",
|
32
|
+
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/core#readme",
|
33
|
+
"repository": {
|
34
|
+
"type": "git",
|
35
|
+
"url": "https://github.com/waku-org/js-waku.git"
|
36
|
+
},
|
37
|
+
"bugs": {
|
38
|
+
"url": "https://github.com/waku-org/js-waku/issues"
|
39
|
+
},
|
40
|
+
"license": "MIT OR Apache-2.0",
|
41
|
+
"keywords": [
|
42
|
+
"waku",
|
43
|
+
"decentralised",
|
44
|
+
"communication",
|
45
|
+
"web3",
|
46
|
+
"ethereum",
|
47
|
+
"dapps"
|
48
|
+
],
|
49
|
+
"scripts": {
|
50
|
+
"build": "run-s build:**",
|
51
|
+
"build:esm": "tsc",
|
52
|
+
"build:bundle": "rollup --config rollup.config.js",
|
53
|
+
"fix": "run-s fix:*",
|
54
|
+
"fix:lint": "eslint src *.js --fix",
|
55
|
+
"check": "run-s check:*",
|
56
|
+
"check:tsc": "tsc -p tsconfig.dev.json",
|
57
|
+
"check:lint": "eslint src *.js",
|
58
|
+
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
59
|
+
"test": "NODE_ENV=test run-s test:*",
|
60
|
+
"test:node": "NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
61
|
+
"test:browser": "NODE_ENV=test karma start karma.conf.cjs",
|
62
|
+
"watch:build": "tsc -p tsconfig.json -w",
|
63
|
+
"watch:test": "mocha --watch",
|
64
|
+
"prepublish": "npm run build",
|
65
|
+
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
66
|
+
},
|
67
|
+
"engines": {
|
68
|
+
"node": ">=20"
|
69
|
+
},
|
70
|
+
"dependencies": {
|
71
|
+
"@libp2p/ping": "^1.1.2",
|
72
|
+
"@waku/enr": "^0.0.27",
|
73
|
+
"@waku/interfaces": "0.0.28",
|
74
|
+
"@waku/proto": "0.0.8",
|
75
|
+
"@waku/utils": "0.0.21",
|
76
|
+
"debug": "^4.3.4",
|
77
|
+
"it-all": "^3.0.4",
|
78
|
+
"it-length-prefixed": "^9.0.4",
|
79
|
+
"it-pipe": "^3.0.1",
|
80
|
+
"uint8arraylist": "^2.4.3",
|
81
|
+
"uuid": "^9.0.0"
|
82
|
+
},
|
83
|
+
"devDependencies": {
|
84
|
+
"@multiformats/multiaddr": "^12.0.0",
|
85
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
86
|
+
"@rollup/plugin-json": "^6.0.0",
|
87
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
88
|
+
"@types/chai": "^4.3.11",
|
89
|
+
"@types/debug": "^4.1.12",
|
90
|
+
"@types/mocha": "^10.0.6",
|
91
|
+
"@types/uuid": "^9.0.8",
|
92
|
+
"@waku/build-utils": "*",
|
93
|
+
"chai": "^4.3.10",
|
94
|
+
"sinon": "^18.0.0",
|
95
|
+
"cspell": "^8.6.1",
|
96
|
+
"fast-check": "^3.19.0",
|
97
|
+
"ignore-loader": "^0.1.2",
|
98
|
+
"isomorphic-fetch": "^3.0.0",
|
99
|
+
"mocha": "^10.3.0",
|
100
|
+
"npm-run-all": "^4.1.5",
|
101
|
+
"process": "^0.11.10",
|
102
|
+
"rollup": "^4.12.0"
|
103
|
+
},
|
104
|
+
"peerDependencies": {
|
105
|
+
"@multiformats/multiaddr": "^12.0.0",
|
106
|
+
"libp2p": "^1.8.1"
|
107
|
+
},
|
108
|
+
"peerDependenciesMeta": {
|
109
|
+
"@multiformats/multiaddr": {
|
110
|
+
"optional": true
|
111
|
+
},
|
112
|
+
"libp2p": {
|
113
|
+
"optional": true
|
114
|
+
}
|
115
|
+
},
|
116
|
+
"files": [
|
117
|
+
"dist",
|
118
|
+
"bundle",
|
119
|
+
"src/**/*.ts",
|
120
|
+
"!**/*.spec.*",
|
121
|
+
"!**/*.json",
|
122
|
+
"CHANGELOG.md",
|
123
|
+
"LICENSE",
|
124
|
+
"README.md"
|
125
|
+
]
|
126
|
+
}
|
package/src/index.ts
CHANGED
@@ -13,9 +13,7 @@ export * as waku_light_push from "./lib/light_push/index.js";
|
|
13
13
|
export { LightPushCodec, LightPushCore } from "./lib/light_push/index.js";
|
14
14
|
|
15
15
|
export * as waku_store from "./lib/store/index.js";
|
16
|
-
export { StoreCore } from "./lib/store/index.js";
|
17
|
-
|
18
|
-
export { waitForRemotePeer } from "./lib/wait_for_remote_peer.js";
|
16
|
+
export { StoreCore, StoreCodec } from "./lib/store/index.js";
|
19
17
|
|
20
18
|
export { ConnectionManager } from "./lib/connection_manager.js";
|
21
19
|
|
package/src/lib/base_protocol.ts
CHANGED
@@ -46,7 +46,6 @@ export class BaseProtocol implements IBaseProtocolCore {
|
|
46
46
|
return this.streamManager.getStream(peer);
|
47
47
|
}
|
48
48
|
|
49
|
-
//TODO: move to SDK
|
50
49
|
/**
|
51
50
|
* Returns known peers from the address book (`libp2p.peerStore`) that support
|
52
51
|
* the class protocol. Waku may or may not be currently connected to these
|
@@ -56,17 +55,12 @@ export class BaseProtocol implements IBaseProtocolCore {
|
|
56
55
|
return getPeersForProtocol(this.components.peerStore, [this.multicodec]);
|
57
56
|
}
|
58
57
|
|
59
|
-
public async connectedPeers(
|
58
|
+
public async connectedPeers(): Promise<Peer[]> {
|
60
59
|
const peers = await this.allPeers();
|
61
60
|
return peers.filter((peer) => {
|
62
61
|
const connections = this.components.connectionManager.getConnections(
|
63
62
|
peer.id
|
64
63
|
);
|
65
|
-
if (withOpenStreams) {
|
66
|
-
return connections.some((c) =>
|
67
|
-
c.streams.some((s) => s.protocol === this.multicodec)
|
68
|
-
);
|
69
|
-
}
|
70
64
|
return connections.length > 0;
|
71
65
|
});
|
72
66
|
}
|
package/src/lib/filter/index.ts
CHANGED
@@ -37,7 +37,6 @@ export class FilterCore extends BaseProtocol implements IBaseProtocolCore {
|
|
37
37
|
wakuMessage: WakuMessage,
|
38
38
|
peerIdStr: string
|
39
39
|
) => Promise<void>,
|
40
|
-
private handleError: (error: Error) => Promise<void>,
|
41
40
|
public readonly pubsubTopics: PubsubTopic[],
|
42
41
|
libp2p: Libp2p
|
43
42
|
) {
|
@@ -304,16 +303,9 @@ export class FilterCore extends BaseProtocol implements IBaseProtocolCore {
|
|
304
303
|
},
|
305
304
|
async (e) => {
|
306
305
|
log.error(
|
307
|
-
|
308
|
-
e
|
309
|
-
" -- ",
|
310
|
-
"on peer ",
|
311
|
-
connection.remotePeer.toString(),
|
312
|
-
" -- ",
|
313
|
-
"stream ",
|
314
|
-
stream
|
306
|
+
`Error with receiving pipe on peer:${connection.remotePeer.toString()} -- stream:${stream.id} -- protocol:${stream.protocol}: `,
|
307
|
+
e
|
315
308
|
);
|
316
|
-
await this.handleError(e);
|
317
309
|
}
|
318
310
|
);
|
319
311
|
} catch (e) {
|