Linux:命名管道实现IPC(进程间通信七)

上篇博客我们说过在这篇博客我们将改进我们上篇博客写的,命名管道实现简易通信,下面是改进之后的代码,这里我不详细写出来,希望大家可以凭借上节课的知识以及代码内容,真正的自己理解并且复现一遍~~

Makefile:

cpp 复制代码
.PHONEY : all
all : server client
server : server.cc
	g++ server.cc -o server
client : client.cc
	g++ client.cc -o client

.PHONEY : clean
clean :
	rm -f client server

server.cc

cpp 复制代码
#include "common.hpp"

int main()
{
    NamedFifo fifo(PATH, FIFO_FILE);
    FifoOper server(PATH, FIFO_FILE);
    server.OpenForRead();
    server.Read();
    server.Close();
    return 0;
}

client.cc

cpp 复制代码
#include "common.hpp"

int main()
{
    FifoOper client(PATH, FIFO_FILE);
    client.OpenForWrite();
    client.Write();
    client.Close();
    return 0;
}

common.hpp:

cpp 复制代码
#pragma once

#include <iostream>
#include <string>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#define PATH "."
#define FIFO_FILE "fifo"

class NamedFifo
{
public:
    NamedFifo(std::string path, std::string name)
        : _path(path)
        , _name(name)
    {
        umask(0);
        _fifoname = _path + "/" + _name;
        int n = mkfifo(_fifoname.c_str(), 0666);
        if (n == -1)
        {
            std::cout << "mkfifo fail" << std::endl;
        }
        else 
        {
            std::cout << "mkfifo success" << std::endl;
        }
    }

    ~NamedFifo()
    {
        int n = unlink(_fifoname.c_str());
        if (n == -1)
        {
            std::cout << "~fifo fail" << std::endl;
        }
        else 
        {
            std::cout << "~fifo success" << std::endl;
        }
    }
private:
    std::string _path;
    std::string _name;
    std::string _fifoname;
};

class FifoOper
{
public:
    FifoOper(std::string path, std::string name)
        : _path(path)
        , _name(name)
        , _fd(-1)
    {
        _fifoname = _path + "/" + _name;
    }

    ~FifoOper()
    {
        std::cout << "~FifoOper" << std::endl;
    }

    void OpenForRead()
    {
        _fd = open(_fifoname.c_str(), O_RDONLY);
        if (_fd < 0)
        {
            std::cout << "OpenForRead fail" << std::endl;
            return;
        }
        std::cout << "OpenForRead success" << std::endl;
    }

    void OpenForWrite()
    {
        _fd = open(_fifoname.c_str(), O_WRONLY);
        if (_fd < 0)
        {
            std::cout << "OpenForWrite fail" << std::endl;
            return;
        }
        std::cout << "OpenForWrite success" << std::endl;
    }

    void Read()
    {
        char buffer[1024];
        while (true)
        {
            int number = read(_fd, buffer, sizeof(buffer) - 1);
            if (number > 0)
            {
                buffer[number] = '\0';
                std::cout << "client say : " << buffer << std::endl;
            }
            else if (number == 0)
            {
                std::cout << "client quit! server quit, too!" << std::endl;
                break;
            }
            else 
            {
                std::cout << "Read error" << std::endl;
                break;
            }
        }
    }

    void Write()
    {
        std::string message;
        while (true)
        {
            std::cout << "please enter# ";
            std::getline(std::cin, message);
            write(_fd, message.c_str(), message.size());
        }
    }

    void Close()
    {
        if (_fd > 0)
            close(_fd);
    }
private:
    std::string _path;
    std::string _name;
    std::string _fifoname;
    int _fd;
};

这就算有关管道通信的知识啦(命名管道与匿名管道),但是我们的通信之旅还没有完,大家敬请期待后续内容啦~~

相关推荐
爱码少年6 分钟前
一条Shell命令实现文件目录服务器间快速转移
服务器·shell
laboratory agent开发21 分钟前
智能体多工具串联执行中途失败,部分写入的数据如何回滚
运维·服务器·数据库
智塑未来31 分钟前
金融 AIOps 选型指南:银行证券智能运维平台怎么选
运维·人工智能·金融
寒水馨31 分钟前
Linux下载、安装protobuf-v35.1(附安装包protoc-35.1-linux-x86_64.zip)
linux·运维·服务器·google·序列化·protobuf·protoc
王琦03181 小时前
Linux的文件管理
linux·运维·服务器
xlq223221 小时前
高并发服务器day13
运维·服务器
Android系统攻城狮1 小时前
Linux PipeWire深度解析之pw_stream_new调用流程与实战(四十二)
linux·运维·服务器·音频进阶·pipewire音频进阶
Ivan CloudBay1 小时前
CDN 能完全隐藏源服务器 IP 吗?
运维·服务器·tcp/ip
蜉蝣fuyou1 小时前
VMware多版本安装包
linux·vmware·虚拟机
不会代码的小猴1 小时前
Linux note2
linux·笔记