我是靠谱客的博主 寂寞星星,这篇文章主要介绍【操作系统】Linux下利用命名管道实现server&client通信,现在分享给大家,希望可以做个参考。

【操作系统】Linux下进程间通信实现–匿名管道(PIPE),命名管道(FIFO)


实现源码:

server.c

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include<stdio.h> #include<stdlib.h> #include<string.h> #include<unistd.h> #include<fcntl.h> #include<sys/stat.h> #include<sys/types.h> #define ERR_EXIT(m) do{ perror(m); exit(EXIT_FAILURE); }while(0) int main(){ umask(0); //设置允许当前进程创建文件或者目录最大可操作的权限,避免了创建目录或文件的权限不确定性。 //创建管道 if(mkfifo("mypipe",0644) < 0) ERR_EXIT("mypipe"); //读端 int rfd = open("mypipe",O_RDONLY); if(rfd < 0) ERR_EXIT("open"); char buf[1024]; while(1){ buf[0] = 0; printf("Please wait...n"); //将文件描述符rfd中的内容放入缓冲区buf中 ssize_t s = read(rfd,buf,sizeof(buf)-1); if(s > 0){ //成功从管道中读取到数据 buf[s-1] = 0; printf("[client]:> %sn",buf); } else if(0 == s){ //管道中暂时没有数据 printf("client quit, exit now!n"); exit(EXIT_SUCCESS); } else{ //读失败 ERR_EXIT("read"); } } close(rfd); return 0; }

client.c:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include<stdio.h> #include<stdlib.h> #include<string.h> #include<unistd.h> #include<fcntl.h> #include<sys/stat.h> #include<sys/types.h> #define ERR_EXIT(m) do{ perror(m); exit(EXIT_FAILURE); }while(0) int main(){ //写端 int wfd = open("mypipe",O_WRONLY); if(wfd < 0) ERR_EXIT("open"); char buf[1024]; while(1){ buf[0] = 0; printf("Please Enter# "); //更新缓冲区 fflush(stdout); //将stdout上的数据放入缓冲区buf中 ssize_t s = read(0,buf,sizeof(buf)-1); if(s > 0){ //成功读取到数据,将缓冲区buf中的数据写入到管道中 buf[s] = 0; write(wfd,buf,strlen(buf)); }else if(s <= 0){ //读数据失败 ERR_EXIT("read"); } } close(wfd); return 0; }

程序运行结果:

server:

这里写图片描述

client:

这里写图片描述

最后

以上就是寂寞星星最近收集整理的关于【操作系统】Linux下利用命名管道实现server&client通信的全部内容,更多相关【操作系统】Linux下利用命名管道实现server&client通信内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(75)

评论列表共有 0 条评论

立即
投稿
返回
顶部