1 Star 0 Fork 315

guodong/ZLToolKit

forked from ALONE_WORK/ZLToolKit 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_pipe.cpp 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
夏楚 提交于 2020-04-24 11:49 . 整理
/*
* Copyright (c) 2016 The ZLToolKit project authors. All Rights Reserved.
*
* This file is part of ZLToolKit(https://github.com/xiongziliang/ZLToolKit).
*
* Use of this source code is governed by MIT license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
*/
#include <signal.h>
#include <iostream>
#include "Util/logger.h"
#include "Poller/EventPoller.h"
#include "Poller/Pipe.h"
#include "Util/util.h"
using namespace std;
using namespace toolkit;
int main() {
//设置日志
Logger::Instance().add(std::make_shared<ConsoleChannel>());
#if defined(_WIN32)
ErrorL << "该测试程序不能再windows下运行,因为我不会windows下的多进程编程,但是管道模块是可以在windows下正常工作的。" << endl;
#else
//获取父进程的PID
auto parentPid = getpid();
InfoL << "parent pid:" << parentPid << endl;
//定义一个管道,lambada类型的参数是管道收到数据的回调
Pipe pipe([](int size,const char *buf) {
//该管道有数据可读了
InfoL << getpid() << " recv:" << buf;
});
//创建子进程
auto pid = fork();
if (pid == 0) {
//子进程
int i = 10;
while (i--) {
//在子进程每隔一秒把数据写入管道,共计发送10次
sleep(1);
string msg = StrPrinter << "message " << i << " form subprocess:" << getpid();
DebugL << "子进程发送:" << msg << endl;
pipe.send(msg.data(), msg.size());
}
DebugL << "子进程退出" << endl;
} else {
//父进程设置退出信号处理函数
static semaphore sem;
signal(SIGINT, [](int) { sem.post(); });// 设置退出信号
sem.wait();
InfoL << "父进程退出" << endl;
}
#endif // defined(_WIN32)
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qdwx1107/ZLToolKit.git
git@gitee.com:qdwx1107/ZLToolKit.git
qdwx1107
ZLToolKit
ZLToolKit
master

搜索帮助