检查NamedPipeClientStream中的EOF
本文关键字:EOF 中的 NamedPipeClientStream 检查 | 更新日期: 2023-09-27 18:03:56
使用C函数可以通过_eof(pipeOut)
检查管道的输出端是否为空,并跳过读取操作。
int endOfFile = _eof(myPipeIn);
if(endOfFile != 0)
int aReadCount = _read(myPipeIn, aBufferPtr, 256);
是否有可能与。net的NamedPipeClientStream做类似的事情?
不幸的是,Bueller的提示对我不起作用,因为ReadLine
可以阻塞。
但扎克的答案在替代流阅读器。Peek和Thread。我想到了以下内容:
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool PeekNamedPipe(SafeHandle handle,
byte[] buffer, uint nBufferSize, ref uint bytesRead,
ref uint bytesAvail, ref uint BytesLeftThisMessage);
static bool SomethingToRead(SafeHandle streamHandle)
{
byte[] aPeekBuffer = new byte[1];
uint aPeekedBytes = 0;
uint aAvailBytes = 0;
uint aLeftBytes = 0;
bool aPeekedSuccess = PeekNamedPipe(
streamHandle,
aPeekBuffer, 1,
ref aPeekedBytes, ref aAvailBytes, ref aLeftBytes);
if (aPeekedSuccess && aPeekBuffer[0] != 0)
return true;
else
return false;
}
在我的情况下,额外的p/Invoke调用是没有问题的。
根据文档http://msdn.microsoft.com/en-us/library/system.io.pipes.namedpipeclientstream.aspx, . net管道中没有"peek"类型的功能。
确定的方法是测试NULL读操作的结果。
using (StreamReader sr = new StreamReader(pipeClient))
{
// Display the read text to the console
string temp;
while ((temp = sr.ReadLine()) != null)
{
Console.WriteLine("Received from server: {0}", temp);
}
}