簡體   English   中英

命名管道和“GetNamedPipeHandleState”

[英]Named pipe and "GetNamedPipeHandleState"

如果我運行管道客戶端來測試GetNamedPipeHandleState函數,我會收到錯誤Error 87: The parameter is incorrect

這是我的代碼,帶有客戶端和服務器:

#include <iostream>
#include <stdio.h>
#include <conio.h>
#include "windows.h"

using namespace std;

void showError(const char *text) {
    char Buf[256];
    DWORD errNo = GetLastError();
    FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), Buf,
                  sizeof(Buf), NULL);
    fprintf(stdout, "%s, error %d, %s\nPress any key to Exit", text, (int) errNo, Buf);
    _getch();
}

int client_GetNamedPipeHandleState() {

    DWORD dwState;
    DWORD dwCurInstances;
    DWORD dwMaxCollectionCount;
    DWORD dwCollectDataTimeout;
    TCHAR chUserName[255];

    char pipeName[] = "\\\\.\\pipe\\demo_pipe";
    HANDLE hNamedPipe;

    hNamedPipe = CreateFileA(pipeName, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL,
                             NULL);

    if (hNamedPipe == INVALID_HANDLE_VALUE) {
        showError("Create File failed");
        return 0;
    }

    if (!GetNamedPipeHandleState(
        hNamedPipe, &dwState, &dwCurInstances, &dwMaxCollectionCount,&dwCollectDataTimeout, chUserName, 255)) {
        //hNamedPipe, &dwState, &dwCurInstances, NULL, NULL, NULL, 0)) {
        CloseHandle(hNamedPipe);
        showError("get state failed");
        return 0;
    }

    cout << "State: " << dwState << ", ";
    switch (dwState) {
        case (PIPE_NOWAIT):
            cout << "PIPE_NOWAIT" << endl;
            break;
        case (PIPE_READMODE_MESSAGE):
            cout << "PIPE_READMODE_MESSAGE" << endl;
            break;
        case (PIPE_NOWAIT | PIPE_READMODE_MESSAGE):
            cout << "PIPE_NOWAIT and PIPE_READMODE_MESSAGE" << endl;
            break;
        default:
            cout << "Unknown state." << endl;
            break;
    }

    cout << "Current instances: " << dwCurInstances << endl
    << "Max collection count: " << dwMaxCollectionCount << endl
    << "Collection data timeout: " << dwCollectDataTimeout << endl
    << "User name: " << chUserName << endl;

    CloseHandle(hNamedPipe);
    cout << "Press any key to exit.";
    cin.get();
    return 0;
}

int server() {
    HANDLE hNamedPipe;
    DWORD dwBytesRead;
    DWORD dwBytesWrite;
    char pchMessage[80];
    DWORD nMessageLength;

    hNamedPipe = CreateNamedPipeA(
            "\\\\.\\pipe\\demo_pipe",
            PIPE_ACCESS_DUPLEX,
            PIPE_TYPE_MESSAGE | PIPE_WAIT,
            1,
            0,
            0,
            INFINITE,
            NULL
    );

    if (hNamedPipe == INVALID_HANDLE_VALUE) {
        showError("Create named pipe failed");
        return 0;
    }

    printf("Waiting client...\n");
    if (!ConnectNamedPipe(hNamedPipe, NULL)) {
        showError("Connect to name pipe failed");
        CloseHandle(hNamedPipe);
        return 0;
    }
    if (!ReadFile(hNamedPipe, pchMessage, sizeof(pchMessage), &dwBytesRead, NULL)) {
        CloseHandle(hNamedPipe);
        showError("Read pipe failed");
        return 0;
    }

    printf("The server received the message from client: %s\n", pchMessage);
    cout << "Input a string: ";
    cin.getline(pchMessage, 80);
    nMessageLength = strlen(pchMessage) + 1;

    //Answer to client
    if (!WriteFile(hNamedPipe, pchMessage, nMessageLength, &dwBytesWrite, NULL)) {
        CloseHandle(hNamedPipe);
        showError("Write file failed.");
        return 0;
    }
    printf("The Server send the message to the client: %s\n", pchMessage);
    CloseHandle(hNamedPipe);
    printf("Press any key to exit");
    cin.get();
    return 0;
}

int main(int argc, char *argv[]) {
    if (argc == 1) return 0;

    if (!strcmp(argv[1], "client")) {
        client_GetNamedPipeHandleState();
    }

    if (!strcmp(argv[1], "server")) {
        server();
    }

    return 0;
}

這是我在 Clion 中制作的項目。 可以作為“應用程序客戶端”或“應用程序服務器”運行。

錯誤的原因是什么?

如記錄

lpMaxCollectionCount [輸出,可選]

[...] 如果客戶端和服務器進程在同一台計算機上,則此參數必須為 NULL [...]。

lpCollectDataTimeout [out,可選]

[...] 如果客戶端和服務器進程在同一台計算機上,則此參數必須為 NULL [...]。

lpUserName [輸出,可選]

[...] 如果指定的管道句柄指向命名管道的客戶端,則此參數必須為 NULL。

一旦所有這三個參數都設置為 NULL,調用就起作用了。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM