消息发送/接收API

msgsnd函数

int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);

参数

msgid: 由msgget函数返回的消息队列标识码, 也可以是通过ipcs命令查询出来的一个已经存在的消息队列的ID号

msgp:是一个指针,指针指向准备发送的消息,

msgsz:是msgp指向的消息长度, 注意:这个长度不含保存消息类型的那个long int长整型

msgflg:控制着当前消息队列满或到达系统上限时将要发生的事情,如果msgflg = IPC_NOWAIT表示队列满不等待,返回EAGAIN错误。

消息结构在两方面受到制约: (1)它必须小于系统规定的上限值(MSGMAX); (2)它必须以一个long int长整数开始,接收者函数将利用这个长整数确定消息的类型;

//消息结构参考形式如下:
struct msgbuf
{long mtype;       /* message type, must be > 0 */char mtext[1];    /* message data, 可以设定为更多的字节数 */
};
/**示例1:
测试1: 发送消息的最大长度为8192字节, 一旦超过这个值, 则msgsnd出错, 提示 Invalid argument错误;
测试2: 消息队列所能够接收的最大字节数16384字节, 一旦超过这个长度, 如果msgflg为0(阻塞模式), 则进程会一直阻塞下去, 直到有进程来将消息取走; 而如果msgflg为IPC_NOWAIT模式, 则一个字节也不会写入消息队列, 直接出错返回;
**/
int main(int argc, char *argv[])
{if (argc != 3)err_quit("Usage: ./main <type> <length>");int type = atoi(argv[1]);int len = atoi(argv[2]);int msgid = msgget(0x255, 0666|IPC_CREAT);if (msgid == -1)err_exit("msgget error");struct msgbuf *buf;buf = (struct msgbuf *)malloc(len + sizeof(msgbuf::mtype));buf->mtype = type;if (msgsnd(msgid, buf, len, IPC_NOWAIT) == -1)err_exit("msgsnd error");
}

msgrcv函数

ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);

参数

msgid: 由msgget函数返回的消息队列标识码

msgp:是一个指针,指针指向准备接收的消息;

msgsz:是msgp指向的消息长度,这个长度不含保存消息类型的那个long int长整型

msgtype:它可以实现接收优先级的简单形式(见下图)

msgflg:控制着队列中没有相应类型的消息可供接收时将要发生的事(见下图)

返回值:

成功->返回实际放到接收缓冲区里去的字节数(注意: 此处并不包含msgbuf中的mtype的长度[man-page: msgrcv() returns the number of bytes actually copied into the mtext array.]);

失败->返回-1;

msgtyp参数

msgtyp=0

返回队列第一条信息

msgtyp>0

返回队列第一条类型等于msgtype的消息

msgtyp<0

返回队列第一条类型小于等于(<=)msgtype绝对值的消息,并且是满足条件的消息类型最小的消息(按照类型进行排序的顺序进行接收消息)

msgflg参数

msgflg=IPC_NOWAIT

队列没有可读消息不等待,返回ENOMSG错误。

msgflg=MSG_NOERROR

消息大小超过msgsz(msgrcv 函数的第三个参数)时被截断, 并且不会报错

msgtyp>0且msgflg=MSG_EXCEPT

接收类型不等于msgtype的第一条消息

/** 示例2: 消息接收(配合示例1中程序使用)
说明:     -t [number], 指定接收消息的类型, 类型为number的值
-n ,指定以IPC_NOWAIT模式接收消息
**/
int main(int argc, char *argv[])
{/** 解析参数 **/int type = 0;int flag = 0;int opt;while ((opt = getopt(argc, argv, "nt:")) != -1){switch (opt){case 'n':   // 指定IPC_NOWAIT选项flag |= IPC_NOWAIT;break;case 't':   // 指定接收的类型, 如果为0的话,说明是按照顺序接收type = atoi(optarg);break;default:exit(EXIT_FAILURE);}}int msgid = msgget(0x255, 0);if (msgid == -1)err_exit("msgget error");const int MSGMAX = 8192;    //指定一条消息的最大长度struct msgbuf *buf;buf = (struct msgbuf *)malloc(MSGMAX + sizeof(buf->mtype));ssize_t nrcv;if ((nrcv = msgrcv(msgid, buf, MSGMAX, type, flag)) == -1)err_exit("msgrcv error");cout << "recv " << nrcv << " bytes, type = " << buf->mtype << endl;
}
/** 综合示例: msgsnd/msgrcv, 消息发送/接收实践 **/
//1. 消息发送
int main()
{int msgid = msgget(0x1234,0666|IPC_CREAT);if (msgid == -1)err_exit("msgget error");struct msgBuf myBuffer;for (int i = 0; i < 128; ++i){myBuffer.mtype = i+1;sprintf(myBuffer.mtext,"Hello, My number is %d",i+1);if (msgsnd(msgid,&myBuffer,strlen(myBuffer.mtext),IPC_NOWAIT) == -1)err_exit("msgsnd error");}
}
//2. 消息接收:从队首不断的取数据
int main(int argc, char *argv[])
{int msgid = msgget(0x1234, 0);if (msgid == -1)err_exit("msgget error");struct msgBuf buf;ssize_t nrcv;while ((nrcv = msgrcv(msgid, &buf, sizeof(buf.mtext), 0, IPC_NOWAIT)) > 0){cout << "recv " << nrcv << " bytes, type: " << buf.mtype<< ", message: " << buf.mtext << endl;}
}

[附]-getopt函数的用法

#include <unistd.h>
int getopt(int argc, char * const argv[],const char *optstring);extern char *optarg;
extern int optind, opterr, optopt;
//示例: 解析 ./main -n -t 3 中的参数选项
int main(int argc, char *argv[])
{while (true){int opt = getopt(argc, argv, "nt:");if (opt == '?')exit(EXIT_FAILURE);else if (opt == -1)break;switch (opt){case 'n':cout << "-n" << endl;break;case 't':int n = atoi(optarg);cout << "-t " << n << endl;break;}}
}

Linux IPC实践(5) --System V消息队列(2)相关推荐

  1. Linux IPC实践(6) --System V消息队列(3)

    消息队列综合案例 消息队列实现回射客户/服务器 server进程接收时, 指定msgtyp为0, 从队首不断接收消息 server进程发送时, 将mtype指定为接收到的client进程的pid cl ...

  2. Linux IPC实践(4) --System V消息队列(1)

    消息队列概述 消息队列提供了一个从一个进程向另外一个进程发送一块数据的方法(仅局限于本机); 每个数据块都被认为是有一个类型,接收者进程接收的数据块可以有不同的类型值. 消息队列也有管道一样的不足:  ...

  3. Linux进程通信之System V消息队列

    System V消息队列是Open Group定义的XSI,不属于POSIX标准.System V IPC的历史相对很早,在上个世70年代后期有贝尔实验室的分支机构开发,80年代加入System V的 ...

  4. Linux网络编程之System V消息队列

    System V消息队列函数: #include<sys/types.h> #include<sys/ipc.h> #include<sys/msg.h> int ...

  5. Linux IPC实践(13) --System V IPC综合实践

    实践:实现一个先进先出的共享内存shmfifo 使用消息队列即可实现消息的先进先出(FIFO), 但是使用共享内存实现消息的先进先出则更加快速; 我们首先完成C语言版本的shmfifo(基于过程调用) ...

  6. Linux IPC实践(11) --System V信号量(1)

    信号量API #include <sys/types.h> #include <sys/ipc.h> #include <sys/sem.h> int semget ...

  7. Linux IPC实践(9) --System V共享内存

    共享内存API #include <sys/ipc.h> #include <sys/shm.h>int shmget(key_t key, size_t size, int ...

  8. linux网络编程之System V 消息队列(一):消息队列内核结构和msgget、msgctl 函数

    一.消息队列 1.消息队列提供了一个从一个进程向另外一个进程发送一块数据的方法 2.每个数据块都被认为是有一个类型,接收者进程接收的数据块可以有不同的类型值 3.消息队列与管道不同的是,消息队列是基于 ...

  9. Linux IPC实践(12) --System V信号量(2)

    实践1:信号量实现进程互斥 父子进程执行流程如下: 父进程 子进程 P P O(print) X(print) sleep sleep O(print) X(print) V V sleep slee ...

最新文章

  1. panads 访问 csv 数据集
  2. 基于spring boot调用接口的工具类
  3. 系统优化怎么做-Tomcat优化
  4. python爬取csdn排名积分等信息
  5. linux使用flock解决crontab任务冲突
  6. 【题解】洛谷P4145 花神游历各国(线段树)
  7. 使用d3.v3插件绘制出svg图
  8. MATLAB脚本显示滤波器系数
  9. 程序员面试题之解读构造函数
  10. 使用Spring的Property文件存储测试数据 - 初始化
  11. K3路由器官改V2.1D设置定时重启
  12. php计算QQ音乐guid,QQ音乐API分析2017
  13. linux命令mysql启动,linux中mysql启动服务命令
  14. sis forum index.php,SiS001 获取当前服务器的Ip地址
  15. 【DIY】自动鱼缸控制系统——【一】
  16. 转专业2017武汉大学计算机学,武大,10届考生谈谈转专业~`~
  17. 如何解决hao.123.com的挟持网页(篡改网站主页)
  18. 我是如何保护 70000 ETH 并赢得 600 万漏洞赏金的
  19. CPU:别再拿我当搬砖工了!
  20. 火星人敏捷开发手册2012-06-30版发布(新增博客索引4页+火星人产品预告2页)

热门文章

  1. 【C语言笔记初级篇】第七章:结构体相关
  2. 【README2】动态规划之斐波那契数列说明重叠子问题如何解决
  3. windows route netstat arp命令
  4. 657. 机器人能否返回原点
  5. Go语言反射之值反射
  6. Git 几个重要操作指令对比
  7. Windows 上 GitHub Desktop 的操作
  8. Typescript Mixins(混合)
  9. 不插网线终端缓慢的问题解决办法
  10. C#中ref和out的使用小结