forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnet-c2s-cork.js
85 lines (70 loc) · 1.76 KB
/
net-c2s-cork.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Test the speed of .pipe() with sockets
'use strict';
const common = require('../common.js');
const net = require('net');
const PORT = common.PORT;
const bench = common.createBenchmark(main, {
len: [4, 8, 16, 32, 64, 128, 512, 1024],
type: ['buf'],
dur: [5],
});
var chunk;
var encoding;
function main({ dur, len, type }) {
switch (type) {
case 'buf':
chunk = Buffer.alloc(len, 'x');
break;
case 'utf':
encoding = 'utf8';
chunk = 'ü'.repeat(len / 2);
break;
case 'asc':
encoding = 'ascii';
chunk = 'x'.repeat(len);
break;
default:
throw new Error(`invalid type: ${type}`);
}
const writer = new Writer();
// The actual benchmark.
const server = net.createServer((socket) => {
socket.pipe(writer);
});
server.listen(PORT, () => {
const socket = net.connect(PORT);
socket.on('connect', () => {
bench.start();
socket.on('drain', send);
send();
setTimeout(() => {
const bytes = writer.received;
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
bench.end(gbits);
process.exit(0);
}, dur * 1000);
function send() {
socket.cork();
while (socket.write(chunk, encoding)) {}
socket.uncork();
}
});
});
}
function Writer() {
this.received = 0;
this.writable = true;
}
Writer.prototype.write = function(chunk, encoding, cb) {
this.received += chunk.length;
if (typeof encoding === 'function')
encoding();
else if (typeof cb === 'function')
cb();
return true;
};
// Doesn't matter, never emits anything.
Writer.prototype.on = function() {};
Writer.prototype.once = function() {};
Writer.prototype.emit = function() {};
Writer.prototype.prependListener = function() {};