Linux下的消息队列的使用

消息队列是一种可以一对多的传输信号的方式


#include<stdio.h>

#include<sys/types.h>
#include<sys/ipc.h>
#include<sys/msg.h>
#include<string.h>
#include<stdlib.h>
struct msgbuf
{
long mtype;
char mtext[1024];
};
int main()
{
char buffer[1024] = {0};
key_t key = ftok(".", 2);                                            //将文件名转化为键值
if (-1 == key)                       
{
perror("key");
}
int msgid = msgget(key, IPC_CREAT);                       //创建消息队列
if (msgid == -1)
{
perror("msgget");
}
while(1)
{
struct msgbuf buf;
scanf("%d %s", &buf.mtype, buf.mtext);

msgsnd(msgid, &buf, sizeof(buf.mtext), 0);                //发送信息给消息队列
memset(buf.mtext, 0, 1024);                                   
}
return 0;

}


-----------------------------------------分割线--------------------------------------------------

#include<stdio.h>
#include<sys/types.h>
#include<sys/ipc.h>
#include<sys/msg.h>
#include<string.h>
#include<stdlib.h>
struct msgbuf
{
long mtype;
char mtext[1024];
};
int main()
{
key_t key = ftok(".", 2);                                            
if (-1 == key)
{
perror("key");
}
int msgid = msgget(key, IPC_CREAT);
if (msgid == -1)
{
perror("msgget");
}
int type;
scanf("%d", &type);


while(1)
{
struct msgbuf buf;
msgrcv(msgid, &buf, sizeof(buf.mtext), type, 0);               //接受信号,其中type为接受的信号编码
printf("rcv = %s\n", buf.mtext);
}
return 0;
}


Linux提供了多种消息队列的实现,其中比较常用的是System V消息队列和POSIX消息队列。 1. System V消息队列 System V消息队列提供了一个进程间通信的方式,它允许一个进程向消息队列中发送消息,同时其他进程可以从该消息队列中读取这些消息。使用System V消息队列需要使用以下函数: - msgget:创建或打开一个消息队列。 - msgsnd:向一个消息队列中发送消息。 - msgrcv:从一个消息队列中读取消息。 - msgctl:控制一个消息队列。 下面是一个示例程序,演示了如何使用System V消息队列进行进程间通信: ``` #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <sys/types.h> #include <sys/ipc.h> #include <sys/msg.h> #define MAX_TEXT 512 struct msgbuf { long mtype; char mtext[MAX_TEXT]; }; int main() { struct msgbuf buf; int msqid; key_t key; if ((key = ftok("msgq.txt", 'B')) == -1) { perror("ftok"); exit(1); } if ((msqid = msgget(key, 0644 | IPC_CREAT)) == -1) { perror("msgget"); exit(1); } printf("Enter lines of text, ^D to quit:\n"); buf.mtype = 1; while(fgets(buf.mtext, MAX_TEXT, stdin) != NULL) { int len = strlen(buf.mtext); if (buf.mtext[len-1] == '\n') { buf.mtext[len-1] = '\0'; } if (msgsnd(msqid, &buf, len+1, 0) == -1) { perror("msgsnd"); } } if (msgctl(msqid, IPC_RMID, NULL) == -1) { perror("msgctl"); exit(1); } return 0; } ``` 2. POSIX消息队列 POSIX消息队列Linux提供的另一种消息队列实现方式,与System V消息队列相比,POSIX消息队列更加灵活和易于使用使用POSIX消息队列需要使用以下函数: - mq_open:创建或打开一个消息队列。 - mq_send:向一个消息队列中发送消息。 - mq_receive:从一个消息队列中读取消息。 - mq_unlink:删除一个消息队列。 下面是一个示例程序,演示了如何使用POSIX消息队列进行进程间通信: ``` #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <fcntl.h> #include <sys/stat.h> #include <mqueue.h> #define MAX_TEXT 512 int main() { mqd_t mqd; struct mq_attr attr; char buffer[MAX_TEXT]; int len; if ((mqd = mq_open("/test", O_CREAT | O_WRONLY, 0644, NULL)) == -1) { perror("mq_open"); exit(1); } printf("Enter lines of text, ^D to quit:\n"); while(fgets(buffer, MAX_TEXT, stdin) != NULL) { len = strlen(buffer); if (buffer[len-1] == '\n') { buffer[len-1] = '\0'; } if (mq_send(mqd, buffer, len+1, 0) == -1) { perror("mq_send"); } } if (mq_close(mqd) == -1) { perror("mq_close"); exit(1); } if (mq_unlink("/test") == -1) { perror("mq_unlink"); exit(1); } return 0; } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值