程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> unix XSI IPC-消息隊列例程

unix XSI IPC-消息隊列例程

編輯:關於C語言

注意事項:

linux2.4.22)限制:

  • 可發送最長消息字節數為8192
  • 隊列最大容量字節數 16384
  • 隊列最大隊列容量數 16

key_t ftok(char* path,int id)使用說明:

  • ftok創建一個鍵,是內核中的隊列在外部的ID號,由於消息隊列處於內核中,只有創建者和內核知道隊列在內核裡面的ID號,這樣其它的進程就無法知道內核裡面隊列ID號,所以要關聯一個外部鍵進行關聯
  • id 1-255)
  • 返回內核消息隊列的ID號

其它的注意就查看一下unix高級環境編程吧,或者有些問題需要討論就回我吧!!


 server.c

  1. #include "msg.h" 
  2. #include <stdio.h> 
  3. #include <string.h> 
  4. #include <stdlib.h> 
  5.  
  6. int main(int argc, char** argv) 
  7.       int queid = open_msg("/root",100); 
  8.        
  9.       while(1) 
  10.       { 
  11.             fputs("請輸入要發送的類型:1 or 2\n", stdout); 
  12.             int type; 
  13.             scanf("%d",&type); 
  14.              
  15.             switch(type) 
  16.             { 
  17.                   case MYTYPE_ONE: 
  18.                        { 
  19.                               msg_send(queid,"MYTYPE_ONE", MYTYPE_ONE); 
  20.                               break; 
  21.                        } 
  22.                   case MYTYPE_TWO: 
  23.                        { 
  24.                               msg_send(queid,"MYTYPE_TWO", MYTYPE_TWO); 
  25.                               break; 
  26.                        } 
  27.                   default: 
  28.                         { 
  29.                               fputs("輸入類型錯誤,請重新輸入\n",stdout); 
  30.                               break; 
  31.                         }                   
  32.              
  33.             } 
  34.              
  35.             fputs("輸入:q 為退出,其它表示繼續\n",stdout); 
  36.             if(getchar() == 'q') 
  37.             { 
  38.                   fputs("退出成功!\n",stdout); 
  39.                   break; 
  40.             } 
  41.             else 
  42.             { 
  43.                   fputs("繼續發送消息\n",stdout); 
  44.             }      
  45.       } 
  46. //不發送退出需要獎隊列移除       
  47.       del_que(queid); 
  48.        
  49.       return 0; 



client.c

  1. #include "msg.h" 
  2. #include <stdio.h> 
  3. #include <string.h> 
  4. #include <stdlib.h> 
  5.  
  6. int main(int argc, char** argv) 
  7.       int queid = open_msg("/root",100); 
  8.        
  9.       while(1) 
  10.       { 
  11.             fputs("請接收要發送的類型:1 or 2\n", stdout); 
  12.             int type; 
  13.             scanf("%d",&type); 
  14.              
  15.             switch(type) 
  16.             { 
  17.                   case MYTYPE_ONE: 
  18.                        { 
  19.                               msg_rec(queid,MYTYPE_ONE); 
  20.                               break; 
  21.                        } 
  22.                   case MYTYPE_TWO: 
  23.                        { 
  24.                               msg_rec(queid,MYTYPE_TWO); 
  25.                               break; 
  26.                        } 
  27.                   default: 
  28.                         { 
  29.                               fputs("輸入類型錯誤,請重新輸入\n",stdout); 
  30.                               break; 
  31.                         }                   
  32.              
  33.             } 
  34.              
  35.             fputs("輸入:q 為退出,其它表示繼續\n",stdout); 
  36.             if(getchar() == 'q') 
  37.             { 
  38.                   fputs("退出成功!\n",stdout); 
  39.                   break; 
  40.             } 
  41.             else 
  42.             { 
  43.                   fputs("繼續發送消息\n",stdout); 
  44.             }      
  45.       } 
  46. //隊列移除       
  47.       del_que(queid); 
  48.        
  49.       return 0; 




msg.c


  1. #include <sys/types.h> 
  2. #include <sys/ipc.h> 
  3. #include <stdio.h> 
  4. #include <stdlib.h> 
  5. #include <sys/ipc.h> 
  6. #include <sys/msg.h> 
  7. #include<string.h> 
  8. #include"msg.h" 
  9.  
  10.  
  11. //如果存在隊列則打開,沒有則創建 
  12. int open_msg(char* path, int id) 
  13.       //獲取IPC對象的一個鍵 
  14.       key_t key = ftok(path, id); 
  15.       if(-1 == key) 
  16.       { 
  17.             perror("ftok\n"); 
  18.             exit(1); 
  19.       } 
  20.       //創建一個隊列 
  21.       int queid = msgget(key, IPC_CREAT|0666); 
  22.       if(-1 == queid) 
  23.       { 
  24.             perror("msgget\n"); 
  25.             exit(1); 
  26.       }  
  27.       return queid; 
  28.  
  29. //發送消息到隊列 
  30. void msg_send(key_t key,char* text, long msgtype) 
  31.       //初始化內容 
  32.       struct MSG tmp; 
  33.       memset(&tmp,sizeof(struct MSG),0); 
  34.       tmp.mytype = msgtype; 
  35.       strcpy(tmp.mytext,text);  
  36.       //發送消息 
  37.       if(msgsnd(key, &tmp, TEXTSIZE, 0)) 
  38.       { 
  39.             perror("msgsnd\n"); 
  40.             exit(1); 
  41.       } 
  42.  
  43. //從消息隊列獲取消息並顯示 
  44. void msg_rec(key_t key,long msgtype) 
  45.       struct MSG tmp; 
  46.       if(-1 == msgrcv(key, &tmp, TEXTSIZE, msgtype, MSG_NOERROR)) 
  47.       { 
  48.             perror("msgrcv\n"); 
  49.             exit(1); 
  50.       } 
  51.       printf("receive content: %s\n",tmp.mytext); 
  52.  
  53. //刪除隊列,即使隊列裡面還有消息也一起刪除 
  54. void del_que(key_t key) 
  55.       if(msgctl(key,IPC_RMID,NULL)) 
  56.       { 
  57.             perror("msgsnd\n"); 
  58.             exit(1);       
  59.       } 



msg.h


  1. #ifndef MSG_H 
  2. #define MSG_H 
  3.  
  4. #include <sys/types.h> 
  5.  
  6. #define TEXTSIZE 100 
  7. #define ARRYSIZE 2 
  8. #define MYTYPE_ONE 1 
  9. #define MYTYPE_TWO 2 
  10.  
  11. struct MSG 
  12.       long mytype; 
  13.       char mytext[TEXTSIZE]; 
  14. }; 
  15.  
  16. int open_msg(char*,int); 
  17. void msg_send(key_t,char*,long); 
  18.  
  19.  
  20. #endif // end MSG_H 

 

本文出自 “在路上” 博客,請務必保留此出處http://642364.blog.51cto.com/632364/1125338

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved