这真是令人气愤。我无法在我的代码中找到任何我正在做任何非法行为的地方,但出于某种原因,调用fork
会炸毁我的程序。这是代码。相关部分位于svgToPNG,我呼叫fork
。
{fork} = require 'child_process'
{Coral} = require 'coral'
svgToPNG = (svg, reply, log) ->
log "converting SVG to a PNG"
# set up a child process to call convert svg: png:-
convert = fork '/usr/bin/env', ['convert', 'svg:', 'png:-']
log "Spawned child process running convert, pid " + convert.pid
# set up behavior when an error occurs
convert.stderr.on "data", ->
log "Error occurred while executing convert"
reply "error"
# set up behavior for when we successfully convert
convert.stdout.on "data", ->
log "Successful conversion! :)"
log "here's the data: " + data
reply data
# pipe the SVG into the stdin of the process (starting it)
convert.stdin.end svg
如果我将fork
行取出并用其他内容替换它,那么一切都是笨拙的,但是如果我把它留下来,我会得到:
> coffee src/coral_client.coffee
finished doing conversion to svg!
converting SVG to a PNG
Spawned child process running convert, pid 60823
/usr/bin/grep:1
(function (exports, require, module, __filename, __dirname) { ����
^
SyntaxError: Unexpected token ILLEGAL
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:901:3
没有意义。我没有任何奇怪的非法unicode字符,如this question,我不相信我有任何类型的解析错误,如this one ...我真的不知道发生了什么。
可能是因为CoffeeScript以某种方式打破了代码吗?这似乎不太可能,但我不知道。
答案 0 :(得分:2)
错误在于您使用fork
。 fork
用于生成节点进程,即foo.js
个文件。请改用spawn
。
我通过运行代码的精简版本,读取图像文件然后将其传递给svgToPNG
来解决这个问题。错误消息开始:
/usr/bin/env:1
(function (exports, require, module, __filename, __dirname) { ELF
此复制/粘贴中呈现的字符ELF
是我的二进制/usr/bin/env
文件的头字符。因此node.js
fork
正在尝试编译/usr/bin/env
文件。查看child_process
文档证实了这一点。运行ls
和grep
等内容的示例使用spawn
。