当前位置: 首页 > news >正文

<Linux> 实现命名管道多进程任务派发

实现命名管道多进程任务派发

common文件


#ifndef _COMMON_H_
#define _COMMON_H_#pragma once
#include <iostream>
#include <unistd.h>
#include <string>
#include <sys/types.h>
#include <sys/stat.h>
#include <wait.h>
#include <fcntl.h>
#include <cstring>
#include <cassert>
#include <cstdio>
using namespace std;
string ipcpath = "fifo";#endif

服务端

服务端只读

#include "common.hpp"
#define PROCESS_NUM 10
int main()
{char buffer[1024];memset(buffer, '\0', sizeof buffer);if (mkfifo(ipcpath.c_str(), 0666) < 0){perror("create");exit(1);}int fd = open(ipcpath.c_str(), O_RDONLY);if (fd < 0){perror("open");exit(1);}for (size_t i; i < 10; i++){pid_t id = fork();if (0 == id){while (true){ssize_t ret = read(fd, buffer, sizeof(buffer) - 1);if (ret > 0){buffer[ret] = '\0';cout << buffer << endl;}else if (0 == ret){break;}else{perror("read");exit(1);}}exit(0);}}for (size_t i = 0; i < PROCESS_NUM; i++){waitpid(-1, nullptr, 0);}unlink(ipcpath.c_str());close(fd);return 0;
}

客户端

客户端只写

#include "common.hpp"int main()
{int fd = open(ipcpath.c_str(), O_WRONLY);if (fd < 0){perror("open");exit(1);}string str;while (true){cout << "Please input message: ";// getline()getline(cin, str);write(fd, str.c_str(), str.size());}close(fd);return 0;
}

makefile

.PHONY:all
all:mutiClient mutiServermutiServer:mutiServer.ccg++ -o $@ $^  -std=c++11mutiClient:mutiClient.ccg++ -o $@ $^  -std=c++11.PHONY:clean
clean:rm -f mutiClient mutiServer
http://www.lryc.cn/news/386164.html

相关文章:

  • BigInteger 和 BigDecimal(java)
  • Linux 进程间通讯
  • 数据分析三剑客-Matplotlib
  • FastAPI-Body、Field
  • 软件设计师笔记-操作系统知识(二)
  • 鸿蒙UI开发快速入门 —— part12: 渲染控制
  • 添加用户页面(Flask+前端+MySQL整合)
  • 素数筛(算法篇)
  • 迁移Microsoft Edge
  • Maven高级理解属性
  • Trilium Notes浏览器插件保存网页内容到docker私有化部署
  • C++ 统计二进制串中0出现的个数
  • note-网络是怎样连接的6 请求到达服务器,响应返回浏览器
  • 存储过程与函数:封装数据库逻辑的艺术(七)
  • 【复旦邱锡鹏教授《神经网络与深度学习公开课》笔记】卷积
  • Trie字符串统计
  • Kali Linux源
  • 【RT摩拳擦掌】基于RT106L/S语音识别的百度云控制系统
  • 国标GB28181视频汇聚平台EasyCVR设备展示数量和显示条数不符的原因排查与解决
  • FastAPI教程I
  • 如何在 HTML 中实现响应式设计以适应不同设备的屏幕尺寸?
  • 【基础篇】第1章 Elasticsearch 引言
  • 在区块链技术广泛应用的情况下,C 语言如何在区块链的底层开发中发挥更有效的作用,提高性能和安全性?
  • 量化投资 日周月报 2024-06-28
  • 基于 Paimon 的袋鼠云实时湖仓入湖实战剖析
  • IPython相关了解
  • 华为面试题及答案——机器学习(二)
  • PlatformIO开发环境
  • In install.packages(“devtools“, verbose = TRUE) :
  • 计算机网络 访问控制列表以及NAT