Stdin read fails on some input

exe*_*ook 2 stdin node.js

#!/usr/bin/env node

function stdinReadSync() {
   var b = new Buffer(1024);
   var data = '';

   while (true) {
      var n = require('fs').readSync(process.stdin.fd, b, 0, b.length);
      if (!n) break;
      data += b.toString(null, 0, n);
   }
   return data;
}

var s = stdinReadSync();
console.log(s.length);
Run Code Online (Sandbox Code Playgroud)

The above code (taken from Stackoverflow) works just fine if you feed it with echo, cat, ls, but will fail with curl output.

$ echo abc | ./test.js
4

$ ls | ./test.js
1056

$ cat 1.txt | ./test.js
78

$ curl -si wikipedia.org | ./test.js
fs.js:725
  var r = binding.read(fd, buffer, offset, length, position);
                  ^

Error: EAGAIN: resource temporarily unavailable, read
    at Error (native)
    at Object.fs.readSync (fs.js:725:19)
    at stdinReadSync (/home/ya/2up/api/stdinrd.js:8:29)
    at Object.<anonymous> (/home/ya/2up/api/stdinrd.js:15:9)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Function.Module.runMain (module.js:575:10)
(23) Failed writing body
Run Code Online (Sandbox Code Playgroud)

Why? How to fix?

rob*_*lep 5

这有点黑客,但这似乎有效:

var n = require('fs').readSync(0, b, 0, b.length);
Run Code Online (Sandbox Code Playgroud)

我认为(纯猜想)这process.stdin.fd是一个 getter,当被引用时,会将 stdin 置于非阻塞模式(这会导致错误)。当您直接使用文件描述符时,您可以解决这个问题。