IO—消息队列+管道

使用消息队列实现的2个终端之间的互相聊天

并使用信号控制消息队列的读取方式:

当键盘按ctrl+c的时候,切换消息读取方式,一般情况为读取指定编号的消息,按ctr1+c之后,指定的编号不读取,读取其他所有编号的消息

wftok.c

cs 复制代码
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>
void* run(void* arg);
typedef struct msgp{
	long mtype;
	char mtext[128];
}msgpstr;
int mtype=1;
void handler(int signum);
int main(int argc, const char *argv[])
{
	pthread_t id;
 	int prtval;
 	prtval= pthread_create(&id,0,run,0);
 	if(prtval==-1){
		perror("pthread_create");
     	return 1;
 	}
	signal(SIGINT,handler);
	//创建消息队列秘钥
	key_t frtval=ftok("./ipc_ftok",1);
	if(frtval==-1){
		perror("ftok");
		return 1;
	}
	//访问创建的消息秘钥
	int mrtval=msgget(frtval,IPC_CREAT|0666);
	if(mrtval==-1){
		perror("msgget");
		return 1;
	}
	//写入消息
	msgpstr msg;
	while(1){
		bzero(msg.mtext,128);
		msg.mtype=mtype;//确定消息编号
		puts("A:");
		scanf("%128s",msg.mtext);
		
		while(getchar()!=10);
		int msrtval=msgsnd(mrtval,&msg,128,0);
	}

	
	return 0;
}
void* run(void* arg){
	//创建消息队列秘钥
	key_t frtval=ftok("./ipc_ftok",1);
	if(frtval==-1){
		perror("ftok");
    	return NULL;
	}
	//访问创建的消息秘钥
	int mrtval=msgget(frtval,IPC_CREAT|0666);
	if(mrtval==-1){
		perror("msgget");                      
		return NULL;
	}
	//read
	msgpstr msg;
	while(1){
		bzero(msg.mtext,128);
		msgrcv(mrtval,&msg,128,mtype+1,0);
		printf("B:%s\n",msg.mtext);
	}

}
void handler(int signum){
    if(signum==SIGINT){
        printf("cut number\n");
        mtype=2;
    }
}

rftok.c

cs 复制代码
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>
void* run(void* arg);
typedef struct msgp{
    long mtype;
    char mtext[128];
}msgpstr;
int mtype=1;
void handler(int signum);
int main(int argc, const char *argv[])
{
	pthread_t id;
	int prtval;
	prtval=	pthread_create(&id,0,run,0);
	if(prtval==-1){
		perror("pthread_create");
		return 1;
	}
	signal(SIGINT,handler);
    //创建消息队列秘钥
    key_t frtval=ftok("./ipc_ftok",1);
    if(frtval==-1){
        perror("ftok");
        return 1;
    }
    //访问创建的消息秘钥
    int mrtval=msgget(frtval,IPC_CREAT|0666);
    if(mrtval==-1){
        perror("msgget");
        return 1;
    }
	//read
	msgpstr msg;
	while(1){
		bzero(msg.mtext,128);
		msgrcv(mrtval,&msg,128,mtype,0);
		printf("A:%s\n",msg.mtext);
	}
	return 0;
}
void* run(void* arg){
	//创建消息队列秘钥
	key_t frtval=ftok("./ipc_ftok",1);
	if(frtval==-1){
  	  perror("ftok");
   	 return NULL;
	}
	//访问创建的消息秘钥
	int mrtval=msgget(frtval,IPC_CREAT|0666);
	if(mrtval==-1){
 	   perror("msgget");
 	   return NULL;
	}
	//写入消息
	msgpstr msg;
	while(1){
  	  bzero(msg.mtext,128);
  	  msg.mtype=mtype+1;//确定消息编号
	  puts("B:");
	  scanf("%128s",msg.mtext);
	  while(getchar()!=10);
	  int msrtval=msgsnd(mrtval,&msg,128,0);
	}
}
void handler(int signum){
	if(signum==SIGINT){
		printf("cut number\n");
		mtype=2;
	}
}

运行结果:

相关推荐
MZWeiei2 分钟前
Zookeeper基本命令解析
大数据·linux·运维·服务器·zookeeper
7yewh17 分钟前
嵌入式Linux QT+OpenCV基于人脸识别的考勤系统 项目
linux·开发语言·arm开发·驱动开发·qt·opencv·嵌入式linux
小张认为的测试21 分钟前
Linux性能监控命令_nmon 安装与使用以及生成分析Excel图表
linux·服务器·测试工具·自动化·php·excel·压力测试
打鱼又晒网30 分钟前
linux网络套接字 | 深度解析守护进程 | 实现tcp服务守护进程化
linux·网络协议·计算机网络·tcp
良许Linux43 分钟前
0.96寸OLED显示屏详解
linux·服务器·后端·互联网
蜜獾云1 小时前
docker 安装雷池WAF防火墙 守护Web服务器
linux·运维·服务器·网络·网络安全·docker·容器
小屁不止是运维1 小时前
麒麟操作系统服务架构保姆级教程(五)NGINX中间件详解
linux·运维·服务器·nginx·中间件·架构
bitcsljl1 小时前
Linux 命令行快捷键
linux·运维·服务器
ac.char1 小时前
在 Ubuntu 下使用 Tauri 打包 EXE 应用
linux·运维·ubuntu
Cachel wood2 小时前
python round四舍五入和decimal库精确四舍五入
java·linux·前端·数据库·vue.js·python·前端框架