在兩個終端里用 gcc 分別編譯運行上面兩個文件,可以看到輸出結果如下:
[$ ./write_fifo ]
I am 7872 process
Send message: Process 7872's time is Mon Jan 16 18:00:23 2023
Send message: Process 7872's time is Mon Jan 16 18:00:24 2023
Send message: Process 7872's time is Mon Jan 16 18:00:25 2023
Send message: Process 7872's time is Mon Jan 16 18:00:26 2023
Send message: Process 7872's time is Mon Jan 16 18:00:27 2023
Send message: Process 7872's time is Mon Jan 16 18:00:28 2023
Send message: Process 7872's time is Mon Jan 16 18:00:29 2023
Send message: Process 7872's time is Mon Jan 16 18:00:30 2023
Send message: Process 7872's time is Mon Jan 16 18:00:31 2023
Send message: Process 7872's time is Mon Jan 16 18:00:32 2023
[$ ./write_fifo ]
I am 7872 process
Send message: Process 7872's time is Mon Jan 16 18:00:23 2023
Send message: Process 7872's time is Mon Jan 16 18:00:24 2023
Send message: Process 7872's time is Mon Jan 16 18:00:25 2023
Send message: Process 7872's time is Mon Jan 16 18:00:26 2023
Send message: Process 7872's time is Mon Jan 16 18:00:27 2023
Send message: Process 7872's time is Mon Jan 16 18:00:28 2023
Send message: Process 7872's time is Mon Jan 16 18:00:29 2023
Send message: Process 7872's time is Mon Jan 16 18:00:30 2023
Send message: Process 7872's time is Mon Jan 16 18:00:31 2023
Send message: Process 7872's time is Mon Jan 16 18:00:32 2023
上面的例子可以擴展成 客戶端進程—服務端進程通信的實例,write_fifo的作用類似于客戶端,可以打開多個客戶端向一個服務器發(fā)送請求信息,read_fifo類似于服務器,它適時監(jiān)控著FIFO的讀端,當有數(shù)據(jù)時,讀出并進行處理,但是有一個關鍵的問題是,每一個客戶端必須預先知道服務器提供的FIFO接口,下圖顯示了這樣的操作:
三、消息隊列
消息隊列,是消息的鏈接表,存放在內(nèi)核中。一個消息隊列由一個標識符(即隊列ID)來標識。
1、特點
- 消息隊列是面向記錄的,其中的消息具有特定的格式以及特定的優(yōu)先級。
- 消息隊列獨立于發(fā)送與接收進程。進程終止時,消息隊列及其內(nèi)容并不會被刪除。
- 消息隊列可以實現(xiàn)消息的隨機查詢,消息不一定要以先進先出的次序讀取,也可以按消息的類型讀取。
2、原型
// 創(chuàng)建或打開消息隊列:成功返回隊列ID,失敗返回-1
intmsgget(key_t key, int flag);
// 添加消息:成功返回0,失敗返回-1
intmsgsnd(int msqid, constvoid ptr, size_t size, int flag);
// 讀取消息:成功返回消息數(shù)據(jù)的長度,失敗返回-1
intmsgrcv(int msqid, void* ptr, size_t size, long type, int flag);
// 控制消息隊列:成功返回0, 失敗返回-1
intmsgctl(int msqid, int cmd, struct msqid_ds * buf);
在以下兩種情況下,msgget將創(chuàng)建一個新的消息隊列:
- 如果沒有與鍵值key相對應的消息隊列,并且flag中包含了
IPC_CREAT
標志位。 - key參數(shù)為IPC_PRIVATE。
函數(shù)msgrcv在讀取消息隊列時,type參數(shù)有下面幾種情況:
- type == 0,返回隊列中的第一個消息;
- type > 0,返回隊列中消息類型為 type 的第一個消息;
- type < 0,返回隊列中消息類型值小于或等于 type 絕對值的消息,如果有多個,則取類型值最小的消息。
可以看出,type值非 0 時用于以非先進先出次序讀消息。也可以把 type 看做優(yōu)先級的權值。(其他的參數(shù)解釋,請自行Google之)
-
Linux
+關注
關注
87文章
11304瀏覽量
209543 -
IPC
+關注
關注
3文章
347瀏覽量
51921 -
進程間通信
+關注
關注
0文章
16瀏覽量
2434
發(fā)布評論請先 登錄
相關推薦
評論