进程间通信

进程的读写

写文件的进程只能单个运行(写的时候禁止读),读文件的进程可以同时有多个,
读写的互斥锁wsem,rsem
读写进程的优先性同级,读进程有优先权时(读的时候拿走写锁),

进程间通信方式

Pipe, fifo, shared memory, mmap, samaphone, socket, mesgq,
有名管道和无名管道
共享文件
共享内存
消息队列
内存映射
socket监听套接字
信号量

管道

管道通信详解
管道为单向, Pipe,上级进程创建,无名管道通信
pipe, pipe2 - create pipe

   #include 
   int pipe(int pipefd[2]);
   #define _GNU_SOURCE             /* See feature_test_macros(7) */
   #include               /* Obtain O_* constant definitions */
   #include 
   int pipe2(int pipefd[2], int flags);
  return -1 为失败

管道通信函数例

// ./named-pipe-chat  发送消息
#include 
#include 
#include 
#include 
#include 

// 用户名的最大长度
#define USER_NAME_MAX_LEN 100
// 发送消息文本的最大长度
#define MSG_MAX_LEN 500
// 文件名的最大长度
#define FILE_NAME_MAX_LEN 100

// 聊天消息结构体类型
struct msg_node 
{
    // 发送消息用户名
    char src_username[USER_NAME_MAX_LEN];
    // 接收消息用户名
    char dst_username[USER_NAME_MAX_LEN];
    // 消息文本
    char text[MSG_MAX_LEN];
};

int main(int argc, char *argv[])
{
    // 判断命令行参数是否满足条件
    if(argc != 2)
    {
        printf("usage : %s \n", argv[0]);
        return 1;
    }

    // 子进程ID
    pid_t child_pid;
    // 登陆用户的命令管道文件名
    char filename[FILE_NAME_MAX_LEN] = {'\0'};

    // 构造登陆用命名的管道文件名,并判定用户是否存在
    sprintf(filename, "%s.fifo", argv[1]);
    if(access(filename, F_OK) != 0)//判断用户名文件是否存在,存在返回0
    {
        mkfifo(filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
    }

    // 创建子进程
    if((child_pid = fork()) == 0)       // 子进程中执行的代码,子进程负责接收其他用户发送的消息并打印显示
    {
        int n = 0;
        struct msg_node msg;
        int fd = 0;
        
        // 1.打开登陆用户的管道文件,用于接收其他用户发送的消息数据结构体
        if((fd = open(filename, O_RDONLY)) == -1)
        {
            perror("open failed");
            return 1;
        }
        // 2.循环的从管道文件中读入消息信息,并打印显示
        while( (n = read(fd, &msg, sizeof(msg)) ) > 0)
        {
            printf( "%s ----> %s : %s\n",
            msg.src_username, msg.dst_username, msg.text);
        }
        close(fd);
    }
    else  if(child_pid > 0)          // 父进程,负责从键盘读入相关数据,写入执行用户的管道文件
    {
        struct msg_node msg ;
        int fd = 0;
        // 接收用户的管道文件名
        char dst_filename[FILE_NAME_MAX_LEN] = {'\0'};
                   
        // 发送者永远为当前登录用户
        strcpy(msg.src_username, argv[1]);
        
            // 1.输入接收消息的用户名名称
            printf("to>");
            fgets(&msg.dst_username, USER_NAME_MAX_LEN, stdin);
            // 1.1将用户名末尾的'\n'替换为'\0'
            msg.dst_username[strlen(msg.dst_username)-1] = '\0';
            // 1.2构造接收用户的管道文件名
            sprintf(dst_filename, "%s.fifo", msg.dst_username) ;
            // 1.3打开管道文件
            if((fd = open(dst_filename, O_WRONLY)) == -1)
            {
                perror("open failed");
                return 1;
            } 
      // 循环的发送从键盘读入的数据
        while(1)
        {
            // 2.输入待发送的消息字符串
            printf("text>");
            fgets(&msg.text, MSG_MAX_LEN, stdin);
            // 2.2将消息文本末尾的'\n'替换为'\0'
            msg.text[strlen(msg.text)-1] = '\0';
            
            // 3.将构造的消息结构体写入管道文件
                
                
            // 3.2将构造的结构体写入管道文件
            write(fd, &msg, sizeof(msg));
            // 3.3close
        }
       close(fd);
    }
    else
    {
    }
    
    // 删除登陆用户的管道文件
    remove(filename);

    return 0;
}

有名管道通信

mkfifo
mkfifo - make a FIFO special file (a named pipe)
#include
#include
int mkfifo(const char *pathname, mode_t mode);
return 成功返回0,失败返回1

有名管道--写信息
#include 
#include 
#include 
#include 
#include 

int main(int argc, char *argv[])
{
    int n = 0;
    char buf[1024] = {'\0'};
    int fd = 0;

    // 判断有名管道文件是否存在,不存在则创建
    if(access("test_file.fifo", F_OK) != 0 )
    {
        mkfifo("test_file.fifo", 
            S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
    }
    // 1.打开管道文件
    if((fd = open("test_file.fifo", O_WRONLY)) == -1)
    {
        perror("open failed");
        return 1;
    }

    printf("waiting for input data...\n");
    while(1)
    {
        // 2.从标准输入文件中读入数据
        n = read(STDIN_FILENO, buf, 1024);
        // 3.将读到的数据写入到管道文件中
        write(fd, buf, n);
    }
    
    printf("writer process exit...\n");
    
    return 0;
}
有名管道--读取信息
#include 
#include 
#include 
#include 
#include 

int main(int argc, char *argv[])
{
    int n = 0;
    char buf[1024] = {'\0'};
    int fd = 0;
    
       
    // 1.打开管道文件
    fd = open("test_file.fifo", O_RDONLY);
    if(fd == -1)
    {
        perror("open failed");
        return 1;
    }
    
    printf("reading for writer data...\n");
    // 2.从管道文件中读取数据
    while((n = read(fd, buf, 1024)) > 0)
    {
        // 3.将读到的数据写入到标准输出文件中
        write(STDOUT_FILENO, buf, n);
    }
    
    printf("reader process exit...\n");
    
    return 0;
} 
互斥锁,线程间通信的函数例
#include
#include
#include
//有限资源的使用中,避免死锁。
//哲学家吃饭问题,有五只筷子,五个人,每人用二只,不允许冲突。

#define N 5
sem_t kuaizis[N];
sem_t room;

void *phi_thread_func(void *arg);

int main ()
{
    int i =0;
    pthread_t thread_ids[N];
    sem_init(&room,0,4);
    for(i=0;i

你可能感兴趣的:(进程间通信)