gpt4 book ai didi

c - 在 C 中监视 stdin、stdout 和 stderr 中的字节

转载 作者:太空狗 更新时间:2023-10-29 11:05:55 25 4
gpt4 key购买 nike

我需要计算有多少字节通过 stdin 发送到子进程,以及子进程写入 stdout 和 stderr 的字节数。子进程调用 execvp,因此我无法从进程本身内部监视这些统计信息。我目前的策略涉及创建 3 个额外的子进程,每个子进程通过管道监视每个 std 流(或者在 stdin 的情况下,只是从 stdin 读取)。

这种策略充其量看起来真的很脆弱,而且我正在做一些奇怪的事情,这使得监视 stdout/err 的进程无法从它们各自的管道末端读取(并使它们无限期地挂起)。代码如下。

这将创建三个辅助子进程,并且应该允许它们计算统计信息:

void controles(struct fds *des)
{
int ex[2];
int err[2];

int n_in = 0;
int c_in;

int n_ex = 0;
int c_ex;

int n_err = 0;
int c_err;

pipe(ex);
pipe(err);

/*has two fields, for the write end of the stdout pipe and the stderr pipe. */
des->err = err[1];
des->ex = ex[1];
switch (fork()) {
case 0: /*stdin */
while (read(0, &c_in, 1) == 1)
n_in++;
if (n_in > 0)
printf("%d bytes to stdin\n", n_in);
exit(n_in);
default:
break;
}

switch (fork()) {
case 0: /*stdout */
close(ex[1]);
/*pretty sure this is wrong */
while (read(ex[0], &c_ex, 1) == 1) {
n_ex++;
write(1, &c_ex, 1);
}
if (n_ex > 0)
printf("%d bytes to stdout\n", n_ex);
close(ex[0]);
exit(n_ex);
default:
close(ex[0]);
}
switch (fork()) {
case 0: /*error */
close(err[1]);
/*also probably have a problem here */
while (read(err[0], &c_err, 1) == 1) {
n_err++;
write(2, &c_err, 1);
}
if (n_err > 0)
printf("%d bytes to stderr\n", n_err);
close(err[0]);
exit(n_err);
default:
close(err[0]);
}
}

这是一个代码片段(在子进程中),它从 fds 结构设置两个 fd,这样子进程应该写入管道而不是 stdin/stderr。

    dup2(des.ex, 1);
dup2(des.err, 2);
close(des.ex); close(des.err); /*Is this right?*/
execvp(opts->exec, opts->options); /*sure this is working fine*/

我迷路了,任何帮助将不胜感激。

最佳答案

我认为您的代码可以通过稍微分解一下来改进;会计和复制例程基本上都是相同的任务,如果您选择继续使用多个进程,可以简单地写成:

void handle_fd_pair(char *name, int in, int out) {
char buf[1024];
int count = 0, n;
char fn[PATH_MAX];
snprintf(fn, PATH_MAX - 1, "/tmp/%s_count", name);
fn[PATH_MAX-1] = '\0';
FILE *output = fopen(fn, "w");
/* handle error */

while((n = read(in, buf, 1024)) > 0) {
count+=n;
writen(out, buf, n); /* see below */
}

fprintf(output, "%s copied %d bytes\n", name, count);
fclose(output);
}

我们可以使用 Advanced Programming in the Unix Environment 中的 writen() 函数处理部分写入,而不是一次写入一个字符,这对于中等数据量来说效率很低。源代码:

ssize_t             /* Write "n" bytes to a descriptor  */
writen(int fd, const void *ptr, size_t n)
{
size_t nleft;
ssize_t nwritten;

nleft = n;
while (nleft > 0) {
if ((nwritten = write(fd, ptr, nleft)) < 0) {
if (nleft == n)
return(-1); /* error, return -1 */
else
break; /* error, return amount written so far */
} else if (nwritten == 0) {
break;
}
nleft -= nwritten;
ptr += nwritten;
}
return(n - nleft); /* return >= 0 */
}

有了助手,我认为剩下的事情会更容易。叉一个每个流的新 child ,并给 in[0] 读端,out[1]err[1] 将管道的末端写入子项。

每个 child 的所有那些 close() 调用都非常丑陋,但试图在所有 fds 的数组周围写一个小包装器,并免除那些作为参数传递的,看起来也很麻烦。

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>

#ifndef PATH_MAX
#define PATH_MAX 128
#endif

void handle_fd_pair(char *name, int in, int out) {
char buf[1024];
int count = 0, n;
char fn[PATH_MAX];
snprintf(fn, PATH_MAX - 1, "/tmp/%s_count", name);
fn[PATH_MAX-1] = '\0';
FILE *output = fopen(fn, "w");
/* handle error */

while((n = read(in, buf, 1024)) > 0) {
count+=n;
writen(out, buf, n); /* see below */
}

fprintf(output, "%s copied %d bytes\n", name, count);
fclose(output);
}

int main(int argc, char* argv[]) {
int in[2], out[2], err[2];
pid_t c1, c2, c3;

pipe(in);
pipe(out);
pipe(err);

if ((c1 = fork()) < 0) {
perror("can't fork first child");
exit(1);
} else if (c1 == 0) {
close(in[0]);
close(out[0]);
close(out[1]);
close(err[0]);
close(err[1]);
handle_fd_pair("stdin", 0, in[1]);
exit(0);
}

if ((c2 = fork()) < 0) {
perror("can't fork second child");
exit(1);
} else if (c2 == 0) {
close(in[0]);
close(in[1]);
close(out[1]);
close(err[0]);
close(err[1]);
handle_fd_pair("stdout", out[0], 1);
exit(0);
}

if ((c3 = fork()) < 0) {
perror("can't fork third child");
exit(1);
} else if (c3 == 0) {
close(in[0]);
close(in[1]);
close(out[0]);
close(out[1]);
close(err[1]);
handle_fd_pair("stderr", err[0], 2);
exit(0);
}

/* parent falls through to here, no children */

close(in[1]);
close(out[0]);
close(err[0]);
close(0);
close(1);
close(2);
dup2(in[0], 0);
dup2(out[1], 1);
dup2(err[1], 2);
system(argv[1]);
exit(1); /* can't reach */
}

无论如何它似乎都适用于玩具应用:)

$ ./dup cat
hello
hello
$ ls -l *count
-rw-r--r-- 1 sarnold sarnold 22 2011-05-26 17:41 stderr_count
-rw-r--r-- 1 sarnold sarnold 21 2011-05-26 17:41 stdin_count
-rw-r--r-- 1 sarnold sarnold 22 2011-05-26 17:41 stdout_count
$ cat *count
stderr copied 0 bytes
stdin copied 6 bytes
stdout copied 6 bytes

我认为值得指出的是,您可以实现这个只有一个进程的程序,并使用select(2)来确定哪个文件描述符需要读写。

关于c - 在 C 中监视 stdin、stdout 和 stderr 中的字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6145268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com