Проверьте EOF в NamedPipeClientStream - PullRequest
4 голосов
/ 27 июля 2011

С помощью функций C можно проверить, пуста ли выходная сторона канала, с помощью _eof(pipeOut) и пропустить операцию чтения.

int endOfFile = _eof(myPipeIn);
if(endOfFile != 0)
    int aReadCount = _read(myPipeIn, aBufferPtr, 256);

Можно ли сделать что-то подобное с .Net NamedPipeClientStream

Ответы [ 2 ]

4 голосов
/ 28 июля 2011

К сожалению, подсказка Буллера у меня не сработала, потому что ReadLine может блокировать.

Но с ответом Зака ​​на Альтернатива StreamReader.Peek и Thread.Interrupt Я придумал следующее:

[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 не является проблемой.

1 голос
/ 27 июля 2011

В соответствии с документацией 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);
                }
            }
...