【问题标题】:How can my pipe client wait for the server我的管道客户端如何等待服务器
【发布时间】:2019-11-13 10:16:30
【问题描述】:

我在 Windows 上运行的 C 中实现了一个命名管道 IPC 方案,该方案大部分都在工作。 在客户端,我像这样创建管道

void CreatePipex(const LPCWSTR pipename, InteruptHandler interruptHandler, unsigned char *USARTData)
{
  while (1)
   {
      pipes [_pipeIndex].handle = CreateFile(
         pipename,
         GENERIC_READ |
         GENERIC_WRITE,
         0,
         NULL,
         OPEN_EXISTING,
         0,
         NULL);

      // break if pipe was created
      if (pipes[_pipeIndex].handle != INVALID_HANDLE_VALUE)
      {
         wprintf(L"created pipe %s\n", pipename);
         break;
      }

        if (GetLastError() == ERROR_FILE_NOT_FOUND)
        {

        }
      // exit if pipe not created and not busy
      if (GetLastError() != ERROR_PIPE_BUSY)
      {
          wchar_t buf[256];
          FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
              NULL, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
              buf, (sizeof(buf) / sizeof(wchar_t)), NULL);
          wprintf(L"Could not create %s : %s %d\n",pipename, buf,GetLastError());
         //printf("could not create pipe %d\n", lastError);
         exit(-1);
      }
      if (!WaitNamedPipe(pipename, 20000))
      {
         wprintf(L"Could not open %s: 20 second wait timed out.\n",pipename);
         exit(-1);
      }

   }

   DWORD mode = PIPE_NOWAIT;
   if (!SetNamedPipeHandleState(pipes[_pipeIndex].handle, &mode, 0, 0))
   {
       wchar_t buf[256];
       FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
           NULL, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
           buf, (sizeof(buf) / sizeof(wchar_t)), NULL);
       wprintf(L"Could not set mode for %s : %s\n", pipename, buf);

      exit(-1);
   }

但是如果我在没有服务器的情况下运行客户端,则无法创建客户端管道

Could not create \\.\pipe\F0 : The system cannot find the file specified.

有没有办法让我的客户端等待服务器?

【问题讨论】:

    标签: c windows pipe


    【解决方案1】:

    您可以循环(和休眠)直到 CreateFile 返回与 ERROR_FILE_NOT_FOUND 不同的内容。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2013-11-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-11-10
      • 2017-02-09
      • 1970-01-01
      相关资源
      最近更新 更多