Nodejs进阶:如何玩转子进程(child_process)
本文摘录自个人总结《Nodejs学习笔记》,更多章节及更新,请访问 github主页地址。欢迎加群交流,群号 197339705。
模块概览
在node中,child_process这个模块非常重要。掌握了它,等于在node的世界开启了一扇新的大门。熟悉shell脚本的同学,可以用它来完成很多有意思的事情,比如文件压缩、增量部署等,感兴趣的同学,看文本文后可以尝试下。
举个简单的例子:
const spawn = require('child_process').spawn;
const ls = spawn('ls', ['-lh', '/usr']);
ls.stdout.on('data', (data) => {
console.log(`stdout: ${data}`);
});
ls.stderr.on('data', (data) => {
console.log(`stderr: ${data}`);
});
ls.on('close', (code) => {
console.log(`child process exited with code ${code}`);
});
几种创建子进程的方式
注意事项:
- 下面列出来的都是异步创建子进程的方式,每一种方式都有对应的同步版本。
.exec()
、.execFile()
、.fork()
底层都是通过.spawn()
实现的。.exec()
、execFile()
额外提供了回调,当子进程停止的时候执行。
child_process.spawn(command[, args][, options])
child_process.exec(command[, options][, callback])
child_process.execFile(file[, args][, options][, callback])
child_process.fork(modulePath[, args][, options])
child_process.exec(command[, options][, callback])
创建一个shell,然后在shell里执行命令。执行完成后,将stdout、stderr作为参数传入回调方法。
spawns a shell and runs a command within that shell, passing the stdout and stderr to a callback function when complete.
例子如下:
- 执行成功,
error
为null
;执行失败,error
为Error
实例。error.code
为错误码, stdout
、stderr
为标准输出、标准错误。默认是字符串,除非options.encoding
为buffer
var exec = require('child_process').exec;
// 成功的例子
exec('ls -al', function(error, stdout, stderr){
if(error) {
console.error('error: ' + error);
return;
}
console.log('stdout: ' + stdout);
console.log('stderr: ' + typeof stderr);
});
// 失败的例子
exec('ls hello.txt', function(error, stdout, stderr){
if(error) {
console.error('error: ' + error);
return;
}
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
});
参数说明:
cwd
:当前工作路径。env
:环境变量。encoding
:编码,默认是utf8
。shell
:用来执行命令的shell,unix上默认是/bin/sh
,windows上默认是cmd.exe
。timeout
:默认是0。killSignal
:默认是SIGTERM
。uid
:执行进程的uid。gid
:执行进程的gid。maxBuffer
: 标准输出、错误输出最大允许的数据量(单位为字节),如果超出的话,子进程就会被杀死。默认是200*1024(就是200k啦)
备注:
- 如果
timeout
大于0,那么,当子进程运行超过timeout
毫秒,那么,就会给进程发送killSignal
指定的信号(比如SIGTERM
)。 - 如果运行没有出错,那么
error
为null
。如果运行出错,那么,error.code
就是退出代码(exist code),error.signal
会被设置成终止进程的信号。(比如CTRL+C
时发送的SIGINT
)
风险项
传入的命令,如果是用户输入的,有可能产生类似sql注入的风险,比如
exec('ls hello.txt; rm -rf *', function(error, stdout, stderr){
if(error) {
console.error('error: ' + error);
// return;
}
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
});
备注事项
Note: Unlike the exec(3) POSIX system call, child_process.exec() does not replace the existing process and uses a shell to execute the command.
child_process.execFile(file[, args][, options][, callback])
跟.exec()
类似,不同点在于,没有创建一个新的shell。至少有两点影响
- 比
child_process.exec()
效率高一些。(实际待测试) - 一些操作,比如I/O重定向,文件glob等不支持。
similar to child_process.exec() except that it spawns the command directly without first spawning a shell.
file
: 可执行文件的名字,或者路径。
例子:
var child_process = require('child_process');
child_process.execFile('node', ['--version'], function(error, stdout, stderr){
if(error){
throw error;
}
console.log(stdout);
});
child_process.execFile('/Users/a/.nvm/versions/node/v6.1.0/bin/node', ['--version'], function(error, stdout, stderr){
if(error){
throw error;
}
console.log(stdout);
});
====== 扩展阅读 =======
从node源码来看,exec()
、execFile()
最大的差别,就在于是否创建了shell。(execFile()内部,options.shell === false),那么,可以手动设置shell。以下代码差不多是等价的。win下的shell设置有所不同,感兴趣的同学可以自己试验下。
备注:execFile()内部最终还是通过spawn()实现的, 如果没有设置 {shell: '/bin/bash'},那么 spawm() 内部对命令的解析会有所不同,execFile('ls -al .') 会直接报错。
var child_process = require('child_process');
var execFile = child_process.execFile;
var exec = child_process.exec;
exec('ls -al .', function(error, stdout, stderr){
if(error){
throw error;
}
console.log(stdout);
});
execFile('ls -al .', {shell: '/bin/bash'}, function(error, stdout, stderr){
if(error){
throw error;
}
console.log(stdout);
});
child_process.fork(modulePath[, args][, options])
modulePath
:子进程运行的模块。
参数说明:(重复的参数说明就不在这里列举)
execPath
: 用来创建子进程的可执行文件,默认是/usr/local/bin/node
。也就是说,你可通过execPath
来指定具体的node可执行文件路径。(比如多个node版本)execArgv
: 传给可执行文件的字符串参数列表。默认是process.execArgv
,跟父进程保持一致。silent
: 默认是false
,即子进程的stdio
从父进程继承。如果是true
,则直接pipe
向子进程的child.stdin
、child.stdout
等。stdio
: 如果声明了stdio
,则会覆盖silent
选项的设置。
例子1:silent
parent.js
var child_process = require('child_process');
// 例子一:会打印出 output from the child
// 默认情况,silent 为 false,子进程的 stdout 等
// 从父进程继承
child_process.fork('./child.js', {
silent: false
});
// 例子二:不会打印出 output from the silent child
// silent 为 true,子进程的 stdout 等
// pipe 向父进程
child_process.fork('./silentChild.js', {
silent: true
});
// 例子三:打印出 output from another silent child
var child = child_process.fork('./anotherSilentChild.js', {
silent: true
});
child.stdout.setEncoding('utf8');
child.stdout.on('data', function(data){
console.log(data);
});
child.js
console.log('output from the child');
silentChild.js
console.log('output from the silent child');
anotherSilentChild.js
console.log('output from another silent child');
例子二:ipc
parent.js
var child_process = require('child_process');
var child = child_process.fork('./child.js');
child.on('message', function(m){
console.log('message from child: ' + JSON.stringify(m));
});
child.send({from: 'parent'});
process.on('message', function(m){
console.log('message from parent: ' + JSON.stringify(m));
});
process.send({from: 'child'});
运行结果
➜ ipc git:(master) ✗ node parent.js
message from child: {"from":"child"}
message from parent: {"from":"parent"}
例子三:execArgv
首先,process.execArgv的定义,参考这里。设置execArgv
的目的一般在于,让子进程跟父进程保持相同的执行环境。
比如,父进程指定了--harmony
,如果子进程没有指定,那么就要跪了。
parent.js
var child_process = require('child_process');
console.log('parent execArgv: ' + process.execArgv);
child_process.fork('./child.js', {
execArgv: process.execArgv
});
child.js
console.log('child execArgv: ' + process.execArgv);
运行结果
➜ execArgv git:(master) ✗ node --harmony parent.js
parent execArgv: --harmony
child execArgv: --harmony
例子3:execPath(TODO 待举例子)
child_process.spawn(command[, args][, options])
command
:要执行的命令
options参数说明:
argv0
:[String] 这货比较诡异,在uninx、windows上表现不一样。有需要再深究。stdio
:[Array] | [String] 子进程的stdio。参考这里detached
:[Boolean] 让子进程独立于父进程之外运行。同样在不同平台上表现有差异,具体参考这里shell
:[Boolean] | [String] 如果是true
,在shell里运行程序。默认是false
。(很有用,比如 可以通过 /bin/sh -c xxx 来实现 .exec() 这样的效果)
例子1:基础例子
var spawn = require('child_process').spawn;
var ls = spawn('ls', ['-al']);
ls.stdout.on('data', function(data){
console.log('data from child: ' + data);
});
ls.stderr.on('data', function(data){
console.log('error from child: ' + data);
});
ls.on('close', function(code){
console.log('child exists with code: ' + code);
});
例子2:声明stdio
var spawn = require('child_process').spawn;
var ls = spawn('ls', ['-al'], {
stdio: 'inherit'
});
ls.on('close', function(code){
console.log('child exists with code: ' + code);
});
例子3:声明使用shell
var spawn = require('child_process').spawn;
// 运行 echo "hello nodejs" | wc
var ls = spawn('bash', ['-c', 'echo "hello nodejs" | wc'], {
stdio: 'inherit',
shell: true
});
ls.on('close', function(code){
console.log('child exists with code: ' + code);
});
例子4:错误处理,包含两种场景,这两种场景有不同的处理方式。
- 场景1:命令本身不存在,创建子进程报错。
- 场景2:命令存在,但运行过程报错。
var spawn = require('child_process').spawn;
var child = spawn('bad_command');
child.on('error', (err) => {
console.log('Failed to start child process 1.');
});
var child2 = spawn('ls', ['nonexistFile']);
child2.stderr.on('data', function(data){
console.log('Error msg from process 2: ' + data);
});
child2.on('error', (err) => {
console.log('Failed to start child process 2.');
});
运行结果如下。
➜ spawn git:(master) ✗ node error/error.js
Failed to start child process 1.
Error msg from process 2: ls: nonexistFile: No such file or directory
例子5:echo "hello nodejs" | grep "nodejs"
// echo "hello nodejs" | grep "nodejs"
var child_process = require('child_process');
var echo = child_process.spawn('echo', ['hello nodejs']);
var grep = child_process.spawn('grep', ['nodejs']);
grep.stdout.setEncoding('utf8');
echo.stdout.on('data', function(data){
grep.stdin.write(data);
});
echo.on('close', function(code){
if(code!==0){
console.log('echo exists with code: ' + code);
}
grep.stdin.end();
});
grep.stdout.on('data', function(data){
console.log('grep: ' + data);
});
grep.on('close', function(code){
if(code!==0){
console.log('grep exists with code: ' + code);
}
});
运行结果:
➜ spawn git:(master) ✗ node pipe/pipe.js
grep: hello nodejs
关于options.stdio
默认值:['pipe', 'pipe', 'pipe'],这意味着:
- child.stdin、child.stdout 不是
undefined
- 可以通过监听
data
事件,来获取数据。
基础例子
var spawn = require('child_process').spawn;
var ls = spawn('ls', ['-al']);
ls.stdout.on('data', function(data){
console.log('data from child: ' + data);
});
ls.on('close', function(code){
console.log('child exists with code: ' + code);
});
通过child.stdin.write()写入
var spawn = require('child_process').spawn;
var grep = spawn('grep', ['nodejs']);
setTimeout(function(){
grep.stdin.write('hello nodejs \n hello javascript');
grep.stdin.end();
}, 2000);
grep.stdout.on('data', function(data){
console.log('data from grep: ' + data);
});
grep.on('close', function(code){
console.log('grep exists with code: ' + code);
});
异步 vs 同步
大部分时候,子进程的创建是异步的。也就是说,它不会阻塞当前的事件循环,这对于性能的提升很有帮助。
当然,有的时候,同步的方式会更方便(阻塞事件循环),比如通过子进程的方式来执行shell脚本时。
node同样提供同步的版本,比如:
- spawnSync()
- execSync()
- execFileSync()
关于options.detached
由于木有在windows上做测试,于是先贴原文
On Windows, setting options.detached to true makes it possible for the child process to continue running after the parent exits. The child will have its own console window. Once enabled for a child process, it cannot be disabled.
在非window是平台上的表现
On non-Windows platforms, if options.detached is set to true, the child process will be made the leader of a new process group and session. Note that child processes may continue running after the parent exits regardless of whether they are detached or not. See setsid(2) for more information.
默认情况:父进程等待子进程结束。
子进程。可以看到,有个定时器一直在跑
var times = 0;
setInterval(function(){
console.log(++times);
}, 1000);
运行下面代码,会发现父进程一直hold着不退出。
var child_process = require('child_process');
child_process.spawn('node', ['child.js'], {
// stdio: 'inherit'
});
通过child.unref()让父进程退出
调用child.unref()
,将子进程从父进程的事件循环中剔除。于是父进程可以愉快的退出。这里有几个要点
- 调用
child.unref()
- 设置
detached
为true
- 设置
stdio
为ignore
(这点容易忘)
var child_process = require('child_process');
var child = child_process.spawn('node', ['child.js'], {
detached: true,
stdio: 'ignore' // 备注:如果不置为 ignore,那么 父进程还是不会退出
// stdio: 'inherit'
});
child.unref();
将stdio
重定向到文件
除了直接将stdio设置为ignore
,还可以将它重定向到本地的文件。
var child_process = require('child_process');
var fs = require('fs');
var out = fs.openSync('./out.log', 'a');
var err = fs.openSync('./err.log', 'a');
var child = child_process.spawn('node', ['child.js'], {
detached: true,
stdio: ['ignore', out, err]
});
child.unref();
exec()与execFile()之间的区别
首先,exec() 内部调用 execFile() 来实现,而 execFile() 内部调用 spawn() 来实现。
exec() -> execFile() -> spawn()
其次,execFile() 内部默认将 options.shell 设置为false,exec() 默认不是false。
Class: ChildProcess
- 通过
child_process.spawn()
等创建,一般不直接用构造函数创建。 - 继承了
EventEmitters
,所以有.on()
等方法。
各种事件
close
当stdio流关闭时触发。这个事件跟exit
不同,因为多个进程可以共享同个stdio流。
参数:code(退出码,如果子进程是自己退出的话),signal(结束子进程的信号)
问题:code一定是有的吗?(从对code的注解来看好像不是)比如用kill
杀死子进程,那么,code是?
exit
参数:code、signal,如果子进程是自己退出的,那么code
就是退出码,否则为null;如果子进程是通过信号结束的,那么,signal
就是结束进程的信号,否则为null。这两者中,一者肯定不为null。
注意事项:exit
事件触发时,子进程的stdio stream可能还打开着。(场景?)此外,nodejs监听了SIGINT和SIGTERM信号,也就是说,nodejs收到这两个信号时,不会立刻退出,而是先做一些清理的工作,然后重新抛出这两个信号。(目测此时js可以做清理工作了,比如关闭数据库等。)
SIGINT:interrupt,程序终止信号,通常在用户按下CTRL+C时发出,用来通知前台进程终止进程。
SIGTERM:terminate,程序结束信号,该信号可以被阻塞和处理,通常用来要求程序自己正常退出。shell命令kill缺省产生这个信号。如果信号终止不了,我们才会尝试SIGKILL(强制终止)。
Also, note that Node.js establishes signal handlers for SIGINT and SIGTERM and Node.js processes will not terminate immediately due to receipt of those signals. Rather, Node.js will perform a sequence of cleanup actions and then will re-raise the handled signal.
error
当发生下列事情时,error就会被触发。当error触发时,exit可能触发,也可能不触发。(内心是崩溃的)
- 无法创建子进程。
- 进程无法kill。(TODO 举例子)
- 向子进程发送消息失败。(TODO 举例子)
message
当采用process.send()
来发送消息时触发。
参数:message
,为json对象,或者primitive value;sendHandle
,net.Socket对象,或者net.Server对象(熟悉cluster的同学应该对这个不陌生)
.connected:当调用.disconnected()
时,设为false。代表是否能够从子进程接收消息,或者对子进程发送消息。
.disconnect():关闭父进程、子进程之间的IPC通道。当这个方法被调用时,disconnect
事件就会触发。如果子进程是node实例(通过child_process.fork()创建),那么在子进程内部也可以主动调用process.disconnect()
来终止IPC通道。参考process.disconnect。
非重要的备忘点
windows平台上的cmd
、bat
The importance of the distinction between child_process.exec() and child_process.execFile() can vary based on platform. On Unix-type operating systems (Unix, Linux, OSX) child_process.execFile() can be more efficient because it does not spawn a shell. On Windows, however, .bat and .cmd files are not executable on their own without a terminal, and therefore cannot be launched using child_process.execFile(). When running on Windows, .bat and .cmd files can be invoked using child_process.spawn() with the shell option set, with child_process.exec(), or by spawning cmd.exe and passing the .bat or .cmd file as an argument (which is what the shell option and child_process.exec() do).
// On Windows Only ...
const spawn = require('child_process').spawn;
const bat = spawn('cmd.exe', ['/c', 'my.bat']);
bat.stdout.on('data', (data) => {
console.log(data);
});
bat.stderr.on('data', (data) => {
console.log(data);
});
bat.on('exit', (code) => {
console.log(`Child exited with code ${code}`);
});
// OR...
const exec = require('child_process').exec;
exec('my.bat', (err, stdout, stderr) => {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});
进程标题
Note: Certain platforms (OS X, Linux) will use the value of argv[0] for the process title while others (Windows, SunOS) will use command.
Note: Node.js currently overwrites argv[0] with process.execPath on startup, so process.argv[0] in a Node.js child process will not match the argv0 parameter passed to spawn from the parent, retrieve it with the process.argv0 property instead.
代码运行次序的问题
p.js
const cp = require('child_process');
const n = cp.fork(`${__dirname}/sub.js`);
console.log('1');
n.on('message', (m) => {
console.log('PARENT got message:', m);
});
console.log('2');
n.send({ hello: 'world' });
console.log('3');
sub.js
console.log('4');
process.on('message', (m) => {
console.log('CHILD got message:', m);
});
process.send({ foo: 'bar' });
console.log('5');
运行node p.js
,打印出来的内容如下
➜ ch node p.js
1
2
3
4
5
PARENT got message: { foo: 'bar' }
CHILD got message: { hello: 'world' }
再来个例子
// p2.js
var fork = require('child_process').fork;
console.log('p: 1');
fork('./c2.js');
console.log('p: 2');
// 从测试结果来看,同样是70ms,有的时候,定时器回调比子进程先执行,有的时候比子进程慢执行。
const t = 70;
setTimeout(function(){
console.log('p: 3 in %s', t);
}, t);
// c2.js
console.log('c: 1');
关于NODE_CHANNEL_FD
child_process.fork()时,如果指定了execPath,那么父、子进程间通过NODE_CHANNEL_FD 进行通信。
Node.js processes launched with a custom execPath will communicate with the parent process using the file descriptor (fd) identified using the environment variable NODE_CHANNEL_FD on the child process. The input and output on this fd is expected to be line delimited JSON objects.
写在后面
内容较多,如有错漏及建议请指出。
相关链接
官方文档:https://nodejs.org/api/child_process.html
Nodejs进阶:如何玩转子进程(child_process)的更多相关文章
- nodejs进阶(6)—连接MySQL数据库
1. 建库连库 连接MySQL数据库需要安装支持 npm install mysql 我们需要提前安装按mysql sever端 建一个数据库mydb1 mysql> CREATE DATABA ...
- nodejs进阶(4)—读取图片到页面
我们先实现从指定路径读取图片然后输出到页面的功能. 先准备一张图片imgs/dog.jpg. file.js里面继续添加readImg方法,在这里注意读写的时候都需要声明'binary'.(file. ...
- nodejs进阶(3)—路由处理
1. url.parse(url)解析 该方法将一个URL字符串转换成对象并返回. url.parse(urlStr, [parseQueryString], [slashesDenoteHost]) ...
- nodejs进阶(5)—接收请求参数
1. get请求参数接收 我们简单举一个需要接收参数的例子 如果有个查找功能,查找关键词需要从url里接收,http://localhost:8000/search?keyword=地球.通过前面的进 ...
- nodejs进阶(1)—输出hello world
下面将带领大家一步步学习nodejs,知道怎么使用nodejs搭建服务器,响应get/post请求,连接数据库等. 搭建服务器页面输出hello world var http = require ...
- nodejs进阶(7)—async异步流程控制
Async介绍 Async是一个流程控制工具包,提供了直接而强大的异步功能.基于Javascript为Node.js设计,同时也可以直接在浏览器中使用. Async提供了大约20个函数,包括常用的 m ...
- NodeJS学习笔记 进阶 (13)Nodejs进阶:5分钟入门非对称加密用法
个人总结:读完这篇文章需要5分钟,这篇文章讲解了Node.js非对称加密算法的实现. 摘录自网络 地址: https://github.com/chyingp/nodejs-learning-guid ...
- NodeJS学习笔记 进阶 (12)Nodejs进阶:crypto模块之理论篇
个人总结:读完这篇文章需要30分钟,这篇文章讲解了使用Node处理加密算法的基础. 摘选自网络 Nodejs进阶:crypto模块之理论篇 一. 文章概述 互联网时代,网络上的数据量每天都在以惊人的速 ...
- nodejs进阶(1)——npm使用技巧和最佳实践
nodejs进阶教程,小白绕道!!! npm使用技巧和最佳实践 前提:请确保安装了node.js npm的最佳实践 npm install是最常见的npm cli命令,但是它还有更多能力!接下来你会了 ...
随机推荐
- PowerBI 引入时间智能
简介 Power BI Desktop -是一款由微软发布的自助式商业智能工具,功能强大.易于使用.其中还可以通过微软云连多个数据源并且使用数据源来创建可视化表盘. 但是几乎所有的BI都需要展示如何随 ...
- mysql服务性能优化—my.cnf配置说明详解
MYSQL服务器my.cnf配置文档详解硬件:内存16G [client]port = 3306socket = /data/3306/mysql.sock [mysql]no-auto-rehash ...
- Linux IPC POSIX 信号量
模型 #include<semaphore.h> #include<sys/stat.h> #include<fcntl.h> sem_open() //初始化并打 ...
- 初识JNI
需要用到NDK Android 平台从诞生起,就已经支持 C.C++开发.众所周知,Android 的 SDK 基于 Java 实现,这意味着基于 Android SDK 进行开发的第三方应用都必须使 ...
- PCI在linux系统中注册与注销示例
1. pci_driver结构struct pci_driver { struct list_head node; const char *name; const struct pc ...
- MAC中设置java环境变量和MAVEN
借助于/usr/libexec/java_home进行配置 在~/.bash_profile 或者/.bash中添加(这里添加1.7版本) #JAVA_HOME export JAVA_HOME=$( ...
- WPF自定义空心文字
首先创建一个自定义控件,继承自FrameworkElement,“Generic.xaml”中可以不添加样式. 要自定义空心文字,要用到绘制格式化文本FormattedText类.FormattedT ...
- dedecms调用标签总结(一)
dedecms 基本包含了一个常规网站需要的一切功能,拥有完善的中文学习资料,很容易上手,学习成本较低.学会dedecms 的模板修改.栏目新增.内容模型新增和常用的标签调用方法后,即便我们不懂 ph ...
- 【温故而知新-Javascript】使用 Ajax
Ajax 是现代Web 应用程序开发的一项关键工具.它让你能向服务器异步发送和接收数据,然后用 Javascript 解析. Ajax 是 Asynchronous JavaScript and XM ...
- java 22 - 7 多线程之控制线程的方法
线程休眠(让线程休息一会再运行) public static void sleep(long millis) 在自定义线程类中添加该方法. 更改后,运行测试类,结果就是每执行完一轮,就休息1秒(这里设 ...