我正在努力不断读取重定向到文件的stdout的内容。请帮我解决问题。
我的问题是我在第一个线程中有两个线程,我必须执行ac文件,它不断地将输出写入stdout(即在无限循环中编写hello world),在第二个线程中我必须逐行检索从stdout定期输出并存储在缓冲区中。 对于第二个线程实现,我创建了管道并将重定向的stdout重定向到此管道的写入端,并尝试逐行连续读取此管道的内容,但我没有得到预期结果。 第二个帖子的代码如下:
int redirectPipe[2];
//creation of pipe
pipe(redirectPipe);
//redirection of pipe
dup2(redirectPipe[1],STDOUT_FILENO);
//reading continuously line by line from pipe
// some code here
有人可以帮我编码如何从这个管道逐行读取?
以下是代码:请建议我是我的方法吧?以及如何实现entryOpThread()方法,以便它定期读取stdout的内容是否应该使用read()系统调用或getLine()或任何其他方法从管道逐行读取(stdout被重定向到此管道)。 在这个例子中,exec线程正在执行test.c,它在stdout上连续打印hello world,所以根据我的要求,我必须逐行读取此输出(“Hello world”)在管道的Opthread中连续读取并存储在缓冲区中< / p>
//*************************CODE***********************************************************
#include <iostream>
#include<pthread>
#include<unistd.h>
#include<sys/wait.h>
const int MAX_LENGTH=100;
using namespace std;
//! file descriptor to duplicate the system standard input
//!
int inputPIPE[2];
//! file descriptor to duplicate the system standard output
int OutputPipe[2];
//!Thread to retrieve output
//!
pthread_t OpThread;
//!Thread to execute script
//!
pthread_t ExecThread;
//! entry point of the exec thread
void *entryExecThread(void * obj)
{
//create a child process to launch the script
int lPid;
lPid=fork();
//connect read end of the pipe to the standard input
if(dup2(inputPIPE[0],STDIN_FILENO)==-1)
{
//throw exception
}
//connect write end of the pipe to the standard output
if(dup2(OutputPipe[1],STDOUT_FILENO)==-1)
{
//throw exception
}
if(lPid==0)
{
execvp("./test",NULL);
}
else
{
int mProcessId=lPid;
waitpid(mProcessId,NULL,0);
}
return NULL;
}
//! entry point of the output thread
void *entryOpThread(void * obj)
{
//read contents of stdout periodically
/* char *lMssg=new char[MAX_LENGTH];
read(OutputPipe[0],lMssg,MAX_LENGTH);
FILE *fd=fdopen(OutputPipe[0],"r");
int lBufferLength=MAX_LENGTH;
while(true)
{
getline(&lMssg,(size_t * )&lBufferLength,fd);
// push message to the output buffer
if (lMssg !=NULL)
{
pthread_mutex_lock( &mOutputBufferMutex);
mOutputBuffer.push(lMssg);
pthread_mutex_unlock( &mOutputBufferMutex);
}
}
*/
}
int main() {
//call to pipe system call
if(pipe(inputPIPE)==-1)
{
printf("ERROR IN OPENING FILE \n");
}
if(pipe(OutputPipe)==-1)
{
printf("ERROR IN OPENING FILE\n ");
}
//CREATE OUTPUT THREAD TO RETRIEVE OUTPUT
if (pthread_create(&OpThread,0,entryOpThread,NULL)!=0)
{
//throw exception
printf("Creation of Output thread failed for Script with ID\n");
}
//Create execution thread to launch script
pthread_t execThread;
if (pthread_create(&ExecThread,0,entryExecThread,NULL)!=0)
{
//Stop output thread
pthread_cancel(OpThread);
//throw exception
printf("Creation of Execution thread failed for Script with ID\n");
}
}
//**********************************************************************************888
test.c
#include <stdio.h>
#include "string.h"
//using namespace std;
int main() {
int i=0;
while(i<500)
{
printf("!!!Hello World!!! \n" ); // prints !!!Hello World!!!
//extracting header and data from message
sleep(5);
i++;
}
return 0;
}
//***********************************************************************************
答案 0 :(得分:0)
这可能是缓冲问题(http://www.pixelbeat.org/programming/stdio_buffering/)吗?
当stdout连接到终端时,其输出将是行缓冲的。如果不是这种情况,则输出是页缓冲的。
要验证,您可以尝试从您的编写器线程中删除sleep(),并检查您的使用者线程上的输出(每5秒打印一些字节将需要一段时间来填充页面)。在那里,您可以考虑使用fflush()
或setvbuf()
。