我正在开发一个基于 libuv 的小型程序。这个程序应该从标准输入中读取用户给定的文本,并根据输入提供结果。以下是该文件的源代码:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <uv.h>
static void
alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf)
{
static char buffer[1 << 16];
*buf = uv_buf_init(buffer, 1 << 16);
}
static void
read_stdin(uv_stream_t *stream, ssize_t nread, const uv_buf_t* buf)
{
printf("Read STDIN\n");
if (nread < 0) {
// stdin closed
uv_read_stop(stream);
return;
}
printf("Input length: %zu\n", nread);
printf("Buffer length: %zu (%s)\n", buf->len, buf->base);
}
int
main(int argc, char *argv[])
{
/* Initialize loop */
uv_loop_t loop;
uv_loop_init(&loop);
/* Input */
uv_tty_t input;
uv_tty_init(&loop, &input, STDIN_FILENO, 1);
uv_read_start((uv_stream_t *)&input, alloc_buffer, read_stdin);
/* Run loop */
uv_run(&loop, UV_RUN_DEFAULT);
return 0;
}
上面的程序在没有标准输入重定向的情况下编译和调用后运行良好。例如:
> ./test
hello world
Read STDIN
Input length: 12
Buffer length: 65536 (hello world
)
Read STDIN
>>> stdin closed
并且管道echo
或其他一些过程的结果也会产生正确的结果:
> echo "hello world" | ./test
Read STDIN
Input length: 12
Buffer length: 65536 (hello world
)
Read STDIN
>>> stdin closed
当我尝试从某个常规文件或重定向标准输入时出现问题 /dev/null
:
> ./test < text.txt
Aborted (core dumped)
以下是崩溃的 gdb 回溯:
#0 0x00007ffff6df2d67 in raise () from /usr/lib/libc.so.6
#1 0x00007ffff6df4118 in abort () from /usr/lib/libc.so.6
#2 0x00007ffff79c6c90 in uv.io_poll () from /usr/lib/libuv.so.11
#3 0x00007ffff79ba64f in uv_run () from /usr/lib/libuv.so.11
#4 0x0000000000400b4b in main (argc=1, argv=0x7fffffffe338) at main.c:40
有没有人知道为什么会这样?我是否错误地使用了 libuv API?