IO第九天

 

1.要求实现AB进程对话

A进程先发送一句话给B进程,B进程接收后打印

B进程再回复一句话给A进程,A进程接收后打印

重复1.2步骤,当收到quit后,要结束AB进程

提示:用一个消息队列,两种类型即可

当对方输入quit后,退出AB进程删除消息队列;

A.c

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include <sys/ipc.h>
#include <sys/types.h>
#include <sys/msg.h>
 
struct msgbuf
{
    long mtype;         //消息类型,必须>0
    char mtext[128];     //消息内容
};
 
int main(int argc, const char *argv[])
{
    key_t key = ftok("/home/ubuntu/",1);
    if(key < 0)
    {
        perror("ftok");
        return -1;
    }
    printf("key=%#x\n",key);
 
    //通过key值找到对应的消息队列
    int msqid = msgget(key,IPC_CREAT|0664);
    if(msqid < 0)
    {
        perror("msgget");
        return -1;
    }
 
    printf("msgget success msqid=%d\n",msqid);
    
    struct msgbuf snd;
    while(1)
    {
        printf("1请输入消息类型>>>");
        scanf("%ld",&snd.mtype);
        getchar();             
        if(0 == snd.mtype)     
            break;
 
        printf("1请输入消息内容>>>");
        scanf("%s",snd.mtext);
        getchar();
 
        //发送数据到消息队列中
        if(msgsnd(msqid,&snd,sizeof(snd.mtext),0) < 0)
        {
            perror("msgsnd");
            return -1;
        }
        printf("1发送成功\n");
        
        if(msgrcv(msqid,&snd,sizeof(snd.mtext),2,0) < 0)     //
        {
            perror("msgrcv");
            break;
        }
        
        if(strcmp(snd.mtext,"quit") == 0)
        {
            if(msgctl(msqid,IPC_RMID,NULL) < 0)
            {
                perror("msgctl");
                return -1;
            }
            printf("删除队列成功\n");
        }
        printf("内容:%s\n",snd.mtext);
 
    }
 
    system("ipcs -q");
 
    return 0;
}

B.c

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include <sys/ipc.h>
#include <sys/types.h>
#include <sys/msg.h>
 
struct msgbuf
{
    long mtype;         //消息类型,必须>0
    char mtext[128];     //消息内容
};
 
int main(int argc, const char *argv[])
{
    key_t key = ftok("/home/ubuntu/",1);
    if(key < 0)
    {
        perror("ftok");
        return -1;
    }
    printf("key=%#x\n",key);
 
    //通过key值找到对应的消息队列
    int msqid = msgget(key,IPC_CREAT|0664);
    if(msqid < 0)
    {
        perror("msgget");
        return -1;
    }
 
    printf("msgget success msqid=%d\n",msqid);
    
    struct msgbuf rcv;
    while(1)
    {    
        if(msgrcv(msqid,&rcv,sizeof(rcv.mtext),1,0) < 0)     //
        {
            perror("msgrcv");
            break;
        }
        
        if(strcmp(rcv.mtext,"quit") == 0)
        {
            if(msgctl(msqid,IPC_RMID,NULL) < 0)
            {
                perror("msgctl");
                return -1;
            }
            printf("删除队列成功\n");
            break;
 
        }
        printf("内容:%s\n",rcv.mtext);
        
        printf("2请输入消息类型>>>");
        scanf("%ld",&rcv.mtype);
        getchar();             
        if(0 == rcv.mtype)     
            break;
 
        printf("2请输入消息内容>>>");
        scanf("%s",rcv.mtext);
        getchar();
 
        //发送数据到消息队列中
        if(msgsnd(msqid,&rcv,sizeof(rcv.mtext),0) < 0)
        {
            perror("msgsnd");
            return -1;
        }
        printf("2发送成功\n");
 
    }
 
    system("ipcs -q");
 
    return 0;
}

2.使用共享内存,一个进程打印字符串,另一个进程逆置

b.c

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
 
int main(int argc, const char *argv[])
{
    key_t key = ftok("./",1);
    if(key < 0)
    {
        perror("ftok");
        return -1;
    }

    int shmid = shmget(key,32,IPC_CREAT|0664);
    if(shmid < 0)
    {
        perror("shmget");
        return -1;
    }
 
    
    void* addr = shmat(shmid,NULL,0);
    if((void*)-1 == addr)
    {
        perror("shmat");
        return -1;
    }
 

    char* ptr = (char*)addr+4;
 
    while(1)
    {
        if(*(int *)addr == 1)
        {
            int j=strlen(ptr)-1;
            int i=0;
            while(i<j)
            {
                char temp = *(ptr+i);
                *(ptr+i) = *(ptr+j);
                *(ptr+j) = temp;
                i++;j--;
            }
            *(int *)addr = 0;
        }
    }
    system("ipcs -m");
 
    return 0;
}

a.c

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
 
int main(int argc, const char *argv[])
{
    key_t key = ftok("./",1);
    if(key < 0)
    {
        perror("ftok");
        return -1;
    }
    printf(" key = %#x\n",key);
 

    int shmid = shmget(key,32,IPC_CREAT|0664);
    if(shmid < 0)
    {
        perror("shmget");
        return -1;
    }
    printf("shmid= %d \n",shmid);
 
    
    void* addr = shmat(shmid,NULL,0);
    if((void*)-1 == addr)
    {
        perror("shmat");
        return -1;
    }
    printf("addr = %p\n",addr);
 

    *(int *)addr = 0;
    char* ptr = (char*)addr+4;
    strcpy(ptr,"12345678");
    while(1)
        {     
            if(*(int *)addr == 0)
            {
                printf("%s\n",(char *)addr+4);
                *(int *)addr = 1;
            }
        }
 
    system("ipcs -m");
 
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值