如何在c中将stderr读入char[]

发布于 2024-10-05 20:33:05 字数 658 浏览 5 评论 0原文

我有代码来检查 STDERR 与“检测到 DRM 受保护的流”:

const static char* DRM_TOKEN = "DRM protected stream detected";

const char* source = argv[1];
char tempfile[80];
memset(tempfile, 0, 80);
snprintf(tempfile, 80, "stderr_%lld.log", av_gettime());
freopen(tempfile, "w", stderr);

fflush(stderr);
FILE *fp = fopen(tempfile, "r");
if(fp)
{
    char STDERR[256];
    while(!feof(fp))
    {
    memset(STDERR, 0, sizeof(char) * 256);
    fgets(STDERR, 256, fp);
    if(strstr(STDERR, DRM_TOKEN) != NULL)
    {
        drm = 1;
        break ;
    }
    }
    fclose(fp);
}

它有效,但我想知道将 STDERR 读入 char[] 的任何直接方法。 附言。我的代码将在 Linux 或 Macos 中运行。

I have the code to check STDERR with 'DRM protected stream detected':

const static char* DRM_TOKEN = "DRM protected stream detected";

const char* source = argv[1];
char tempfile[80];
memset(tempfile, 0, 80);
snprintf(tempfile, 80, "stderr_%lld.log", av_gettime());
freopen(tempfile, "w", stderr);

fflush(stderr);
FILE *fp = fopen(tempfile, "r");
if(fp)
{
    char STDERR[256];
    while(!feof(fp))
    {
    memset(STDERR, 0, sizeof(char) * 256);
    fgets(STDERR, 256, fp);
    if(strstr(STDERR, DRM_TOKEN) != NULL)
    {
        drm = 1;
        break ;
    }
    }
    fclose(fp);
}

It works, but I want to know any directly way to read STDERR into char[].
PS. my code will run in linux or macos.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

许你一世情深 2024-10-12 20:33:06

stderr 已在 "w" 模式下重新打开,该模式是只写的。从您的 av_gettime 函数来看,您似乎正在使用 libavcodec/libavutil,因此不要编写像这样的可怕的 hack 来获取错误消息,您应该在 av_log 系统上读取并注册您自己的日志记录函数,以覆盖将诊断消息写入 stderr 的默认行为。

stderr was reopened in "w" mode, which is write-only. Judging from your av_gettime function, it looks like you're using libavcodec/libavutil, so instead of writing hideous hacks like this to get the error messages, you should read up on the av_log system and register your own logging function to override the default behavior of writing diagnostic messages to stderr.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文