0

私はmsdnブログからこのコードをピックアップしました:

#include <windows.h> 
#include <stdio.h>
#include <conio.h>
#include <tchar.h>

#define BUFSIZE 512

int _tmain(int argc, TCHAR *argv[]) 
{ 
   HANDLE hPipe; 
   LPTSTR lpvMessage=TEXT("Default message from client."); 
   TCHAR  chBuf[BUFSIZE]; 
   BOOL   fSuccess = FALSE; 
   DWORD  cbRead, cbToWrite, cbWritten, dwMode; 
   LPTSTR lpszPipename = TEXT("H:\\Users\\uname\\Documents\\fff.txt"); 

   if( argc > 1 )
      lpvMessage = argv[1];

// Try to open a named pipe; wait for it, if necessary. 

   while (1) 
   { 
      hPipe = CreateFile( 
         lpszPipename,   // pipe name 
         GENERIC_READ |  // read and write access 
         GENERIC_WRITE, 
         0,              // no sharing 
         NULL,           // default security attributes
         OPEN_ALWAYS,  // opens existing pipe 
         0,              // default attributes 
         NULL);          // no template file 

   // Break if the pipe handle is valid. 

      if (hPipe != INVALID_HANDLE_VALUE) 
         break; 

      // Exit if an error other than ERROR_PIPE_BUSY occurs. 

      if (GetLastError() != ERROR_PIPE_BUSY) 
      {
         _tprintf( TEXT("Could not open pipe. GLE=%d\n"), GetLastError() ); 
         return -1;
      }

      // All pipe instances are busy, so wait for 20 seconds. 

      if ( ! WaitNamedPipe(lpszPipename, 20000)) 
      { 
         printf("Could not open pipe: 20 second wait timed out."); 
         return -1;
      } 
   } 

// The pipe connected; change to message-read mode. 

   dwMode = PIPE_READMODE_MESSAGE; 
   fSuccess = SetNamedPipeHandleState( 
      hPipe,    // pipe handle 
      &dwMode,  // new pipe mode 
      NULL,     // don't set maximum bytes 
      NULL);    // don't set maximum time 
   if ( ! fSuccess) 
   {
      _tprintf( TEXT("SetNamedPipeHandleState failed. GLE=%d\n"), GetLastError() ); 
      return -1;
   }

// Send a message to the pipe server. 

   cbToWrite = (lstrlen(lpvMessage)+1)*sizeof(TCHAR);
   _tprintf( TEXT("Sending %d byte message: \"%s\"\n"), cbToWrite, lpvMessage); 

   fSuccess = WriteFile( 
      hPipe,                  // pipe handle 
      lpvMessage,             // message 
      cbToWrite,              // message length 
      &cbWritten,             // bytes written 
      NULL);                  // not overlapped 

   if ( ! fSuccess) 
   {
      _tprintf( TEXT("WriteFile to pipe failed. GLE=%d\n"), GetLastError() ); 
      return -1;
   }

   printf("\nMessage sent to server, receiving reply as follows:\n");

   do 
   { 
   // Read from the pipe. 

      fSuccess = ReadFile( 
         hPipe,    // pipe handle 
         chBuf,    // buffer to receive reply 
         BUFSIZE*sizeof(TCHAR),  // size of buffer 
         &cbRead,  // number of bytes read 
         NULL);    // not overlapped 

      if ( ! fSuccess && GetLastError() != ERROR_MORE_DATA )
         break; 

      _tprintf( TEXT("\"%s\"\n"), chBuf ); 
   } while ( ! fSuccess);  // repeat loop if ERROR_MORE_DATA 

   if ( ! fSuccess)
   {
      _tprintf( TEXT("ReadFile from pipe failed. GLE=%d\n"), GetLastError() );
      return -1;
   }

   printf("\n<End of message, press ENTER to terminate connection and exit>");
   _getch();

   CloseHandle(hPipe); 

   return 0; 
}

コードで使用されているほとんどの関数のドキュメントを調べましたが、問題を引き起こす可能性のある操作は見つかりませんでした。明らかに、ループ内でファイルを開くことは、そこにあるべきではないものです。しかし、コード(VS 2010 Ultimate)をコンパイルして実行すると、
ERROR_IS_SUBSTEDエラーで失敗します。GetLastErrorがこのエラーを返すポイントはここにあります:

while (1) 
       { 
          hPipe = CreateFile( 
             lpszPipename,   // pipe name 
             GENERIC_READ |  // read and write access 
             GENERIC_WRITE, 
             0,              // no sharing 
             NULL,           // default security attributes
             OPEN_ALWAYS,  // opens existing pipe 
             0,              // default attributes 
             NULL);          // no template file 

私はまだWindowsプログラミングに不慣れであり、これらのエラーコードは私を混乱させています。このエラーの msdnドキュメントにはAn attempt was made to use a JOIN or SUBST command on a drive that has already been substituted. 、コミュニティの誰かがお願いできると書かれています。

1.ERROR_IS_SUBSTDとは何ですか?msdnによる説明は、私にはわかりにくいものです。:(

2.なぜこのエラーが発生するのですか?

3.(ややオフトピック)このようなエラーの追跡/修正において、プログラミングの生涯を通じて救世主であったstraceユーティリティがありません。Windowsに似たようなものはありますか?

4

1 に答える 1

2

Hドライブがネットワーク共有でない限り、エラーメッセージはランダムなナンセンスのように見えます。ただし、エラーメッセージはランダムなナンセンスのように見えますが、パイプ名も同様です。

名前付きパイプを作成するには、MSDNのここを参照してください: CreateNamedPipe

パイプ名は次のようにする必要があります

"\\\\.\\pipe\\pipename"
于 2012-06-26T05:07:59.587 に答える