7

这真是令人气愤。我在我的代码中找不到任何非法行为,但由于某种原因,调用会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 以某种方式破坏了代码?这似乎不太可能,但我不知道。

4

1 回答 1

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文档可以确认这一点。运行诸如lsgrep使用之类的示例spawn

于 2013-10-04T05:31:45.853 回答