8.5-IO进程线程-作业

1)要求AB进程做通信

  1. A进程任意时刻发送一句话,B进程接收打印

  2. B进程任意时刻发送给A进程一句话,A进程接收打印

  3. 、直到A进程或者B进程收到quit,退出AB进程;

A进程

#include <stdio.h>
#include <sys/ipc.h>
#include <sys/types.h>
#include <pthread.h>
#include <sys/msg.h>
#include <string.h>
#include <stdlib.h>
//消息包结构体
typedef struct 
{
	long mtype;
	char mtext[128];
}msgbuf;

void* callBack_w(void* arg)
{
	key_t key = *(key_t*)arg;
	//创建消息队列
	int msqid = msgget(key,IPC_CREAT|0664);
	if(msqid < 0)
	{
		perror("msgget");
		return NULL;
	}
	//创建消息包
	msgbuf snd;
	snd.mtype = 1;  //发送类型是1
	while(1)
	{
		printf("A进程输入>>>");
		fgets(snd.mtext,sizeof(snd.mtext),stdin);
		snd.mtext[strlen(snd.mtext)-1] = '\0';
		//发送消息包
		if(msgsnd(msqid,&snd,sizeof(snd.mtext),0) < 0)
		{
			perror("msgsnd");
			return NULL;
		}
		//退出
		if(strcasecmp(snd.mtext,"quit") == 0)
		{
			printf("A程序退出\n");
			exit(0);
		}
	}

}
void* callBack_r(void *arg)
{
	key_t key = *(key_t*)arg;
	//创建消息队列
	int msqid = msgget(key,IPC_CREAT|0664);
	if(msqid < 0)
	{
		perror("msgget");
		return NULL;
	}
	//接收消息包
	msgbuf rcv;
	ssize_t res = 0;
	while(1)
	{
		res = msgrcv(msqid,&rcv,sizeof(rcv.mtext),2,0);
		if(res < 0)
		{
			perror("msgacv");
			return NULL;
		}
		//退出
		if(strcasecmp(rcv.mtext,"quit") == 0)
		{
			msgctl(msqid,IPC_RMID,NULL);
			printf("A程序退出\n");
			exit(0);
		}
		printf("接收到B进程的信息:%s\n",rcv.mtext);
	}
}
int main(int argc, const char *argv[])
{
	printf("A进程\n");
	//计算key
	key_t key = ftok("./",1);
	if(key < 0)
	{
		perror("ftok");
		return -1;
	}
	
	//创建线程
	pthread_t tid1,tid2;
	if(pthread_create(&tid1,NULL,callBack_w,(void*)&key) != 0)
	{
		perror("pthread_create");
		return -1;
	}

	if(pthread_create(&tid2,NULL,callBack_r,(void*)&key) != 0)
	{
		perror("pthread_create");
		return -1;
	}

	pthread_join(tid1,NULL);
	pthread_join(tid2,NULL);


	return 0;
}

B进程

#include <stdio.h>
#include <sys/ipc.h>
#include <sys/types.h>
#include <pthread.h>
#include <sys/msg.h>
#include <string.h>
#include <stdlib.h>
//消息包结构体
typedef struct 
{
	long mtype;
	char mtext[128];
}msgbuf;

void* callBack_w(void* arg)
{
	key_t key = *(key_t*)arg;
	//创建消息队列
	int msqid = msgget(key,IPC_CREAT|0664);
	if(msqid < 0)
	{
		perror("msgget");
		return NULL;
	}
	//创建消息包
	msgbuf snd;
	snd.mtype = 2;  //发送类型是1
	while(1)
	{
		printf("B进程输入>>>");
		fgets(snd.mtext,sizeof(snd.mtext),stdin);
		snd.mtext[strlen(snd.mtext)-1] = '\0';
		//发送消息包
		if(msgsnd(msqid,&snd,sizeof(snd.mtext),0) < 0)
		{
			perror("msgsnd");
			return NULL;
		}
		//退出
		if(strcasecmp(snd.mtext,"quit") == 0)
		{
			printf("B程序退出\n");
			exit(0);
		}
	}

}
void* callBack_r(void *arg)
{
	key_t key = *(key_t*)arg;
	//创建消息队列
	int msqid = msgget(key,IPC_CREAT|0664);
	if(msqid < 0)
	{
		perror("msgget");
		return NULL;
	}
	//接收消息包
	msgbuf rcv;
	ssize_t res = 0;
	while(1)
	{
		res = msgrcv(msqid,&rcv,sizeof(rcv.mtext),1,0);
		if(res < 0)
		{
			perror("msgacv");
			return NULL;
		}
		//退出
		if(strcasecmp(rcv.mtext,"quit") == 0)
		{
			msgctl(msqid,IPC_RMID,NULL);
			printf("B程序退出\n");
			exit(0);
		}
		printf("接收到A进程的信息:%s\n",rcv.mtext);
	}
}
int main(int argc, const char *argv[])
{
	printf("B进程\n");
	//计算key
	key_t key = ftok("./",1);
	if(key < 0)
	{
		perror("ftok");
		return -1;
	}
	
	//创建线程
	pthread_t tid1,tid2;
	if(pthread_create(&tid1,NULL,callBack_w,(void*)&key) != 0)
	{
		perror("pthread_create");
		return -1;
	}

	if(pthread_create(&tid2,NULL,callBack_r,(void*)&key) != 0)
	{
		perror("pthread_create");
		return -1;
	}

	pthread_join(tid1,NULL);
	pthread_join(tid2,NULL);

	return 0;
}

 

 

  1. A进程写入一个整型,在该整型后,写入一个字符串

  2. B进程将共享内存中的整型以及字符串读取出来

A进程

#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <string.h>

int main(int argc, const char *argv[])
{
	//计算key
	key_t key = ftok("./",1);
	if(key < 0)
	{
		perror("ftok");
		return -1;
	}
	
	//创建共享内存
	int shmid = shmget(key,128,IPC_CREAT|0664);
	if(shmid < 0)
	{
		perror("shmget");
		return -1;
	}

	//映射
	void* pi;
	pi = shmat(shmid,NULL,0);
	if(pi == (void*)-1)
	{
		perror("shmat");
		return -1;
	}
	printf("输入整形>>>");
	scanf("%d",(int*)pi);
	printf("输入字符串>>>");
	scanf("%s",(char*)((int*)pi+1));

	return 0;
}

B进程

#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <string.h>

int main(int argc, const char *argv[])
{
	//计算key
	key_t key = ftok("./",1);
	if(key < 0)
	{
		perror("ftok");
		return -1;
	}
	
	//创建共享内存
	int shmid = shmget(key,128,IPC_CREAT|0664);
	if(shmid < 0)
	{
		perror("shmget");
		return -1;
	}

	//映射
	void* pi;
	pi = shmat(shmid,NULL,0);
	if(pi == (void*)-1)
	{
		perror("shmat");
		return -1;
	}

	printf("%d\n",*(int*)pi);
	printf("%s\n",(char*)((int*)pi+1));

	return 0;
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值