如何在c中将stderr读入char[]
我有代码来检查 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
stderr
已在"w"
模式下重新打开,该模式是只写的。从您的av_gettime
函数来看,您似乎正在使用libavcodec
/libavutil
,因此不要编写像这样的可怕的 hack 来获取错误消息,您应该在av_log
系统上读取并注册您自己的日志记录函数,以覆盖将诊断消息写入stderr
的默认行为。stderr
was reopened in"w"
mode, which is write-only. Judging from yourav_gettime
function, it looks like you're usinglibavcodec
/libavutil
, so instead of writing hideous hacks like this to get the error messages, you should read up on theav_log
system and register your own logging function to override the default behavior of writing diagnostic messages tostderr
.