Linux進程間通信

来源:https://www.cnblogs.com/Tayoou/archive/2023/10/06/17745144.html
-Advertisement-
Play Games

匿名管道pipe 具有親緣關係的兩個進程間通信,半雙工通信,要實現全雙工通信需要創建兩個pipe。 相關係統調用 函數名 作用 fork() 複製一個子進程。 pipe() 創建一個管道。 close() 用於關閉管道讀/寫端。 write() 向管道寫入。 read() 從管道讀出。 實例 #in ...


匿名管道pipe

具有親緣關係的兩個進程間通信,半雙工通信,要實現全雙工通信需要創建兩個pipe。

相關係統調用

函數名 作用
fork() 複製一個子進程。
pipe() 創建一個管道。
close() 用於關閉管道讀/寫端。
write() 向管道寫入。
read() 從管道讀出。

實例

#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>

int main() {
    int result = -1;
    char str[] = "hello,process!";  //要寫入的數據
    char buf[256];  //讀出緩衝區
    int fd[2];  //讀/寫文件描述符
    int *pipe_read = &fd[0];  //管道讀寫指針,便於區分讀寫文件描述符
    int *pipe_write = &fd[1];
    pid_t pid = -1;   //進程號,用於標識子進程與父進程

    result = pipe(fd);  //創建管道
    if(result != 0) {
        printf("open pipe ERROR\n");
        exit(0);
    }
    pid = fork();  //創建子進程
    if(pid == -1) {
        printf("create process ERROR\n");
        exit(0);
    }
    if(pid == 0) {  //子進程
        close(*pipe_read);  //關閉通道讀功能
        write(*pipe_write, str, strlen(str));  //管道寫
        close(*pipe_write);  //寫完關閉文件描述符
    }else {
        close(*pipe_write);
        read(*pipe_read, buf, sizeof(buf));
        close(*pipe_read);
        printf("收到子進程數據:%s", buf);
    }
    return 0;
}

運行結果:

[Running] cd "/home/tayoou/pipe/" && gcc pipe.c -o pipe && "/home/tayoou/pipe/"pipe
收到子進程數據:hello,process!

命名管道fifo

無親緣關係的進程間進行通信,是一種特殊的文件,在文件系統中以文件名的形式存在,數據存儲在記憶體中,命名管道可以在終端創建或程式中創建。

相關函數

函數名 功能
mkfifo() 創建一個命名管道。
open() 打開一個命名管道(文件)。
read() 讀命名管道(文件)。
write() 寫命名管道(文件)。

實例

fifo_write.c

#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>

int main() {
    int result = -1;
    int fifo_fd = -1;  //命名管道文件描述符
    char str[] = "hello fifo!";

    result = mkfifo("myfifo", 0666);  //創建命名管道,讀寫許可權拉滿,由於命名管道不可執行,因此不是0777

    if(result != 0) {
        printf("create mkfifo FAIL\n");
        exit(0);
    }

    fifo_fd = open("myfifo", O_WRONLY); //只寫打開命名管道
    //fifo_fd = open("myfifo", O_WRONLY | O_NONBLOCK); //非阻塞方式寫
    
    if(fifo_fd == -1) {
        printf("open fifo FAIL\n");
        exit(0);
    }
    
    result = write(fifo_fd, str, strlen(str));  //向命名管道寫

    if(result == -1) {
        printf("write fifo FAIL\n");
        exit(0);
    }
    
    printf("write %s to fifo\n", str);
    close(fifo_fd);
    return 0;
}

fifo_read.c

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>

int main() {
    int read_fd = -1;
    int result = -1;
    char buf[256];
    read_fd = open("myfifo", O_RDONLY);  //打開命名管道,只讀

    if(read_fd == -1) {
        printf("open fifo FAIL\n");
        exit(0);
    }
    
    memset(buf, 0, sizeof(buf));  //數組初始化
    result = read(read_fd, buf, sizeof(buf));  //從命名管道讀
    //fifo_fd = open("myfifo", O_WRONLY | O_NONBLOCK); //非阻塞方式讀

    if(result == -1) {
        printf("read fifo FAIL\n");
        exit(0);
    }

    printf("recive %s from fifo\n", buf);
    close(read_fd);
    return 0;
}

運行結果:

tayoou@:~/fifo$ ./fifo_write
write hello fifo! to fifo
tayoou@:~/fifo$ ./fifo_read
recive hello fifo! from fifo

消息隊列MQ

相關函數

函數名 功能
msgget() 創建/獲取消息隊列
msgsnd() 發送消息到消息隊列
msgrcv() 從消息隊列獲取消息
msgctl() 控制消息隊列(包括刪除)

實例

mq_send.c

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

struct mq_send
{
    long type;  //消息類型,用來表示某一類消息
    char data[256];     //消息內容
};

int main() {
    int qid = -1;  //消息隊列ID
    struct mq_send msg;
    int result = -1;
    qid = msgget((key_t)1234, IPC_CREAT | 0666);  //創建消息隊列,用key值來唯一標識一個消息隊列,許可權為0666

    if(qid == -1) {
        printf("creat msgget FAIL\n");
        exit(0);
    }
    while(1) {
        memset(msg.data, 0, sizeof(msg.data));  //初始化數組
        if(fgets(msg.data, sizeof(msg.data), stdin) == NULL) {  //獲取鍵盤輸入
            printf("stdin FAIL\n");
            exit(0);
        }

        msg.type = getpid();  //獲得進程號,此步並非必須,可以設置type為大於0的任意值
        result = msgsnd(qid, &msg, sizeof(msg.data), 0);  //發送data到mq
        if(result == -1) {
            printf("send msg FAIL\n");
            exit(0);
        }

        printf("send msg to mq: %s", msg.data);

        if(strcmp(msg.data, "quit\n") == 0) {  //退出判斷邏輯
            printf("quit SUCCESS\n");
            exit(0);
        }
    }
}

mq_rcv.c

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>

struct mq_rcv
{
    long type;
    char data[256];
};

int main() {
    int qid = -1;
    struct mq_rcv msg;
    int result = -1;
    qid = msgget((key_t)1234, IPC_CREAT | 0666);  //使用相同的消息隊列key值獲取消息隊列ID
    if(qid == -1) {
        printf("creat mq FAIL\n");
        exit(0);
    }

    while(1) {
        result = msgrcv(qid, &msg, sizeof(msg.data), 0, 0);  //從消息隊列獲取消息,第四個0(type)表示不按類型取,直接取mq的第一個消息。第五個0(msgflg)表示使用預設方式(阻塞)獲取消息。
        if(result == -1) {
            printf("read mq FAIL\n");
            exit(0);
        }
        printf("recive data from mq: %s", msg.data);
        if(strcmp(msg.data, "quit\n") == 0) {
            msgctl(qid, IPC_RMID, NULL);  //刪除消息隊列。
            printf("close mq SUCCESS\n");
            break;
        }
    }
    return 0;
}

運行結果:

tayoou@:~/mq$ ./mq_send
test
send msg to mq: test
nihao
send msg to mq: nihao
:)
send msg to mq: :)
quit
send msg to mq: quit
quit SUCCESS
tayoou@:~/mq$ ./mq_rcv
recive data from mq: test
recive data from mq: nihao
recive data from mq: :)
recive data from mq: quit
close mq SUCCESS

進程信號量 system-V

本質是計數器,用於保護臨界資源。不同於全局變數,信號量的P/V是原子操作。區別於線程POSIX信號量。

相關函數

函數名 功能
semget() 創建、獲取信號量集
semop() 進行PV操作
semctl() 管理信號量

示例


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 簡介 SSE 的全稱是 Server Sent Events,即伺服器推送事件。它是一種基於 HTTP 的伺服器到客戶端的單向(半雙工)通信機制,使伺服器能夠主動將實時數據推送給客戶端,而不需要客戶端多次發起請求。 官方文檔:https://developer.mozilla.org/en-US/d ...
  • 跨域問題是指在瀏覽器上運行的Web應用程式試圖通過XMLHttpRequest或Fetch API等方式向不同源(功能變數名稱、協議或埠)的伺服器發送請求時,瀏覽器會根據同源策略(Same-Origin Policy)阻止這種行為。同源策略是一種安全機制,用於限制來自不同源的頁面對當前頁面的訪問。它可以防... ...
  • 信息學 學習/複習 抽簽器(附源碼) 效果圖 以下是源代碼,可自行修改 [C++] //By DijkstraPhoenix #include<bits/stdc++.h> #include<windows.h> using namespace std; vector<string>item; in ...
  • 萬里歸來年愈少 PB編程新思維10.5:外傳2(PowerPlume下一代解決方案) 前言 今天我們就來盤點一下,PB下一代開發的所有技術可能性。所謂下一代開發技術,就是指脫離或半脫離PBVM的應用開發技術,主要指後端。 後端技術彙總 前端PB+JSON 前端PB+BLOB WEB 後端PBVM P ...
  • 我們繼續延申調試事件的話題,實現進程轉存功能,進程轉儲功能是指通過調試API使獲得了目標進程式控制制權的進程,將目標進程的記憶體中的數據完整地轉存到本地磁碟上,對於加殼軟體,通常會通過加密、壓縮等手段來保護其代碼和數據,使其不易被分析。在這種情況下,通過進程轉儲功能,可以將加殼程式的記憶體鏡像完整地保存到本... ...
  • 一、@Valid 註解的作用 @Valid 註解是 javax.validation 包中的一個註解,它可以用來標註需要驗證的數據對象。當一個帶有 @Valid 註解的對象傳遞給 SpringMVC 的控制器方法時,SpringMVC 會自動調用驗證器來驗證這個對象。 二、數據驗證的流程 Sprin ...
  • 在當今互聯網時代,移動應用和網頁應用的發展極大地推動了前後端分離開發模式的興起。傳統的後端渲染方式已經不能滿足用戶對高性能和優質用戶體驗的需求,於是前後端分離逐漸成為了一種主流的開發模式。前後端分離開發模式通過將前端和後端的開發分離,極大地提高了開發效率和團隊協作。前端開發人員專註於用戶界面和交互邏... ...
  • Dart 3.0在語法層面共發佈了3個高級特性,第一個特性Record記錄我們在前面已經學習和探究。今天我們來學習第二個高級類型Pattern模式,由於內容較多,共分2篇文章進行介紹,本文首先介紹模式的概覽和用法,包括匹配、解構、在變數申明、賦值、迴圈、表達式等應用場景…… ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...