Linux--命名函数实现

Makefile:

cpp 复制代码
.PHONY:all
all:client mutiServer

client:client.cc
	g++ -o $@ $^ -std=c++11
mutiServer:server.cc
	g++ -o $@ $^ -std=c++11

.PHONY:clean
clean:
	rm -f client mutiServer

server.cc

cpp 复制代码
#include "comm.hpp"
#include <sys/wait.h>

static void getMessage(int fd)
{
    char buffer[SIZE];
    while(true)
    {
        memset(buffer,'\0',sizeof (buffer));
        ssize_t s=read(fd,buffer,sizeof(buffer)-1);
        if(s>0)
        {
            cout<<"["<<getpid()<<"] "<<"client say> "<<buffer<<endl;
        }
        else if(s==0)
        {
            //end of file
            cerr<<"["<<getpid()<<"] "<<"read end of file, client quit, server quit too!"<<endl;
            break;
        }
        else
        {
            //read error
            perror("read");
            break;
        }
    }
}

int main()
{
    //1.创建管道文件
    if(mkfifo(ipcPath.c_str(),MODE)<0)
    {
        perror("mkfifo");
        exit(1);
    }

    Log("创建管道文件成功",Debug)<<" step 1 "<<endl;

    //2.打开文件
    int fd=open(ipcPath.c_str(),O_RDONLY);
    if(fd<0)
    {
        perror("open");
        exit(2);
    }

    Log("打开管道文件成功",Debug)<<" step 2 "<<endl;

    int nums=3;
    for(int i=0;i<nums;i++)
    {
        pid_t id=fork();

        if(id==0)
        {
            //3.编写正常的通信代码
            getMessage(fd);
            exit(1);
        }
    }

    for(int i=0;i<nums;i++)
    {
        waitpid(-1,nullptr,0);
    }
   
    //4.关闭文件
    close(fd);

    Log("关闭管道文件成功",Debug)<<" step 3 "<<endl;

    unlink(ipcPath.c_str());//通信完毕

    Log("删除管道文件成功",Debug)<<" step 4 "<<endl;

    return 0;
}

client.cc

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

int main()
{
    //1.获取管道
    int fd=open(ipcPath.c_str(),O_WRONLY);
    if(fd<0)
    {
        perror("open");
        exit(1);
    }
    
    //2.ipc过程
    string buffer;
    while(true)
    {
        cout<<"please enter your message line:>";
        getline(cin,buffer);
        write(fd,buffer.c_str(),buffer.size());
    }

    //3.关闭管道文件
    close(fd);
    return 0;
}

comm.hpp

cpp 复制代码
#ifndef _COMM_H_
#define _COMM_H_

#include <iostream>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <cstring>
#include "Log.hpp"

using namespace std;

#define MODE 0666
#define SIZE 128
string ipcPath = "./fifo.ipc";

#endif

Log.hpp

cpp 复制代码
#ifndef _LOG_H
#define _LOG_H

#include <iostream>
#include <ctime>
#include <string>
using namespace std;

#define Debug 0
#define Notice 1
#define Warning 2
#define Error 3

const string msg[]={
    "Debug",
    "Notice",
    "Warning",
    "Error"
};



ostream &Log(string message,int level)
{
    cout<<" | "<<(unsigned)time(NULL)<<" | "<<msg[level]<<" | "<<message;
    return cout;
}

#endif
相关推荐
丶21369 分钟前
【Nginx】在 Docker 上安装 Nginx 的详细指南
运维·nginx·docker
danplus23 分钟前
node发送邮件:如何实现Node.js发信功能?
服务器·node.js·外贸开发信·邮件群发·蜂邮edm邮件营销·邮件接口·营销邮件
神即道 道法自然 如来25 分钟前
Jenkins怎么设置每日自动执行构建任务?
运维·jenkins
小黑爱编程32 分钟前
【LInux】HTTPS是如何实现安全传输的
linux·安全·https
BeyondESH37 分钟前
Linux线程同步—竞态条件和互斥锁(C语言)
linux·服务器·c++
wn53138 分钟前
【Go - 类型断言】
服务器·开发语言·后端·golang
hanniuniu1339 分钟前
详细解读,F5服务器负载均衡的技术优势
运维·服务器·负载均衡
鱼饼6号1 小时前
Prometheus 上手指南
linux·运维·centos·prometheus
Asher Gu1 小时前
Linux系统编程入门 | 模拟实现 ls -l 命令
linux
PatrickYao04221 小时前
记一次安装discuz时遇到的错误
服务器