c# - 命名管道 - 异步窥视

标签 c# .net asynchronous named-pipes overlapped-io

我需要找到一种方法,以便在以异步模式打开的 System.IO.Pipe.NamedPipeServerStream 有更多数据可供读取时收到通知 - WaitHandle 是理想的选择。我不能简单地使用 BeginRead() 来获得这样的句柄,因为我可能会被另一个想要写入管道的线程发出信号 - 所以我必须释放管道上的锁并等待写入完成, NamedPipeServerStream 没有 CancelAsync 方法。我还尝试调用 BeginRead(),然后在线程收到信号时调用管道上的 win32 函数 CancelIO,但我不认为这是一个理想的解决方案,因为如果在数据到达和处理时调用 CancelIO,它将被丢弃——我仍然希望保留这些数据,但在写入后稍后处理它。我怀疑 win32 函数 PeekNamedPipe 可能有用,但我想避免使用它不断轮询新数据。

如果上面的文字有点不清楚,这大概是我希望能够做的......

NamedPipeServerStream pipe;
ManualResetEvent WriteFlag;
//initialise pipe
lock (pipe)
{
    //I wish this method existed
    WaitHandle NewDataHandle = pipe.GetDataAvailableWaithandle();
    Waithandle[] BreakConditions = new Waithandle[2];
    BreakConditions[0] = NewDataHandle;
    BreakConditions[1] = WriteFlag;
    int breakcode = WaitHandle.WaitAny(BreakConditions);
    switch (breakcode)
    {
        case 0:
            //do a read on the pipe
            break;
        case 1:
            //break so that we release the lock on the pipe
            break;
     }
}

最佳答案

好的,所以我只是从我的代码中删除了它,希望我删除了所有应用程序逻辑内容。这个想法是,您尝试使用 ReadFile 进行零长度读取,并等待 lpOverlapped.EventHandle(读取完成时触发)和另一个线程想要写入管道时设置的 WaitHandle。如果由于写入线程而导致读取中断,则使用 CancelIoEx 取消零长度读取。

NativeOverlapped lpOverlapped;
ManualResetEvent DataReadyHandle = new ManualResetEvent(false);
lpOverlapped.InternalHigh = IntPtr.Zero;
lpOverlapped.InternalLow = IntPtr.Zero;
lpOverlapped.OffsetHigh = 0;
lpOverlapped.OffsetLow = 0;
lpOverlapped.EventHandle = DataReadyHandle.SafeWaitHandle.DangerousGetHandle();
IntPtr x = Marshal.AllocHGlobal(1); //for some reason, ReadFile doesnt like passing NULL in as a buffer
bool rval = ReadFile(SerialPipe.SafePipeHandle, x, 0, IntPtr.Zero,
   ref lpOverlapped);
int BreakCause;
if (!rval) //operation is completing asynchronously
{
   if (GetLastError() != 997) //ERROR_IO_PENDING, which is in fact good
      throw new IOException();
   //So, we have a list of conditions we are waiting for
   WaitHandle[] BreakConditions = new WaitHandle[3];
   //We might get some input to read from the serial port...
   BreakConditions[0] = DataReadyHandle;
    //we might get told to yield the lock so that CPU can write...
   BreakConditions[1] = WriteRequiredSignal;
   //or we might get told that this thread has become expendable
   BreakConditions[2] = ThreadKillSignal;
   BreakCause = WaitHandle.WaitAny(BreakConditions, timeout);
}
else //operation completed synchronously; there is data available
{
   BreakCause = 0; //jump into the reading code in the switch below
}
switch (BreakCause)
{
   case 0:
      //serial port input
      byte[] Buffer = new byte[AttemptReadSize];
      int BRead = SerialPipe.Read(Buffer, 0, AttemptReadSize);
      //do something with your bytes.
      break;
   case 1:
      //asked to yield
      //first kill that read operation
      CancelIoEx(SerialPipe.SafePipeHandle, ref lpOverlapped);
      //should hand over the pipe mutex and wait to be told to tkae it back
      System.Threading.Monitor.Exit(SerialPipeLock);
      WriteRequiredSignal.Reset();
      WriteCompleteSignal.WaitOne();
      WriteCompleteSignal.Reset();
      System.Threading.Monitor.Enter(SerialPipeLock);
      break;
   case 2:
      //asked to die
      //we are the ones responsible for cleaning up the pipe
      CancelIoEx(SerialPipe.SafePipeHandle, ref lpOverlapped);
      //finally block will clean up the pipe and the mutex
      return; //quit the thread
}
Marshal.FreeHGlobal(x);

关于c# - 命名管道 - 异步窥视,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1919373/

相关文章:

.net - 基于两个参数对元素进行分组

c# - 从 C# 代码调用 delphi DLL 方法

image-processing - 异步处理上传图片 : what to do in the meantime?

c# - 返回值的方法不能传递给异常处理程序

events - F# 中的松散耦合代理

c# - 未使用异步函数时出现异步错误?

c# - 为什么在传递对象(而不是结构)时使用 "ref"?

c# - 如何更深入地浏览 XML 并在其中 append 数据

c# - C# 通知中的新行(紧凑型框架)

c# - 在 Internet Explorer 7 中看不到小部件