ferrings 0.2.0 → 0.2.1
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/README.md +26 -4
- package/benchmark/compare.js +7 -3
- package/benchmark/first-slice.js +17 -2
- package/benchmark/high-concurrency.js +8 -2
- package/benchmark/syscalls.js +48 -28
- package/benchmark/tcp-echo.js +177 -69
- package/ferrings.linux-x64-gnu.node +0 -0
- package/native.js +52 -52
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -282,8 +282,8 @@ Common server options:
|
|
|
282
282
|
| `host` | `127.0.0.1` | all servers | Bind address. |
|
|
283
283
|
| `port` | `0` | all servers | Bind port; `0` asks the kernel for a free port. |
|
|
284
284
|
| `backlog` | `1024` | all servers | Passed to `listen(2)`, subject to host `somaxconn`. |
|
|
285
|
-
| `queueDepth` | `
|
|
286
|
-
| `bufferCount` | `
|
|
285
|
+
| `queueDepth` | `64` | all servers | `io_uring` queue depth. |
|
|
286
|
+
| `bufferCount` | `512` | all servers | Receive buffer slots. |
|
|
287
287
|
| `bufferSize` | `2048` | all servers | Size of each receive buffer. |
|
|
288
288
|
| `maxConnections` | `0` | all servers | `0` means unlimited tracked active connections. |
|
|
289
289
|
| `idleTimeoutMs` | `0` | all servers | `0` disables native idle eviction. |
|
|
@@ -312,7 +312,29 @@ All servers expose live counters through `ServerInfo`, including accepted/closed
|
|
|
312
312
|
|
|
313
313
|
## Performance and benchmarks
|
|
314
314
|
|
|
315
|
-
|
|
315
|
+
### Snapshot: loopback syscall benchmark
|
|
316
|
+
|
|
317
|
+
Measured on 2026-06-28 on an Intel Core Ultra 9 275HX laptop, Linux `7.0.0-22-generic`, Node `v25.9.0`, npm `11.12.1`, Rust `1.96.0`, with the default 8 MiB locked-memory limit. This is loopback under `strace -f -c`, not a NIC or ZCRX benchmark, so use the ratios more than the absolute numbers.
|
|
318
|
+
|
|
319
|
+
```bash
|
|
320
|
+
REQUESTS=1000 CONCURRENCY=64 QUEUE_DEPTH=64 BUFFER_COUNT=512 BUFFER_SIZE=2048 \
|
|
321
|
+
CASES=node-http,ferrings-http,node-tcp,ferrings-native-tcp,ferrings-tcp-facade,ferrings-tcp-facade-batch \
|
|
322
|
+
REPORT_PATH=artifacts/benchmark-readme-2026-06-28.json \
|
|
323
|
+
npm run bench:syscalls
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
| Case | req/s | p50 ms | p95 ms | p99 ms | server syscalls/conn | Fast path |
|
|
327
|
+
| --- | ---: | ---: | ---: | ---: | ---: | --- |
|
|
328
|
+
| Node `http` | 2,689 | 19.536 | 63.368 | 75.987 | 11.620 | libuv/epoll |
|
|
329
|
+
| ferrings HTTP | 5,547 | 10.480 | 28.965 | 33.123 | 5.645 | multishot accept/recv + provided buffer ring |
|
|
330
|
+
| Node `net` TCP echo | 4,086 | 14.881 | 19.244 | 26.649 | 10.987 | libuv/epoll |
|
|
331
|
+
| ferrings native TCP echo | 8,128 | 6.353 | 16.562 | 20.422 | 5.842 | native echo worker + provided buffer ring |
|
|
332
|
+
| ferrings TCP facade | 7,001 | 7.199 | 30.371 | 33.890 | 8.149 | JS facade + batched native events |
|
|
333
|
+
| ferrings TCP facade batch send | 8,451 | 6.188 | 24.787 | 28.451 | 7.143 | JS facade + batched native events/sends |
|
|
334
|
+
|
|
335
|
+
In this shape, ferrings HTTP uses about half the server syscalls per completed connection and roughly doubles request throughput versus Node `http`. The native TCP echo path does the same against Node `net`; the JS facade still crosses into JavaScript, but batching keeps syscall count and throughput ahead in this benchmark.
|
|
336
|
+
|
|
337
|
+
### Running benchmarks
|
|
316
338
|
|
|
317
339
|
```bash
|
|
318
340
|
npm run bench
|
|
@@ -330,7 +352,7 @@ Benchmark scripts:
|
|
|
330
352
|
- `benchmark/syscalls.js` uses `strace -f -c` when installed to report server-side syscalls per completed connection.
|
|
331
353
|
- `benchmark/first-slice.js` writes one compact validation report for the first useful slice across capabilities, HTTP, TCP, and syscall cases.
|
|
332
354
|
|
|
333
|
-
Set `REPORT_PATH=artifacts/<name>.json` to keep machine-readable reports.
|
|
355
|
+
Set `REPORT_PATH=artifacts/<name>.json` to keep machine-readable reports. Useful knobs include `DURATION_MS`, `REQUESTS`, `CONCURRENCY`, `QUEUE_DEPTH`, `BUFFER_COUNT`, `BUFFER_SIZE`, `CASES`, and `SYSCALL_CASES`. If you raise `BUFFER_COUNT`, `QUEUE_DEPTH`, or fixed send-buffer counts, raise `ulimit -l` / `RLIMIT_MEMLOCK` too.
|
|
334
356
|
|
|
335
357
|
## ZCRX
|
|
336
358
|
|
package/benchmark/compare.js
CHANGED
|
@@ -10,6 +10,8 @@ const BODY = 'ok\n';
|
|
|
10
10
|
const DURATION_MS = Number(process.env.DURATION_MS || 5000);
|
|
11
11
|
const CONCURRENCY = Number(process.env.CONCURRENCY || 128);
|
|
12
12
|
const QUEUE_DEPTH = Number(process.env.QUEUE_DEPTH || 256);
|
|
13
|
+
const BUFFER_COUNT = Number(process.env.BUFFER_COUNT || 512);
|
|
14
|
+
const BUFFER_SIZE = Number(process.env.BUFFER_SIZE || 2048);
|
|
13
15
|
const REPORT_PATH = process.env.REPORT_PATH;
|
|
14
16
|
|
|
15
17
|
function requestOnce(port) {
|
|
@@ -76,8 +78,8 @@ async function withUringServer() {
|
|
|
76
78
|
port: 0,
|
|
77
79
|
queueDepth: QUEUE_DEPTH,
|
|
78
80
|
responseBody: BODY,
|
|
79
|
-
bufferCount:
|
|
80
|
-
bufferSize:
|
|
81
|
+
bufferCount: BUFFER_COUNT,
|
|
82
|
+
bufferSize: BUFFER_SIZE
|
|
81
83
|
});
|
|
82
84
|
|
|
83
85
|
const info = server.start();
|
|
@@ -131,7 +133,9 @@ function baseReport() {
|
|
|
131
133
|
config: {
|
|
132
134
|
durationMs: DURATION_MS,
|
|
133
135
|
concurrency: CONCURRENCY,
|
|
134
|
-
queueDepth: QUEUE_DEPTH
|
|
136
|
+
queueDepth: QUEUE_DEPTH,
|
|
137
|
+
bufferCount: BUFFER_COUNT,
|
|
138
|
+
bufferSize: BUFFER_SIZE
|
|
135
139
|
},
|
|
136
140
|
results: [],
|
|
137
141
|
error: null
|
package/benchmark/first-slice.js
CHANGED
|
@@ -9,6 +9,9 @@ const { capabilities } = require('../');
|
|
|
9
9
|
const DURATION_MS = String(process.env.DURATION_MS || 1000);
|
|
10
10
|
const CONCURRENCY = String(process.env.CONCURRENCY || 128);
|
|
11
11
|
const QUEUE_DEPTH = String(process.env.QUEUE_DEPTH || 256);
|
|
12
|
+
const BUFFER_COUNT = String(process.env.BUFFER_COUNT || 512);
|
|
13
|
+
const BUFFER_SIZE = String(process.env.BUFFER_SIZE || 2048);
|
|
14
|
+
const TCP_CASES = process.env.TCP_CASES || '';
|
|
12
15
|
const SYSCALL_REQUESTS = String(process.env.SYSCALL_REQUESTS || 200);
|
|
13
16
|
const SYSCALL_CONCURRENCY = String(process.env.SYSCALL_CONCURRENCY || 32);
|
|
14
17
|
const SYSCALL_CASES =
|
|
@@ -25,6 +28,11 @@ const report = {
|
|
|
25
28
|
durationMs: Number(DURATION_MS),
|
|
26
29
|
concurrency: Number(CONCURRENCY),
|
|
27
30
|
queueDepth: Number(QUEUE_DEPTH),
|
|
31
|
+
bufferCount: Number(BUFFER_COUNT),
|
|
32
|
+
bufferSize: Number(BUFFER_SIZE),
|
|
33
|
+
tcpCases: TCP_CASES
|
|
34
|
+
? TCP_CASES.split(',').map((name) => name.trim()).filter(Boolean)
|
|
35
|
+
: null,
|
|
28
36
|
syscallRequests: Number(SYSCALL_REQUESTS),
|
|
29
37
|
syscallConcurrency: Number(SYSCALL_CONCURRENCY),
|
|
30
38
|
syscallCases: SYSCALL_CASES.split(',').map((name) => name.trim()).filter(Boolean)
|
|
@@ -41,14 +49,19 @@ try {
|
|
|
41
49
|
runBenchmark('HTTP fixed response latency', 'compare.js', {
|
|
42
50
|
DURATION_MS,
|
|
43
51
|
CONCURRENCY,
|
|
44
|
-
QUEUE_DEPTH
|
|
52
|
+
QUEUE_DEPTH,
|
|
53
|
+
BUFFER_COUNT,
|
|
54
|
+
BUFFER_SIZE
|
|
45
55
|
})
|
|
46
56
|
);
|
|
47
57
|
report.results.push(
|
|
48
58
|
runBenchmark('TCP echo latency matrix', 'tcp-echo.js', {
|
|
49
59
|
DURATION_MS,
|
|
50
60
|
CONCURRENCY,
|
|
51
|
-
QUEUE_DEPTH
|
|
61
|
+
QUEUE_DEPTH,
|
|
62
|
+
BUFFER_COUNT,
|
|
63
|
+
BUFFER_SIZE,
|
|
64
|
+
...(TCP_CASES ? { CASES: TCP_CASES } : {})
|
|
52
65
|
})
|
|
53
66
|
);
|
|
54
67
|
report.results.push(runSyscallBenchmark());
|
|
@@ -81,6 +94,8 @@ function runSyscallBenchmark() {
|
|
|
81
94
|
REQUESTS: SYSCALL_REQUESTS,
|
|
82
95
|
CONCURRENCY: SYSCALL_CONCURRENCY,
|
|
83
96
|
QUEUE_DEPTH,
|
|
97
|
+
BUFFER_COUNT,
|
|
98
|
+
BUFFER_SIZE,
|
|
84
99
|
CASES: SYSCALL_CASES
|
|
85
100
|
});
|
|
86
101
|
}
|
|
@@ -8,13 +8,17 @@ const path = require('node:path');
|
|
|
8
8
|
const DEFAULT_DURATION_MS = '10000';
|
|
9
9
|
const DEFAULT_CONCURRENCY = '512';
|
|
10
10
|
const DEFAULT_QUEUE_DEPTH = '1024';
|
|
11
|
+
const DEFAULT_BUFFER_COUNT = '512';
|
|
12
|
+
const DEFAULT_BUFFER_SIZE = '2048';
|
|
11
13
|
const REPORT_PATH = process.env.REPORT_PATH;
|
|
12
14
|
|
|
13
15
|
const env = {
|
|
14
16
|
...process.env,
|
|
15
17
|
DURATION_MS: process.env.DURATION_MS || DEFAULT_DURATION_MS,
|
|
16
18
|
CONCURRENCY: process.env.CONCURRENCY || DEFAULT_CONCURRENCY,
|
|
17
|
-
QUEUE_DEPTH: process.env.QUEUE_DEPTH || DEFAULT_QUEUE_DEPTH
|
|
19
|
+
QUEUE_DEPTH: process.env.QUEUE_DEPTH || DEFAULT_QUEUE_DEPTH,
|
|
20
|
+
BUFFER_COUNT: process.env.BUFFER_COUNT || DEFAULT_BUFFER_COUNT,
|
|
21
|
+
BUFFER_SIZE: process.env.BUFFER_SIZE || DEFAULT_BUFFER_SIZE
|
|
18
22
|
};
|
|
19
23
|
|
|
20
24
|
const report = {
|
|
@@ -25,7 +29,9 @@ const report = {
|
|
|
25
29
|
config: {
|
|
26
30
|
durationMs: Number(env.DURATION_MS),
|
|
27
31
|
concurrency: Number(env.CONCURRENCY),
|
|
28
|
-
queueDepth: Number(env.QUEUE_DEPTH)
|
|
32
|
+
queueDepth: Number(env.QUEUE_DEPTH),
|
|
33
|
+
bufferCount: Number(env.BUFFER_COUNT),
|
|
34
|
+
bufferSize: Number(env.BUFFER_SIZE)
|
|
29
35
|
},
|
|
30
36
|
results: [],
|
|
31
37
|
error: null
|
package/benchmark/syscalls.js
CHANGED
|
@@ -22,10 +22,12 @@ const TCP_RESPONSE = Buffer.from('pong');
|
|
|
22
22
|
const REQUESTS = Number(process.env.REQUESTS || 1000);
|
|
23
23
|
const CONCURRENCY = Number(process.env.CONCURRENCY || 32);
|
|
24
24
|
const QUEUE_DEPTH = Number(process.env.QUEUE_DEPTH || 256);
|
|
25
|
+
const BUFFER_COUNT = Number(process.env.BUFFER_COUNT || 512);
|
|
26
|
+
const BUFFER_SIZE = Number(process.env.BUFFER_SIZE || 2048);
|
|
25
27
|
const BUNDLE_REQUEST_SIZE = Number(process.env.BUNDLE_REQUEST_SIZE || 4096);
|
|
26
28
|
const BUNDLE_REQUEST = payload(BUNDLE_REQUEST_SIZE);
|
|
27
|
-
|
|
28
|
-
const
|
|
29
|
+
let capsCache = null;
|
|
30
|
+
const BASE_DEFAULT_CASES = [
|
|
29
31
|
'node-http',
|
|
30
32
|
'ferrings-http',
|
|
31
33
|
'node-tcp',
|
|
@@ -34,22 +36,10 @@ const DEFAULT_CASES = [
|
|
|
34
36
|
'ferrings-tcp-facade-batch',
|
|
35
37
|
'ferrings-native-tcp'
|
|
36
38
|
];
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
'ferrings-tcp-facade-zc',
|
|
42
|
-
'ferrings-tcp-facade-batch-zc',
|
|
43
|
-
'ferrings-native-tcp-zc'
|
|
44
|
-
);
|
|
45
|
-
}
|
|
46
|
-
if (CAPS.recvBundle) {
|
|
47
|
-
DEFAULT_CASES.push('ferrings-native-tcp-recv-bundle');
|
|
48
|
-
if (CAPS.sendZc) {
|
|
49
|
-
DEFAULT_CASES.push('ferrings-native-tcp-zc-recv-bundle');
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
const CASES = (process.env.CASES || DEFAULT_CASES.join(','))
|
|
39
|
+
const CASE_SOURCE =
|
|
40
|
+
process.env.CASES ||
|
|
41
|
+
(process.argv[2] === '--serve' ? process.argv[3] : defaultCases().join(','));
|
|
42
|
+
const CASES = CASE_SOURCE
|
|
53
43
|
.split(',')
|
|
54
44
|
.map((name) => name.trim())
|
|
55
45
|
.filter(Boolean);
|
|
@@ -102,10 +92,12 @@ function baseReport() {
|
|
|
102
92
|
requests: REQUESTS,
|
|
103
93
|
concurrency: CONCURRENCY,
|
|
104
94
|
queueDepth: QUEUE_DEPTH,
|
|
95
|
+
bufferCount: BUFFER_COUNT,
|
|
96
|
+
bufferSize: BUFFER_SIZE,
|
|
105
97
|
bundleRequestSize: BUNDLE_REQUEST_SIZE,
|
|
106
98
|
cases: CASES
|
|
107
99
|
},
|
|
108
|
-
capabilities:
|
|
100
|
+
capabilities: caps(),
|
|
109
101
|
results: [],
|
|
110
102
|
error: null
|
|
111
103
|
};
|
|
@@ -126,6 +118,34 @@ function errorForReport(error) {
|
|
|
126
118
|
};
|
|
127
119
|
}
|
|
128
120
|
|
|
121
|
+
function caps() {
|
|
122
|
+
if (!capsCache) {
|
|
123
|
+
capsCache = capabilities();
|
|
124
|
+
}
|
|
125
|
+
return capsCache;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
function defaultCases() {
|
|
129
|
+
const defaults = [...BASE_DEFAULT_CASES];
|
|
130
|
+
const currentCaps = caps();
|
|
131
|
+
if (currentCaps.sendZc) {
|
|
132
|
+
defaults.push(
|
|
133
|
+
'ferrings-http-zc',
|
|
134
|
+
'ferrings-tcp-zc',
|
|
135
|
+
'ferrings-tcp-facade-zc',
|
|
136
|
+
'ferrings-tcp-facade-batch-zc',
|
|
137
|
+
'ferrings-native-tcp-zc'
|
|
138
|
+
);
|
|
139
|
+
}
|
|
140
|
+
if (currentCaps.recvBundle) {
|
|
141
|
+
defaults.push('ferrings-native-tcp-recv-bundle');
|
|
142
|
+
if (currentCaps.sendZc) {
|
|
143
|
+
defaults.push('ferrings-native-tcp-zc-recv-bundle');
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
return defaults;
|
|
147
|
+
}
|
|
148
|
+
|
|
129
149
|
async function traceServerCase(caseName) {
|
|
130
150
|
const summaryPath = path.join(
|
|
131
151
|
os.tmpdir(),
|
|
@@ -228,8 +248,8 @@ async function startServer(caseName) {
|
|
|
228
248
|
port: 0,
|
|
229
249
|
queueDepth: QUEUE_DEPTH,
|
|
230
250
|
responseBody: BODY,
|
|
231
|
-
bufferCount:
|
|
232
|
-
bufferSize:
|
|
251
|
+
bufferCount: BUFFER_COUNT,
|
|
252
|
+
bufferSize: BUFFER_SIZE,
|
|
233
253
|
useZeroCopySend: caseName === 'ferrings-http-zc'
|
|
234
254
|
});
|
|
235
255
|
const info = server.start();
|
|
@@ -260,8 +280,8 @@ async function startServer(caseName) {
|
|
|
260
280
|
host: '127.0.0.1',
|
|
261
281
|
port: 0,
|
|
262
282
|
queueDepth: QUEUE_DEPTH,
|
|
263
|
-
bufferCount:
|
|
264
|
-
bufferSize:
|
|
283
|
+
bufferCount: BUFFER_COUNT,
|
|
284
|
+
bufferSize: BUFFER_SIZE,
|
|
265
285
|
useZeroCopySend: caseName === 'ferrings-tcp-zc',
|
|
266
286
|
sendBufferCount: 512,
|
|
267
287
|
sendBufferSize: 2048
|
|
@@ -287,8 +307,8 @@ async function startServer(caseName) {
|
|
|
287
307
|
host: '127.0.0.1',
|
|
288
308
|
port: 0,
|
|
289
309
|
queueDepth: QUEUE_DEPTH,
|
|
290
|
-
bufferCount:
|
|
291
|
-
bufferSize:
|
|
310
|
+
bufferCount: BUFFER_COUNT,
|
|
311
|
+
bufferSize: BUFFER_SIZE,
|
|
292
312
|
useZeroCopySend,
|
|
293
313
|
sendBufferCount: 512,
|
|
294
314
|
sendBufferSize: 2048
|
|
@@ -320,7 +340,7 @@ async function startServer(caseName) {
|
|
|
320
340
|
const useZeroCopySend =
|
|
321
341
|
caseName === 'ferrings-native-tcp-zc' ||
|
|
322
342
|
caseName === 'ferrings-native-tcp-zc-recv-bundle';
|
|
323
|
-
if (useRecvBundle && !
|
|
343
|
+
if (useRecvBundle && !caps().recvBundle) {
|
|
324
344
|
throw new Error(
|
|
325
345
|
`${caseName} requires IORING_FEAT_RECVSEND_BUNDLE but capabilities().recvBundle is false`
|
|
326
346
|
);
|
|
@@ -329,8 +349,8 @@ async function startServer(caseName) {
|
|
|
329
349
|
host: '127.0.0.1',
|
|
330
350
|
port: 0,
|
|
331
351
|
queueDepth: QUEUE_DEPTH,
|
|
332
|
-
bufferCount:
|
|
333
|
-
bufferSize: useRecvBundle ? 512 :
|
|
352
|
+
bufferCount: BUFFER_COUNT,
|
|
353
|
+
bufferSize: useRecvBundle ? 512 : BUFFER_SIZE,
|
|
334
354
|
useRecvBundle,
|
|
335
355
|
useZeroCopySend,
|
|
336
356
|
sendBufferCount: 512,
|
package/benchmark/tcp-echo.js
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
const fs = require('node:fs');
|
|
4
4
|
const net = require('node:net');
|
|
5
|
+
const os = require('node:os');
|
|
5
6
|
const path = require('node:path');
|
|
7
|
+
const { spawnSync } = require('node:child_process');
|
|
6
8
|
const { performance } = require('node:perf_hooks');
|
|
7
9
|
const {
|
|
8
10
|
UringTcpEchoServer,
|
|
@@ -16,11 +18,57 @@ const RESPONSE = Buffer.from('pong');
|
|
|
16
18
|
const DURATION_MS = Number(process.env.DURATION_MS || 5000);
|
|
17
19
|
const CONCURRENCY = Number(process.env.CONCURRENCY || 128);
|
|
18
20
|
const QUEUE_DEPTH = Number(process.env.QUEUE_DEPTH || 256);
|
|
21
|
+
const BUFFER_COUNT = Number(process.env.BUFFER_COUNT || 512);
|
|
22
|
+
const BUFFER_SIZE = Number(process.env.BUFFER_SIZE || 2048);
|
|
19
23
|
const BUNDLE_REQUEST_SIZE = Number(process.env.BUNDLE_REQUEST_SIZE || 4096);
|
|
20
24
|
const BUNDLE_REQUEST = payload(BUNDLE_REQUEST_SIZE);
|
|
21
|
-
|
|
25
|
+
let capsCache = null;
|
|
26
|
+
const DEFAULT_CASES = [
|
|
27
|
+
'node:net echo',
|
|
28
|
+
'ferrings native tcp echo',
|
|
29
|
+
'ferrings native tcp echo recv-bundle',
|
|
30
|
+
'ferrings tcp echo',
|
|
31
|
+
'ferrings tcp echo batch',
|
|
32
|
+
'ferrings tcp echo full batch',
|
|
33
|
+
'ferrings tcp facade echo',
|
|
34
|
+
'ferrings tcp facade batch echo',
|
|
35
|
+
'ferrings tcp echo zc',
|
|
36
|
+
'ferrings native tcp echo zc',
|
|
37
|
+
'ferrings native tcp echo zc recv-bundle',
|
|
38
|
+
'ferrings tcp echo batch zc',
|
|
39
|
+
'ferrings tcp echo full batch zc',
|
|
40
|
+
'ferrings tcp facade echo zc',
|
|
41
|
+
'ferrings tcp facade batch echo zc'
|
|
42
|
+
];
|
|
43
|
+
const CASES = (process.env.CASES || DEFAULT_CASES.join(','))
|
|
44
|
+
.split(',')
|
|
45
|
+
.map((name) => name.trim())
|
|
46
|
+
.filter(Boolean);
|
|
47
|
+
const CASE_ISOLATION = process.env.CASE_ISOLATION !== '0';
|
|
48
|
+
const CASE_REPORT_PATH = process.env.CASE_REPORT_PATH;
|
|
22
49
|
const REPORT_PATH = process.env.REPORT_PATH;
|
|
23
50
|
|
|
51
|
+
if (process.argv[2] === '--case') {
|
|
52
|
+
runCase(process.argv[3])
|
|
53
|
+
.then((result) => {
|
|
54
|
+
if (CASE_REPORT_PATH) {
|
|
55
|
+
fs.mkdirSync(path.dirname(CASE_REPORT_PATH), { recursive: true });
|
|
56
|
+
fs.writeFileSync(CASE_REPORT_PATH, `${JSON.stringify(result, null, 2)}\n`);
|
|
57
|
+
} else {
|
|
58
|
+
console.log(JSON.stringify(result));
|
|
59
|
+
}
|
|
60
|
+
})
|
|
61
|
+
.catch((error) => {
|
|
62
|
+
console.error(error);
|
|
63
|
+
process.exitCode = 1;
|
|
64
|
+
});
|
|
65
|
+
} else {
|
|
66
|
+
main().catch((error) => {
|
|
67
|
+
console.error(error);
|
|
68
|
+
process.exitCode = 1;
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
|
|
24
72
|
function payload(size) {
|
|
25
73
|
const data = Buffer.alloc(size);
|
|
26
74
|
for (let index = 0; index < data.length; index += 1) {
|
|
@@ -29,6 +77,13 @@ function payload(size) {
|
|
|
29
77
|
return data;
|
|
30
78
|
}
|
|
31
79
|
|
|
80
|
+
function caps() {
|
|
81
|
+
if (!capsCache) {
|
|
82
|
+
capsCache = capabilities();
|
|
83
|
+
}
|
|
84
|
+
return capsCache;
|
|
85
|
+
}
|
|
86
|
+
|
|
32
87
|
function echoOnce(port, request = REQUEST, expected = RESPONSE) {
|
|
33
88
|
const startedAt = performance.now();
|
|
34
89
|
return new Promise((resolve, reject) => {
|
|
@@ -101,8 +156,8 @@ async function withUringNativeEchoServer(options = {}, request = REQUEST) {
|
|
|
101
156
|
host: '127.0.0.1',
|
|
102
157
|
port: 0,
|
|
103
158
|
queueDepth: QUEUE_DEPTH,
|
|
104
|
-
bufferCount:
|
|
105
|
-
bufferSize:
|
|
159
|
+
bufferCount: BUFFER_COUNT,
|
|
160
|
+
bufferSize: BUFFER_SIZE,
|
|
106
161
|
...options
|
|
107
162
|
});
|
|
108
163
|
|
|
@@ -122,8 +177,8 @@ async function withUringServer(options = {}) {
|
|
|
122
177
|
host: '127.0.0.1',
|
|
123
178
|
port: 0,
|
|
124
179
|
queueDepth: QUEUE_DEPTH,
|
|
125
|
-
bufferCount:
|
|
126
|
-
bufferSize:
|
|
180
|
+
bufferCount: BUFFER_COUNT,
|
|
181
|
+
bufferSize: BUFFER_SIZE,
|
|
127
182
|
...options
|
|
128
183
|
});
|
|
129
184
|
|
|
@@ -148,8 +203,8 @@ async function withUringBatchServer(options = {}) {
|
|
|
148
203
|
host: '127.0.0.1',
|
|
149
204
|
port: 0,
|
|
150
205
|
queueDepth: QUEUE_DEPTH,
|
|
151
|
-
bufferCount:
|
|
152
|
-
bufferSize:
|
|
206
|
+
bufferCount: BUFFER_COUNT,
|
|
207
|
+
bufferSize: BUFFER_SIZE,
|
|
153
208
|
...options
|
|
154
209
|
});
|
|
155
210
|
|
|
@@ -176,8 +231,8 @@ async function withUringFullBatchServer(options = {}) {
|
|
|
176
231
|
host: '127.0.0.1',
|
|
177
232
|
port: 0,
|
|
178
233
|
queueDepth: QUEUE_DEPTH,
|
|
179
|
-
bufferCount:
|
|
180
|
-
bufferSize:
|
|
234
|
+
bufferCount: BUFFER_COUNT,
|
|
235
|
+
bufferSize: BUFFER_SIZE,
|
|
181
236
|
...options
|
|
182
237
|
});
|
|
183
238
|
|
|
@@ -209,8 +264,8 @@ async function withTcpFacadeServer(options = {}) {
|
|
|
209
264
|
host: '127.0.0.1',
|
|
210
265
|
port: 0,
|
|
211
266
|
queueDepth: QUEUE_DEPTH,
|
|
212
|
-
bufferCount:
|
|
213
|
-
bufferSize:
|
|
267
|
+
bufferCount: BUFFER_COUNT,
|
|
268
|
+
bufferSize: BUFFER_SIZE,
|
|
214
269
|
...options
|
|
215
270
|
},
|
|
216
271
|
(connection) => {
|
|
@@ -237,8 +292,8 @@ async function withTcpFacadeBatchServer(options = {}) {
|
|
|
237
292
|
host: '127.0.0.1',
|
|
238
293
|
port: 0,
|
|
239
294
|
queueDepth: QUEUE_DEPTH,
|
|
240
|
-
bufferCount:
|
|
241
|
-
bufferSize:
|
|
295
|
+
bufferCount: BUFFER_COUNT,
|
|
296
|
+
bufferSize: BUFFER_SIZE,
|
|
242
297
|
...options
|
|
243
298
|
});
|
|
244
299
|
|
|
@@ -265,16 +320,27 @@ function percentile(values, quantile) {
|
|
|
265
320
|
}
|
|
266
321
|
|
|
267
322
|
async function maybeRecvBundle(label, runner) {
|
|
268
|
-
if (!
|
|
323
|
+
if (!caps().recvBundle) {
|
|
269
324
|
const result = {
|
|
270
325
|
skipped: 'kernel does not report IORING_FEAT_RECVSEND_BUNDLE'
|
|
271
326
|
};
|
|
272
327
|
console.log(label, result);
|
|
273
328
|
return result;
|
|
274
329
|
}
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
330
|
+
try {
|
|
331
|
+
const result = await runner();
|
|
332
|
+
console.log(label, result);
|
|
333
|
+
return result;
|
|
334
|
+
} catch (error) {
|
|
335
|
+
if (/provided-buffer-ring setup was unavailable|Cannot allocate memory/i.test(error.message)) {
|
|
336
|
+
const result = {
|
|
337
|
+
skipped: error.message
|
|
338
|
+
};
|
|
339
|
+
console.log(label, result);
|
|
340
|
+
return result;
|
|
341
|
+
}
|
|
342
|
+
throw error;
|
|
343
|
+
}
|
|
278
344
|
}
|
|
279
345
|
|
|
280
346
|
function summarizeServerInfo(info) {
|
|
@@ -318,9 +384,12 @@ function baseReport() {
|
|
|
318
384
|
durationMs: DURATION_MS,
|
|
319
385
|
concurrency: CONCURRENCY,
|
|
320
386
|
queueDepth: QUEUE_DEPTH,
|
|
321
|
-
|
|
387
|
+
bufferCount: BUFFER_COUNT,
|
|
388
|
+
bufferSize: BUFFER_SIZE,
|
|
389
|
+
bundleRequestSize: BUNDLE_REQUEST_SIZE,
|
|
390
|
+
cases: CASES
|
|
322
391
|
},
|
|
323
|
-
capabilities:
|
|
392
|
+
capabilities: caps(),
|
|
324
393
|
results: [],
|
|
325
394
|
error: null
|
|
326
395
|
};
|
|
@@ -341,21 +410,55 @@ function errorForReport(error) {
|
|
|
341
410
|
};
|
|
342
411
|
}
|
|
343
412
|
|
|
344
|
-
async function record(report, caseName
|
|
345
|
-
const result = await
|
|
413
|
+
async function record(report, caseName) {
|
|
414
|
+
const result = CASE_ISOLATION ? runIsolatedCase(caseName) : await runCase(caseName);
|
|
346
415
|
report.results.push({ caseName, result });
|
|
347
416
|
console.log(caseName, result);
|
|
348
417
|
}
|
|
349
418
|
|
|
350
|
-
|
|
351
|
-
const
|
|
419
|
+
function runIsolatedCase(caseName) {
|
|
420
|
+
const caseReportPath = path.join(
|
|
421
|
+
os.tmpdir(),
|
|
422
|
+
`ferrings-tcp-case-${process.pid}-${Date.now()}-${caseName.replace(/[^a-z0-9]+/gi, '-')}.json`
|
|
423
|
+
);
|
|
424
|
+
const result = spawnSync(process.execPath, [__filename, '--case', caseName], {
|
|
425
|
+
cwd: path.join(__dirname, '..'),
|
|
426
|
+
env: {
|
|
427
|
+
...process.env,
|
|
428
|
+
CASE_ISOLATION: '0',
|
|
429
|
+
CASE_REPORT_PATH: caseReportPath,
|
|
430
|
+
REPORT_PATH: ''
|
|
431
|
+
},
|
|
432
|
+
stdio: 'inherit'
|
|
433
|
+
});
|
|
434
|
+
if (result.error) {
|
|
435
|
+
throw result.error;
|
|
436
|
+
}
|
|
437
|
+
if (result.status !== 0) {
|
|
438
|
+
const error = new Error(`${caseName} exited with status ${result.status ?? 1}`);
|
|
439
|
+
error.caseResult = readCaseReport(caseReportPath);
|
|
440
|
+
throw error;
|
|
441
|
+
}
|
|
442
|
+
return readCaseReport(caseReportPath);
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
function readCaseReport(caseReportPath) {
|
|
352
446
|
try {
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
447
|
+
if (!fs.existsSync(caseReportPath)) return null;
|
|
448
|
+
return JSON.parse(fs.readFileSync(caseReportPath, 'utf8'));
|
|
449
|
+
} finally {
|
|
450
|
+
fs.rmSync(caseReportPath, { force: true });
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
async function runCase(caseName) {
|
|
455
|
+
switch (caseName) {
|
|
456
|
+
case 'node:net echo':
|
|
457
|
+
return withNodeServer();
|
|
458
|
+
case 'ferrings native tcp echo':
|
|
459
|
+
return withUringNativeEchoServer();
|
|
460
|
+
case 'ferrings native tcp echo recv-bundle':
|
|
461
|
+
return maybeRecvBundle(caseName, () =>
|
|
359
462
|
withUringNativeEchoServer(
|
|
360
463
|
{
|
|
361
464
|
bufferSize: 512,
|
|
@@ -363,30 +466,31 @@ async function record(report, caseName, runner) {
|
|
|
363
466
|
},
|
|
364
467
|
BUNDLE_REQUEST
|
|
365
468
|
)
|
|
366
|
-
)
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
469
|
+
);
|
|
470
|
+
case 'ferrings tcp echo':
|
|
471
|
+
return withUringServer();
|
|
472
|
+
case 'ferrings tcp echo batch':
|
|
473
|
+
return withUringBatchServer();
|
|
474
|
+
case 'ferrings tcp echo full batch':
|
|
475
|
+
return withUringFullBatchServer();
|
|
476
|
+
case 'ferrings tcp facade echo':
|
|
477
|
+
return withTcpFacadeServer();
|
|
478
|
+
case 'ferrings tcp facade batch echo':
|
|
479
|
+
return withTcpFacadeBatchServer();
|
|
480
|
+
case 'ferrings tcp echo zc':
|
|
481
|
+
return withUringServer({
|
|
375
482
|
useZeroCopySend: true,
|
|
376
483
|
sendBufferCount: 512,
|
|
377
484
|
sendBufferSize: 2048
|
|
378
|
-
})
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
withUringNativeEchoServer({
|
|
485
|
+
});
|
|
486
|
+
case 'ferrings native tcp echo zc':
|
|
487
|
+
return withUringNativeEchoServer({
|
|
382
488
|
useZeroCopySend: true,
|
|
383
489
|
sendBufferCount: 512,
|
|
384
490
|
sendBufferSize: 2048
|
|
385
|
-
})
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
caseName: 'ferrings native tcp echo zc recv-bundle',
|
|
389
|
-
result: await maybeRecvBundle('ferrings native tcp echo zc recv-bundle', () =>
|
|
491
|
+
});
|
|
492
|
+
case 'ferrings native tcp echo zc recv-bundle':
|
|
493
|
+
return maybeRecvBundle(caseName, () =>
|
|
390
494
|
withUringNativeEchoServer(
|
|
391
495
|
{
|
|
392
496
|
bufferSize: 512,
|
|
@@ -397,36 +501,43 @@ async function record(report, caseName, runner) {
|
|
|
397
501
|
},
|
|
398
502
|
BUNDLE_REQUEST
|
|
399
503
|
)
|
|
400
|
-
)
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
withUringBatchServer({
|
|
504
|
+
);
|
|
505
|
+
case 'ferrings tcp echo batch zc':
|
|
506
|
+
return withUringBatchServer({
|
|
404
507
|
useZeroCopySend: true,
|
|
405
508
|
sendBufferCount: 512,
|
|
406
509
|
sendBufferSize: 2048
|
|
407
|
-
})
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
withUringFullBatchServer({
|
|
510
|
+
});
|
|
511
|
+
case 'ferrings tcp echo full batch zc':
|
|
512
|
+
return withUringFullBatchServer({
|
|
411
513
|
useZeroCopySend: true,
|
|
412
514
|
sendBufferCount: 512,
|
|
413
515
|
sendBufferSize: 2048
|
|
414
|
-
})
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
withTcpFacadeServer({
|
|
516
|
+
});
|
|
517
|
+
case 'ferrings tcp facade echo zc':
|
|
518
|
+
return withTcpFacadeServer({
|
|
418
519
|
useZeroCopySend: true,
|
|
419
520
|
sendBufferCount: 512,
|
|
420
521
|
sendBufferSize: 2048
|
|
421
|
-
})
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
withTcpFacadeBatchServer({
|
|
522
|
+
});
|
|
523
|
+
case 'ferrings tcp facade batch echo zc':
|
|
524
|
+
return withTcpFacadeBatchServer({
|
|
425
525
|
useZeroCopySend: true,
|
|
426
526
|
sendBufferCount: 512,
|
|
427
527
|
sendBufferSize: 2048
|
|
428
|
-
})
|
|
429
|
-
|
|
528
|
+
});
|
|
529
|
+
default:
|
|
530
|
+
throw new Error(`unknown TCP benchmark case: ${caseName}`);
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
async function main() {
|
|
535
|
+
const report = baseReport();
|
|
536
|
+
try {
|
|
537
|
+
console.log(report.config);
|
|
538
|
+
for (const caseName of CASES) {
|
|
539
|
+
await record(report, caseName);
|
|
540
|
+
}
|
|
430
541
|
report.status = 'passed';
|
|
431
542
|
} catch (error) {
|
|
432
543
|
report.status = 'failed';
|
|
@@ -436,7 +547,4 @@ async function record(report, caseName, runner) {
|
|
|
436
547
|
report.finishedAt = new Date().toISOString();
|
|
437
548
|
writeReport(report);
|
|
438
549
|
}
|
|
439
|
-
}
|
|
440
|
-
console.error(error);
|
|
441
|
-
process.exitCode = 1;
|
|
442
|
-
});
|
|
550
|
+
}
|
|
Binary file
|
package/native.js
CHANGED
|
@@ -77,8 +77,8 @@ function requireNative() {
|
|
|
77
77
|
try {
|
|
78
78
|
const binding = require('ferrings-android-arm64')
|
|
79
79
|
const bindingPackageVersion = require('ferrings-android-arm64/package.json').version
|
|
80
|
-
if (bindingPackageVersion !== '0.2.
|
|
81
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
80
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
82
|
}
|
|
83
83
|
return binding
|
|
84
84
|
} catch (e) {
|
|
@@ -93,8 +93,8 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require('ferrings-android-arm-eabi')
|
|
95
95
|
const bindingPackageVersion = require('ferrings-android-arm-eabi/package.json').version
|
|
96
|
-
if (bindingPackageVersion !== '0.2.
|
|
97
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
96
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
98
|
}
|
|
99
99
|
return binding
|
|
100
100
|
} catch (e) {
|
|
@@ -114,8 +114,8 @@ function requireNative() {
|
|
|
114
114
|
try {
|
|
115
115
|
const binding = require('ferrings-win32-x64-gnu')
|
|
116
116
|
const bindingPackageVersion = require('ferrings-win32-x64-gnu/package.json').version
|
|
117
|
-
if (bindingPackageVersion !== '0.2.
|
|
118
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
117
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
119
|
}
|
|
120
120
|
return binding
|
|
121
121
|
} catch (e) {
|
|
@@ -130,8 +130,8 @@ function requireNative() {
|
|
|
130
130
|
try {
|
|
131
131
|
const binding = require('ferrings-win32-x64-msvc')
|
|
132
132
|
const bindingPackageVersion = require('ferrings-win32-x64-msvc/package.json').version
|
|
133
|
-
if (bindingPackageVersion !== '0.2.
|
|
134
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
133
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
135
|
}
|
|
136
136
|
return binding
|
|
137
137
|
} catch (e) {
|
|
@@ -147,8 +147,8 @@ function requireNative() {
|
|
|
147
147
|
try {
|
|
148
148
|
const binding = require('ferrings-win32-ia32-msvc')
|
|
149
149
|
const bindingPackageVersion = require('ferrings-win32-ia32-msvc/package.json').version
|
|
150
|
-
if (bindingPackageVersion !== '0.2.
|
|
151
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
150
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
152
|
}
|
|
153
153
|
return binding
|
|
154
154
|
} catch (e) {
|
|
@@ -163,8 +163,8 @@ function requireNative() {
|
|
|
163
163
|
try {
|
|
164
164
|
const binding = require('ferrings-win32-arm64-msvc')
|
|
165
165
|
const bindingPackageVersion = require('ferrings-win32-arm64-msvc/package.json').version
|
|
166
|
-
if (bindingPackageVersion !== '0.2.
|
|
167
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
166
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
168
|
}
|
|
169
169
|
return binding
|
|
170
170
|
} catch (e) {
|
|
@@ -182,8 +182,8 @@ function requireNative() {
|
|
|
182
182
|
try {
|
|
183
183
|
const binding = require('ferrings-darwin-universal')
|
|
184
184
|
const bindingPackageVersion = require('ferrings-darwin-universal/package.json').version
|
|
185
|
-
if (bindingPackageVersion !== '0.2.
|
|
186
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
185
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
187
|
}
|
|
188
188
|
return binding
|
|
189
189
|
} catch (e) {
|
|
@@ -198,8 +198,8 @@ function requireNative() {
|
|
|
198
198
|
try {
|
|
199
199
|
const binding = require('ferrings-darwin-x64')
|
|
200
200
|
const bindingPackageVersion = require('ferrings-darwin-x64/package.json').version
|
|
201
|
-
if (bindingPackageVersion !== '0.2.
|
|
202
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
201
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
203
|
}
|
|
204
204
|
return binding
|
|
205
205
|
} catch (e) {
|
|
@@ -214,8 +214,8 @@ function requireNative() {
|
|
|
214
214
|
try {
|
|
215
215
|
const binding = require('ferrings-darwin-arm64')
|
|
216
216
|
const bindingPackageVersion = require('ferrings-darwin-arm64/package.json').version
|
|
217
|
-
if (bindingPackageVersion !== '0.2.
|
|
218
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
217
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
219
|
}
|
|
220
220
|
return binding
|
|
221
221
|
} catch (e) {
|
|
@@ -234,8 +234,8 @@ function requireNative() {
|
|
|
234
234
|
try {
|
|
235
235
|
const binding = require('ferrings-freebsd-x64')
|
|
236
236
|
const bindingPackageVersion = require('ferrings-freebsd-x64/package.json').version
|
|
237
|
-
if (bindingPackageVersion !== '0.2.
|
|
238
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
237
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
239
|
}
|
|
240
240
|
return binding
|
|
241
241
|
} catch (e) {
|
|
@@ -250,8 +250,8 @@ function requireNative() {
|
|
|
250
250
|
try {
|
|
251
251
|
const binding = require('ferrings-freebsd-arm64')
|
|
252
252
|
const bindingPackageVersion = require('ferrings-freebsd-arm64/package.json').version
|
|
253
|
-
if (bindingPackageVersion !== '0.2.
|
|
254
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
253
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
255
|
}
|
|
256
256
|
return binding
|
|
257
257
|
} catch (e) {
|
|
@@ -271,8 +271,8 @@ function requireNative() {
|
|
|
271
271
|
try {
|
|
272
272
|
const binding = require('ferrings-linux-x64-musl')
|
|
273
273
|
const bindingPackageVersion = require('ferrings-linux-x64-musl/package.json').version
|
|
274
|
-
if (bindingPackageVersion !== '0.2.
|
|
275
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
274
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
276
|
}
|
|
277
277
|
return binding
|
|
278
278
|
} catch (e) {
|
|
@@ -287,8 +287,8 @@ function requireNative() {
|
|
|
287
287
|
try {
|
|
288
288
|
const binding = require('ferrings-linux-x64-gnu')
|
|
289
289
|
const bindingPackageVersion = require('ferrings-linux-x64-gnu/package.json').version
|
|
290
|
-
if (bindingPackageVersion !== '0.2.
|
|
291
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
290
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
292
|
}
|
|
293
293
|
return binding
|
|
294
294
|
} catch (e) {
|
|
@@ -305,8 +305,8 @@ function requireNative() {
|
|
|
305
305
|
try {
|
|
306
306
|
const binding = require('ferrings-linux-arm64-musl')
|
|
307
307
|
const bindingPackageVersion = require('ferrings-linux-arm64-musl/package.json').version
|
|
308
|
-
if (bindingPackageVersion !== '0.2.
|
|
309
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
308
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
310
|
}
|
|
311
311
|
return binding
|
|
312
312
|
} catch (e) {
|
|
@@ -321,8 +321,8 @@ function requireNative() {
|
|
|
321
321
|
try {
|
|
322
322
|
const binding = require('ferrings-linux-arm64-gnu')
|
|
323
323
|
const bindingPackageVersion = require('ferrings-linux-arm64-gnu/package.json').version
|
|
324
|
-
if (bindingPackageVersion !== '0.2.
|
|
325
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
324
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
326
|
}
|
|
327
327
|
return binding
|
|
328
328
|
} catch (e) {
|
|
@@ -339,8 +339,8 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require('ferrings-linux-arm-musleabihf')
|
|
341
341
|
const bindingPackageVersion = require('ferrings-linux-arm-musleabihf/package.json').version
|
|
342
|
-
if (bindingPackageVersion !== '0.2.
|
|
343
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
342
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
344
|
}
|
|
345
345
|
return binding
|
|
346
346
|
} catch (e) {
|
|
@@ -355,8 +355,8 @@ function requireNative() {
|
|
|
355
355
|
try {
|
|
356
356
|
const binding = require('ferrings-linux-arm-gnueabihf')
|
|
357
357
|
const bindingPackageVersion = require('ferrings-linux-arm-gnueabihf/package.json').version
|
|
358
|
-
if (bindingPackageVersion !== '0.2.
|
|
359
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
358
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
360
|
}
|
|
361
361
|
return binding
|
|
362
362
|
} catch (e) {
|
|
@@ -373,8 +373,8 @@ function requireNative() {
|
|
|
373
373
|
try {
|
|
374
374
|
const binding = require('ferrings-linux-loong64-musl')
|
|
375
375
|
const bindingPackageVersion = require('ferrings-linux-loong64-musl/package.json').version
|
|
376
|
-
if (bindingPackageVersion !== '0.2.
|
|
377
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
376
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
378
|
}
|
|
379
379
|
return binding
|
|
380
380
|
} catch (e) {
|
|
@@ -389,8 +389,8 @@ function requireNative() {
|
|
|
389
389
|
try {
|
|
390
390
|
const binding = require('ferrings-linux-loong64-gnu')
|
|
391
391
|
const bindingPackageVersion = require('ferrings-linux-loong64-gnu/package.json').version
|
|
392
|
-
if (bindingPackageVersion !== '0.2.
|
|
393
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
392
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
394
|
}
|
|
395
395
|
return binding
|
|
396
396
|
} catch (e) {
|
|
@@ -407,8 +407,8 @@ function requireNative() {
|
|
|
407
407
|
try {
|
|
408
408
|
const binding = require('ferrings-linux-riscv64-musl')
|
|
409
409
|
const bindingPackageVersion = require('ferrings-linux-riscv64-musl/package.json').version
|
|
410
|
-
if (bindingPackageVersion !== '0.2.
|
|
411
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
410
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
412
|
}
|
|
413
413
|
return binding
|
|
414
414
|
} catch (e) {
|
|
@@ -423,8 +423,8 @@ function requireNative() {
|
|
|
423
423
|
try {
|
|
424
424
|
const binding = require('ferrings-linux-riscv64-gnu')
|
|
425
425
|
const bindingPackageVersion = require('ferrings-linux-riscv64-gnu/package.json').version
|
|
426
|
-
if (bindingPackageVersion !== '0.2.
|
|
427
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
426
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
428
|
}
|
|
429
429
|
return binding
|
|
430
430
|
} catch (e) {
|
|
@@ -440,8 +440,8 @@ function requireNative() {
|
|
|
440
440
|
try {
|
|
441
441
|
const binding = require('ferrings-linux-ppc64-gnu')
|
|
442
442
|
const bindingPackageVersion = require('ferrings-linux-ppc64-gnu/package.json').version
|
|
443
|
-
if (bindingPackageVersion !== '0.2.
|
|
444
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
443
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
445
|
}
|
|
446
446
|
return binding
|
|
447
447
|
} catch (e) {
|
|
@@ -456,8 +456,8 @@ function requireNative() {
|
|
|
456
456
|
try {
|
|
457
457
|
const binding = require('ferrings-linux-s390x-gnu')
|
|
458
458
|
const bindingPackageVersion = require('ferrings-linux-s390x-gnu/package.json').version
|
|
459
|
-
if (bindingPackageVersion !== '0.2.
|
|
460
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
459
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
461
|
}
|
|
462
462
|
return binding
|
|
463
463
|
} catch (e) {
|
|
@@ -476,8 +476,8 @@ function requireNative() {
|
|
|
476
476
|
try {
|
|
477
477
|
const binding = require('ferrings-openharmony-arm64')
|
|
478
478
|
const bindingPackageVersion = require('ferrings-openharmony-arm64/package.json').version
|
|
479
|
-
if (bindingPackageVersion !== '0.2.
|
|
480
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
479
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
481
|
}
|
|
482
482
|
return binding
|
|
483
483
|
} catch (e) {
|
|
@@ -492,8 +492,8 @@ function requireNative() {
|
|
|
492
492
|
try {
|
|
493
493
|
const binding = require('ferrings-openharmony-x64')
|
|
494
494
|
const bindingPackageVersion = require('ferrings-openharmony-x64/package.json').version
|
|
495
|
-
if (bindingPackageVersion !== '0.2.
|
|
496
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
495
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
497
|
}
|
|
498
498
|
return binding
|
|
499
499
|
} catch (e) {
|
|
@@ -508,8 +508,8 @@ function requireNative() {
|
|
|
508
508
|
try {
|
|
509
509
|
const binding = require('ferrings-openharmony-arm')
|
|
510
510
|
const bindingPackageVersion = require('ferrings-openharmony-arm/package.json').version
|
|
511
|
-
if (bindingPackageVersion !== '0.2.
|
|
512
|
-
throw new Error(`Native binding package version mismatch, expected 0.2.
|
|
511
|
+
if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
513
|
}
|
|
514
514
|
return binding
|
|
515
515
|
} catch (e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ferrings",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Linux io_uring TCP transport experiments for Node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -68,10 +68,10 @@
|
|
|
68
68
|
"@napi-rs/cli": "^3.7.2"
|
|
69
69
|
},
|
|
70
70
|
"optionalDependencies": {
|
|
71
|
-
"ferrings-linux-arm64-gnu": "0.2.
|
|
72
|
-
"ferrings-linux-arm64-musl": "0.2.
|
|
73
|
-
"ferrings-linux-x64-gnu": "0.2.
|
|
74
|
-
"ferrings-linux-x64-musl": "0.2.
|
|
71
|
+
"ferrings-linux-arm64-gnu": "0.2.1",
|
|
72
|
+
"ferrings-linux-arm64-musl": "0.2.1",
|
|
73
|
+
"ferrings-linux-x64-gnu": "0.2.1",
|
|
74
|
+
"ferrings-linux-x64-musl": "0.2.1"
|
|
75
75
|
},
|
|
76
76
|
"napi": {
|
|
77
77
|
"binaryName": "ferrings",
|