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;
};

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

相关推荐
wdfk_prog5 小时前
[Linux]学习笔记系列 -- [drivers][input]input
linux·笔记·学习
七夜zippoe6 小时前
CANN Runtime任务描述序列化与持久化源码深度解码
大数据·运维·服务器·cann
盟接之桥6 小时前
盟接之桥说制造:引流品 × 利润品,全球电商平台高效产品组合策略(供讨论)
大数据·linux·服务器·网络·人工智能·制造
忆~遂愿6 小时前
ops-cv 算子库深度解析:面向视觉任务的硬件优化与数据布局(NCHW/NHWC)策略
java·大数据·linux·人工智能
湘-枫叶情缘6 小时前
1990:种下那棵不落叶的树-第6集 圆明园的对话
linux·系统架构
Fcy6487 小时前
Linux下 进程(一)(冯诺依曼体系、操作系统、进程基本概念与基本操作)
linux·运维·服务器·进程
袁袁袁袁满7 小时前
Linux怎么查看最新下载的文件
linux·运维·服务器
代码游侠7 小时前
学习笔记——设备树基础
linux·运维·开发语言·单片机·算法
Gary Studio7 小时前
rk芯片驱动编写
linux·学习
mango_mangojuice7 小时前
Linux学习笔记(make/Makefile)1.23
java·linux·前端·笔记·学习