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

来源:互联网 发布:java停顿用法 编辑:程序博客网 时间:2024/05/16 05:12

消息队列综合案例

消息队列实现回射客户/服务器

 

server进程接收时指定msgtyp0, 从队首不断接收消息

server进程发送时, 将mtype指定为接收到的client进程的pid

 

client进程发送的时候, mtype指定为自己进程的pid

client进程接收时, 需要将msgtyp指定为自己进程的pid, 只接收消息类型为自己pid的消息;

[cpp] view plaincopy在CODE上查看代码片派生到我的代码片
  1. // client/server进程接收/发送的数据结构  
  2. const int MSGMAX = 8192;  
  3. struct msgBuf  
  4. {  
  5.     long mtype;         //保存客户进程的pid(需要将pid强制转换成为long)  
  6.     char mtext[MSGMAX]; //保存客户进程真实发送的数据  
  7. };  
[cpp] view plaincopy在CODE上查看代码片派生到我的代码片
  1. //server.cpp  
  2. void echoServer(int msgid)  
  3. {  
  4.     struct msgBuf buf;  
  5.     int nrcv;  
  6.     while (true)  
  7.     {  
  8.         bzero(&buf, sizeof(buf));  
  9.         if ((nrcv = msgrcv(msgid, &buf, sizeof(buf.mtext), 0, 0)) == -1)  
  10.             err_exit("msgrcv error");  
  11.         cout << "recv: " << buf.mtext;  
  12.         if (msgsnd(msgid, &buf, strlen(buf.mtext), 0) == -1)  
  13.             err_exit("msgsnd error");  
  14.     }  
  15. }  
  16.   
  17. int main()  
  18. {  
  19.     key_t key = ftok("/tmp/echoSeed", 0x1234);  
  20.     int msgid = msgget(key, IPC_CREAT|0666);  
  21.     if (msgid == -1)  
  22.         err_exit("msgget error");  
  23.   
  24.     echoServer(msgid);  
  25. }  
[cpp] view plaincopy在CODE上查看代码片派生到我的代码片
  1. //client.cpp  
  2. void echoServer(int msgid)  
  3. {  
  4.     struct msgBuf buf;  
  5.     int nrcv;  
  6.     while (true)  
  7.     {  
  8.         bzero(&buf, sizeof(buf));  
  9.         if ((nrcv = msgrcv(msgid, &buf, sizeof(buf.mtext), 0, 0)) == -1)  
  10.             err_exit("msgrcv error");  
  11.         cout << "recv: " << buf.mtext;  
  12.         if (msgsnd(msgid, &buf, strlen(buf.mtext), 0) == -1)  
  13.             err_exit("msgsnd error");  
  14.     }  
  15. }  
  16.   
  17. int main()  
  18. {  
  19.     key_t key = ftok("/tmp/echoSeed", 0x1234);  
  20.     int msgid = msgget(key, IPC_CREAT|0666);  
  21.     if (msgid == -1)  
  22.         err_exit("msgget error");  
  23.   
  24.     echoServer(msgid);  
  25. }  

附-ftok用法

[cpp] view plaincopy在CODE上查看代码片派生到我的代码片
  1. #include <sys/types.h>  
  2. #include <sys/ipc.h>  
  3. key_t ftok(const char *pathname, int proj_id);  

描述信息:

   The ftok() function uses the identity(象征) of the file named by the given pathname (which must refer 

to an existing, accessible file[必须是一个已经存在,并且可访问的文件]) and the least significant(有效的) 8 bits[有效的最低8位] of proj_id (which must  be  nonzero)  to  generate  a  key_t  type  System V IPC key, suitable 

for use with msgget(2), semget(2), or shmget(2).   The resulting value is the same for all pathnames that name the same file, when the  same value  of  proj_id  

is used(如果文件名与proj_id的有效位全都相同的话, 则生成的key一定也是相同的).  The value returned should be different when 

the (simultaneously existing) files or the project IDs differ.

 

RETURN VALUE   On success, the generated key_t value is returned.  On failure -1 is returned, 

with errno indicating the error as for the stat(2) system call.

0 0
原创粉丝点击