Qt笔记-Windows管道通信

Posted IT1995

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt笔记-Windows管道通信相关的知识,希望对你有一定的参考价值。

这里主要是两个进程中共享数据,本质是共享内存。采用I/O流的方式来访问。

有两种管道:

①匿名管道:父子进程间通信;

②命名管道:两个进程间通信。

这里本例子使用的命名管道进行。

客户端从键盘发送消息给服务端,服务端收到后回复over。

运行截图如下:

 需要注意的地方:

PIPE_ACCESS_DUPLEX  //该管道是双向的,服务器和客户端进程都可以从管道读取或者向管道写入数据。
PIPE_ACCESS_INBOUND //该管道中数据是从客户端流向服务端,即客户端只能写,服务端只能读。
PIPE_ACCESS_OUTBOUND //该管道中数据是从服务端流向客户端,即客户端只能读,服务端只能写。

PIPE_TYPE_BYTE //数据作为一个连续的字节数据流写入管道。
PIPE_TYPE_MESSAGE //数据用数据块(名为“消息”或“报文”)的形式写入管道。
PIPE_READMODE_BYTE //数据以单独字节的形式从管道中读出。
PIPE_READMODE_MESSAGE //数据以名为“消息”的数据块形式从管道中读出(要求指定PIPE_TYPE_MESSAGE)。
PIPE_WAIT //同步操作在等待的时候挂起线程。
PIPE_NOWAIT //同步操作立即返回。

代码如下:

服务端:

pip_server.cpp

#include <QCoreApplication>
#include <QDebug>
#include <Windows.h>

const char *pipeNamePtr = "\\\\\\\\.\\\\pipe\\\\test_pip";
const int pipeBufferSize = 65535;

HANDLE namedCreateNamedPipe = CreateNamedPipeA(pipeNamePtr,
                                              PIPE_ACCESS_DUPLEX,
                                              PIPE_TYPE_MESSAGE | PIPE_WAIT | PIPE_READMODE_MESSAGE,
                                              PIPE_UNLIMITED_INSTANCES,
                                              0,
                                              0, NMPWAIT_WAIT_FOREVER, nullptr);

int main(int argc, char *argv[])

    QCoreApplication a(argc, argv);

    if(namedCreateNamedPipe == INVALID_HANDLE_VALUE)

        qDebug() << "error : " << namedCreateNamedPipe;
        return 0;
    

    qDebug() << "namedCreateNamedPipe : " << namedCreateNamedPipe;

    if(!ConnectNamedPipe(namedCreateNamedPipe, nullptr))

        qDebug() << "ConnectNamedPipe failed";
        return 0;
    
    qDebug() << "connected";


    while(true)

        char buffer[pipeBufferSize];
        DWORD lenth = 0;
        if(!ReadFile(namedCreateNamedPipe, buffer, pipeBufferSize, &lenth, nullptr))

            qDebug() << "read failed : " << GetLastError();
            break;
        

        qDebug() << "receive : " << buffer;

        DWORD writeNum;
        QString over = "over";
        if(!WriteFile(namedCreateNamedPipe, over.toStdString().c_str(), over.length(), &writeNum, nullptr))

            qDebug() << "WriteFile failed : " << GetLastError();
            break;
        

    

    DisconnectNamedPipe(namedCreateNamedPipe);
    CloseHandle(namedCreateNamedPipe);

    return a.exec();

pip_client.cpp

#include <QCoreApplication>
#include <QDebug>
#include <iostream>
#include <Windows.h>

using namespace std;

const char *pipeNamePtr = "\\\\\\\\.\\\\pipe\\\\test_pip";
const int pipeBufferSize = 65535;


HANDLE namedCreateNamedPipe = CreateFileA(pipeNamePtr,
                                               GENERIC_READ | GENERIC_WRITE,
                                               0, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);

int main(int argc, char *argv[])

    QCoreApplication a(argc, argv);

    if(namedCreateNamedPipe == INVALID_HANDLE_VALUE)

        qDebug() << "error : " << namedCreateNamedPipe;
        return 0;
    

    qDebug() << "namedCreateNamedPipe : " << namedCreateNamedPipe;

    while(true)

        DWORD writeNum;
        char buffer[pipeBufferSize];
        cout << "my >";
        cin >> buffer;
        if(!WriteFile(namedCreateNamedPipe, buffer, pipeBufferSize, &writeNum, nullptr))

            qDebug() << "write failed";
            break;
        

        DWORD lenth = 0;
        if(!ReadFile(namedCreateNamedPipe, buffer, pipeBufferSize, &lenth, nullptr))

            qDebug() << "read failed : " << GetLastError();
            break;
        

        qDebug() << "server >" << buffer;
    

    CloseHandle(namedCreateNamedPipe);

    return a.exec();

源码打包下载地址:

Qt/WindowsPipe at master · fengfanchen/Qt · GitHub

创作打卡挑战赛 赢取流量/现金/CSDN周边激励大奖

以上是关于Qt笔记-Windows管道通信的主要内容,如果未能解决你的问题,请参考以下文章

Python笔记-windows管道通信

进程通信-无名管道

进程通信方式-管道pipe

进程间通信

QT开发(三十五)——QT进程间通信

Qt 通过管道到可执行 Linux 的双向通信