管道输入/输出到过程

时间:2012-08-16 09:42:00

标签: c windows pipe stdout stdin

我的管道工作有些困难。我有以下代码:

/* Set security attributes */
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
sa.bInheritHandle = TRUE; 
sa.lpSecurityDescriptor = NULL; 

if (CreatePipe(&Rread, &Rwrite, &sa, 0) == 0 || SetHandleInformation(Rread, HANDLE_FLAG_INHERIT, 0) == 0 || CreatePipe(&Wread, &Wwrite, &sa, 0) == 0 || SetHandleInformation(Wwrite, HANDLE_FLAG_INHERIT, 0) == 0)
{
    /* Error */
}


/* Set process information */
si.dwFlags = STARTF_USESTDHANDLES;
si.hStdOutput = Rwrite;
si.hStdError = Rwrite;


if (CreateProcess(NULL, argsCasted->cmd, NULL, NULL, TRUE, CREATE_NO_WINDOW, NULL, NULL, &si, &pi) == 0)
{
    /* Error */
}


for (;;)
{
    PeekNamedPipe(Rread, NULL, 0, &a, NULL, NULL);

    if (a > 0)
    {
        /* Write output somewhere... */
    }

    if (a == 0 && GetExitCodeProcess(pi.hProcess, &c) != 0 && c != STILL_ACTIVE) break;

    Sleep(50);
}


    /* CloseHandles... */

    /* Free stuff... */

现在,当我添加si.hStdInput = Wread;(以便我可以向流程发送输入)时,PeekNamedPipe()会阻止。

我对代码进行了大量简化,因为它是大型多线程应用程序的一部分,这个应用程序太大而无法在此处发布。如果有人需要我提供更多详细信息来解决此问题,请在此处发布,我将添加所请求的详细信息。

提前致谢 JORI。

1 个答案:

答案 0 :(得分:1)

如果管道中没有要读取的数据,

PeekNamedPipe将阻止。您必须使用异步/非阻塞I / O.

参考:asynchronous IO