mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 16:10:50 +00:00

Under Windows 'ipc' communication requires the other process to format its messages with 'IPC framing protocol'. Otherwise, an assert is triggered in libuv. This commit changes child-process-read benchmark to use stdout to communicate with parent process. It also adds child-process-read-ipc.js to benchmark IPC communication using child node process. PR-URL: https://github.com/nodejs/node/pull/6971 Reviewed-By: João Reis <reis@janeasystems.com> Reviewed-By: James M Snell <jasnell@gmail.com>
37 lines
843 B
JavaScript
37 lines
843 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const os = require('os');
|
|
|
|
var messagesLength = [64, 256, 1024, 4096];
|
|
// Windows does not support that long arguments
|
|
if (os.platform() !== 'win32')
|
|
messagesLength.push(32768);
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
len: messagesLength,
|
|
dur: [5]
|
|
});
|
|
|
|
const spawn = require('child_process').spawn;
|
|
function main(conf) {
|
|
bench.start();
|
|
|
|
const dur = +conf.dur;
|
|
const len = +conf.len;
|
|
|
|
const msg = '"' + Array(len).join('.') + '"';
|
|
const options = { 'stdio': ['ignore', 'pipe', 'ignore'] };
|
|
const child = spawn('yes', [msg], options);
|
|
|
|
var bytes = 0;
|
|
child.stdout.on('data', function(msg) {
|
|
bytes += msg.length;
|
|
});
|
|
|
|
setTimeout(function() {
|
|
child.kill();
|
|
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
|
|
bench.end(gbits);
|
|
}, dur * 1000);
|
|
}
|