使用 2 个重定向管道 return 退出代码 1 的 CreateProcess

CreateProcess with 2 redirected pipes return exitcode 1

我是 WIN32 的新手 API,需要一些帮助来弄清楚我的代码中缺少什么。 我的目标是 运行 批处理脚本(或 PowerShell 脚本),等待完成,然后在完成时获取 stdout / stderr。

关注 this and this msdn 上关于创建进程并将 stdout 和 stderr 重定向到句柄的文章。 我 将样本混合 并得出以下代码:

int execute_commnad(std::string& command,std::string& output,int& timeout_seconds) {
    STARTUPINFO si;
    PROCESS_INFORMATION pi;
    DWORD return_code = NULL;

    ZeroMemory(&pi, sizeof(pi));

    ZeroMemory(&si,sizeof(si));
    si.cb = sizeof(si);
    si.hStdOutput = child_stdout_handle;
    si.hStdError = child_stdout_handle;
    si.dwFlags |= STARTF_USESTDHANDLES;

    SECURITY_ATTRIBUTES saAttr;
    saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
    saAttr.bInheritHandle = TRUE;
    saAttr.lpSecurityDescriptor = NULL;

    // Connect Child stdout to parent_stdout_handle
    if (!CreatePipe(&parent_stdout_handle,&child_stdout_handle,&saAttr,0))
    {
        output = "Could not create stdout pipe. Error: " + std::to_string(GetLastError());
        close_handles();
        return -1;
    }

    if (! SetHandleInformation(parent_stdout_handle,HANDLE_FLAG_INHERIT,0))
    {
        output = "Could not set handle information for stdout pipe. Error: " + std::to_string(GetLastError());
        close_handles();
        return -1;
    }

    // Create Process
    if (!CreateProcess(NULL,LPSTR(command.c_str()),NULL,NULL,TRUE,0,NULL,NULL,&si,&pi)) {
        output = "Failed to create process. Error: " + std::to_string(GetLastError());
        close_handles();
        return -1;
    }
    CloseHandle(child_stdout_handle);


    // Wait for process to finish or timeout
    if (timeout_seconds == NULL) {
        WaitForSingleObject(pi.hProcess,INFINITE);
    }
    else {
        WaitForSingleObject(pi.hProcess,DWORD(timeout_seconds * 1000));
    }
    
    if (!GetExitCodeProcess(pi.hProcess,&return_code)) {
        output = "Failed to fetch exit code";
        close_handles();
        return -1;
    }
    
    if (STILL_ACTIVE == return_code) {
        TerminateProcess(sub_process,return_code);
        output = "Command did not finish within defined timeout threshold";
    }
    else if (STATUS_PENDING == return_code) {
        output = "process is pending";
    }
    else {
        DWORD dwRead;
        CHAR chBuf[4096];
        BOOL bSuccess = FALSE;

        for (;;) {
            bSuccess = ReadFile(parent_stdout_handle,chBuf,4096,&dwRead,NULL);
            if (! bSuccess || dwRead == 0) break;
            output = *reinterpret_cast<std::string*>(parent_stdout_handle);
        }
    }
    
    close_handles();
    return 0;    
};


void close_handles(void) {
    CloseHandle(parent_stdout_handle);
    CloseHandle(child_stdout_handle);
    CloseHandle(sub_process);
};

在执行上面的函数之前,我使用 std::ofstream 创建了包含“echo hello”的 .bat 文件,并将文件的 FQN 保存到名为 file_name 和 运行 的变量中,如下所示代码:

int rc = 0;
std::string cmd = "cmd.exe /c " + file_name + " " + script_params;
rc = execute_commnad(cmd,this->output,timeout_in_seconds);

调试时这些是我在 GetExitCodeProcess:

之后得到的值

我尝试用 FQN 替换 cmd.exe,但结果相同,尝试 运行ning 像 cmd.exe /c "echo hello" 这样简单的东西,但仍然返回 return_code 1.

这两天我一直在努力寻找它的原因,但无济于事。

除了无效代码(性能方面)之外,有人对可能出现的问题有什么建议吗?

提前致谢!

确保在将句柄传递给 CreateProcess 之前初始化 child_stdout_handle

此外,您需要打印在ReadFile中读取的chBuf的值,而不是parent_stdout_handle。将文件句柄转换为string是没有意义的,你可以试试:

    for (;;) {
        bSuccess = ReadFile(parent_stdout_handle, chBuf, 4096, &dwRead, NULL);
        if (!bSuccess || dwRead == 0) break;
        chBuf[dwRead] = '[=10=]';
        output += chBuf;
    }
    cout << output << endl;