这真是令人气愤。我在我的代码中找不到任何非法行为,但由于某种原因,调用会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 字符,我不相信我在这个问题中有任何类型的解析错误......我真的不知道发生了什么。
会不会是 CoffeeScript 以某种方式破坏了代码?这似乎不太可能,但我不知道。