gpt4 book ai didi

c# - 为什么当 StartInfo.RedirectStandardInput 设置为 true 时 StandardOutput.Read() 会阻塞?

转载 作者:太空狗 更新时间:2023-10-29 22:54:40 24 4
gpt4 key购买 nike

我很难解读关于 Process.StandardOutpout 的 MSDN 文档至于 Read(Char[], Int32, Int32) 方法是否阻塞。我的理解是它不应该阻塞,但当我将 RedirectStandardInput 设置为 true 时它似乎会阻塞。

有没有人有这方面的经验;或对我遇到的问题的一些解释?

这里的上下文是我不想等待整行(即带有行终止符),或者在读取标准输出之前等待进程退出。我也不想使用回调。 我想在进程写入时同步读取 StdOut。

这是我的代码的简化版本:

string command = @"C:\flex_sdks\flex_sdk_4.5.1.21328\bin\fcsh.exe";
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = false; # <-- if I set this to true, then
# the program hangs on
# p.StandardOutput.Read later on
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = command;
p.Start();

StringBuilder sb_stdout = new StringBuilder(1024);
char[] buffer = new char[64];
int nb_bytes_read;
while (true) {
do {
nb_bytes_read = p.StandardOutput.Read(buffer, 0, buffer.Length);
sb_stdout.Append(new string(buffer, 0, nb_bytes_read));
} while (nb_bytes_read > 0);
if (sb_stdout.ToString().EndsWith("\n(fcsh) "))
break;
Thread.Sleep(20);
}

更新

基于我的(可能是错误的)假设 Process.StandardOutput 在使用时被破坏:

  • 重定向标准输入;并且,
  • 从 stdout 或 stderr 读取终止行以外的内容时,

我决定尝试直接使用 Windows 的 API。我用这样的代码添加了一个答案;它工作正常(至少现在是这样)。

另一个更新

我创建了一个 blog entry使用我现在使用的代码。

最佳答案

实际上,就在上周,我一直在与此抗争……出于某种原因,除了 Read() 调用(ReadToEnd() 不是我需要的)之外,其他任何东西似乎都被阻止并且永远不会返回。这是我为最终让它“工作”所做的工作:

片段 1:

    private bool ThreadExited = true;
private bool ExitThread = false;
private void ReadThread()
{
while (!ExitThread)
{
string Output = "";

int CharacterInt = myProcess.StandardOutput.Read();

while (CharacterInt > 0)
{
char Character = (char)CharacterInt;
Output += Character;

var MyDelegate = new delegateUpdateText(UpdateText);
Invoke(MyDelegate, Output);

Output = "";
CharacterInt = myProcess.StandardOutput.Read();
}

System.Threading.Thread.Yield();
}

ThreadExited = true;
}

片段 2:

    private void InitializeProcess()
{
ThreadExited = true;
ExitThread = true;

while (!ThreadExited)
System.Threading.Thread.Sleep(1000);

ThreadExited = false;
ExitThread = false;

myProcess = new Process();

ProcessStartInfo PSI = myProcess.StartInfo;

PSI.FileName = @"cmd.exe";
PSI.UseShellExecute = false;
PSI.RedirectStandardError = false;
PSI.RedirectStandardInput = true;
PSI.RedirectStandardOutput = true;
PSI.CreateNoWindow = false;
PSI.ErrorDialog = true;


myProcess.StartInfo = PSI;

myProcess.Exited += new EventHandler(myProcess_Exited);

myProcess.EnableRaisingEvents = false;


myProcess.Start();

ReadThreadThread = new System.Threading.Thread(ReadThread);
ReadThreadThread.Start();
}
private System.Threading.Thread ReadThreadThread;

这最终对我有用。在我的例子中,我正在将文本写入文本框,但这应该很容易修改为其他内容。但是我所做的其他任何事情都由于障碍而引起了问题;出于某种原因,即使我使用反射来获取可用的字节数,调用 ReadBlock() 函数也会阻塞。从来没有让我满意。

关于c# - 为什么当 StartInfo.RedirectStandardInput 设置为 true 时 StandardOutput.Read() 会阻塞?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6655613/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com