• linux并发服务器 —— 多进程并发 - 进程间的通信及实践(五)


     进程间的通信

    进程是一个独立的资源分配单元,不能在一个进程中直接访问另一个进程的资源;

    进程间通信(IPC)的目的:

    1. 数据传输 - A进程发送数据给B进程

    2. 通知事件 - eg. 进程终止通知父进程

    3. 资源共享 - 多个进程之间共享资源,需要内核提供互斥和同步机制

    4. 进程控制 - 进程控制另一个进程的执行

    匿名管道(管道)

    UNIX系统IPC的最古老形式,所有UNIX系统都支持这种通信机制;

    ls | wc -l : 统计一个目录中的文件数目;| - 管道符

    管道的特点

    1.是一个内核内存中维护的缓冲器,存储能力有限,不同操作系统大小不同;

    2. 匿名管道没有文件实体,有名管道有文件实体(但不存储数据),可以按照操作文件的方式对管道进行操作;

    3. 一个管道是一个字节流,使用管道不存在消息/消息边界的概念;不管写入数据块多大,可以读任意大小的数据块;

    4. 先进先出;

    5. 管道是半双工的,数据传递方向是单向的;

    6. 读数据是一次性操作,读了就没了,并且无法随机访问数据;

    7. 匿名管道只能在有亲缘关系的进程之间进行通信;

    管道的数据结构 - 循环队列

    1. /*
    2. #include
    3. int pipe(int pipefd[2]);
    4. 功能:创建一个匿名管道 用于进程间通信
    5. 参数: 是一个传出参数
    6. pipefd[0] - 管道的读端
    7. pipefd[1] - 管道的写端
    8. 返回值:
    9. 成功 - 0
    10. 失败 - -1
    11. 管道默认是阻塞的,管道中没有数据read阻塞,管道满了write阻塞
    12. */
    13. #include
    14. #include
    15. #include
    16. #include
    17. #include
    18. #include
    19. #include
    20. using namespace std;
    21. // 子进程写 父进程读
    22. int main(){
    23. // fork之前创建管道
    24. int pipefd[2];
    25. int ret = pipe(pipefd);
    26. if(ret == -1){
    27. perror("pipe");
    28. return -1;
    29. }
    30. pid_t pid = fork();
    31. if(pid>0){
    32. cout<<"我是你爹"<
    33. while(1){
    34. char buf[1024];
    35. int len = read(pipefd[0] , buf , sizeof(buf));
    36. cout<<"父进程 "<<getpid()<<"读到了: "<
    37. char str[10] = "hello zz";
    38. write(pipefd[1] , str , sizeof(str));
    39. sleep(2);
    40. }
    41. }
    42. else if(pid == 0){
    43. // 写数据
    44. cout<<"我是你儿子"<
    45. while(1){
    46. char str[10] = "hello 647";
    47. write(pipefd[1] , str , sizeof(str));
    48. sleep(2);
    49. char buf[1024];
    50. int len = read(pipefd[0] , buf , sizeof(buf));
    51. cout<<"子进程 "<<getpid()<<"读到了: "<
    52. }
    53. }
    54. return 0;
    55. }

    查管道大小:

    1. ulimit - a

    2. fpathconf(int fd , int name); name - _PC_PIPE_BUF 获取管道大小

    通过管道实现ps aux

    1. /*
    2. 实现ps aux | grep
    3. 父子进程通信 - 子进程 ps aux,结束后发送给父进程 过滤即可
    4. pipe() - 创建管道
    5. execlp() - 调用ps aux
    6. 将子进程标准输出stdout_fileno重定向到父进程 - 管道写端 dup2
    7. */
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include
    13. #include
    14. #include
    15. using namespace std;
    16. // 子进程写 父进程读
    17. int main(){
    18. int fd[2];
    19. int ret = pipe(fd);
    20. if(ret == -1){
    21. perror("pipe");
    22. exit(0);
    23. }
    24. pid_t pid = fork();
    25. if(pid > 0){
    26. close(fd[1]);
    27. char buf[1024] = {0};
    28. int len = -1;
    29. while((len = read(fd[0] , buf , sizeof(buf) - 1)) > 0){
    30. cout<
    31. memset(buf , 0 , 1024);
    32. }
    33. wait(NULL);
    34. }
    35. else if(pid == 0){
    36. close(fd[0]);
    37. dup2(fd[1] , STDOUT_FILENO);
    38. execlp("ps" , "ps" , "aux" , NULL);
    39. perror("execlp");
    40. exit(0);
    41. }
    42. else{
    43. perror("fork");
    44. exit(0);
    45. }
    46. return 0;
    47. }
    管道的读写特点

    (假设都是阻塞I/O操作)

    1. 所有指向管道的写端描述符都关闭(写端引用计数为0),剩余数据都读完后再read会返回0;

    2. 如果有指向管道写端的文件描述符没有关闭(引用计数>0),但没有写数据,read会阻塞;

    3. 读端都关闭,进程向管道写数据,该进程会收到信号SIGPIPE,通常会导致进程异常终止;

    4. 读端没有完全关闭,而持有管道读端的进程也没从管道读数据,写数据写满了就阻塞;

    设置管道非阻塞

    通过设置文件描述符非阻塞;

    1. // 通过fcntl(fd , F_GETFL)获得状态,再设置可实现管道非阻塞
    2. int flg = fcntl(pipefd[0] , F_GETFL);
    3. flg |= O_NONBLOCK;
    4. int cnt = fcntl(pipefd[0] , F_SETFL , flg);

    有名管道(FIFO文件)

    提供一个路径名与之关联,有文件的实体,以FIFO文件形式存在文件系统中,没有亲缘关系也能通过有名管道实现通信;

    数据结构也是一个环形队列;

    与匿名管道的区别:

    1. FIFO在文件系统中作为特殊文件存在,但文件里没有内容,内容存在内存里的缓冲区;

    2. FIFO退出后,文件会保留;

    3. FIFO有名字,不相关进程可以通信;

    通过mkfifo 名字创建有名管道,创建后可以用open打开,常见文件I/O函数都可以用;

    有名管道的读端写端实践:

    1. /*
    2. 创建fifo文件
    3. 1. 命令 - mkfifo 名字
    4. 2. 函数 - int mkfifo(const char *pathname, mode_t mode);
    5. 参数:
    6. pathname - 管道名称的路径
    7. mode - 权限 和open的一样
    8. 返回值:
    9. 成功 - 0
    10. 失败 - -1 并设置 errno
    11. #include
    12. #include
    13. */
    14. // 向管道写数据
    15. #include
    16. #include
    17. #include
    18. #include
    19. #include
    20. #include
    21. #include
    22. using namespace std;
    23. int main(){
    24. int dec = access("fifo" , F_OK);
    25. if(dec==-1){
    26. cout<<"管道不存在"<
    27. int ret = mkfifo("fifo" , 0664);
    28. if(ret == -1){
    29. perror("mkfifo");
    30. exit(0);
    31. }
    32. }
    33. // 打开管道
    34. int fd = open("fifo" , O_WRONLY);
    35. if(fd == -1){
    36. perror("open");
    37. exit(0);
    38. }
    39. for(int i = 0 ; i<100 ; i++){
    40. char buf[1024];
    41. sprintf(buf , "hello 647 : %d" , i);
    42. cout<
    43. write(fd , buf , sizeof(buf));
    44. sleep(1);
    45. }
    46. close(fd);
    47. return 0;
    48. }
    49. // 向管道读数据
    50. #include
    51. #include
    52. #include
    53. #include
    54. #include
    55. #include
    56. #include
    57. using namespace std;
    58. int main(){
    59. // 打开管道
    60. int fd = open("fifo" , O_RDONLY);
    61. if(fd == -1){
    62. perror("open");
    63. exit(0);
    64. }
    65. while(1){
    66. char buf[1024] = {0};
    67. int len = read(fd , buf , sizeof(buf));
    68. if(len == 0){
    69. cout<<"写端断开"<
    70. break;
    71. }
    72. cout<<"get: "<
    73. }
    74. close(fd);
    75. return 0;
    76. }

    一个为只读而打开一个管道的进程会阻塞,直到有写的权限打开管道,反之同理;

    读管道:

            管道中有数据,read返回实际读到的字节数

            管道无数据

                    写端全关闭,read返回0

                    写端没有全关闭,read阻塞

    写管道:

            读端全关闭,异常终止SIGPIPE

            读端没有全关闭

                    管道满了,阻塞

                     没满,正常写入即可,返回实际写入字节数

    有名管道实现聊天功能
    1. /*
    2. 实现进程A、B的聊天功能
    3. 需要两个管道 一个A读B写 一个B读A写
    4. 进程A:
    5. 1. 只写打开fifo1
    6. 2. 只读打开fifo2
    7. 3. 循环读写数据
    8. while(1){
    9. 获取键盘录入 fgets
    10. write fifo1
    11. read fifo2
    12. }
    13. 进程B与进程A相反即可
    14. while(1){
    15. read fifo1
    16. 获取键盘录入 fgets
    17. write fifo2
    18. }
    19. */
    20. #include
    21. #include
    22. #include
    23. #include
    24. #include
    25. #include
    26. #include
    27. #include
    28. using namespace std;
    29. int main(){
    30. // 判断管道文件是否存在
    31. int ret = access("fifo1" , F_OK);
    32. if(ret == -1){
    33. ret = mkfifo("fifo1" , 0664);
    34. if(ret == -1){
    35. perror("mkfifo");
    36. exit(0);
    37. }
    38. }
    39. ret = access("fifo2" , F_OK);
    40. if(ret == -1){
    41. ret = mkfifo("fifo2" , 0664);
    42. if(ret == -1){
    43. perror("mkfifo");
    44. exit(0);
    45. }
    46. }
    47. // 只写开fifo1
    48. int fdw = open("fifo1" , O_WRONLY);
    49. if(fdw == -1){
    50. perror("open");
    51. exit(0);
    52. }
    53. cout<<"打开fifo1成功..."<<"等待写入..."<
    54. // 只读开fifo2
    55. int fdr = open("fifo2" , O_RDONLY);
    56. if(fdr == -1){
    57. perror("open");
    58. exit(0);
    59. }
    60. cout<<"打开fifo2成功..."<<"等待读取..."<
    61. char buf[128];
    62. // 循环写读
    63. while(1){
    64. memset(buf , 0 , sizeof(buf));
    65. // 获取输入数据
    66. fgets(buf , sizeof(buf) , stdin);
    67. // 写入
    68. ret = write(fdw , buf , strlen(buf));
    69. if(ret == - 1){
    70. perror("write");
    71. exit(0);
    72. }
    73. // 读数据
    74. memset(buf , 0 , sizeof(buf));
    75. ret = read(fdr , buf , sizeof(buf));
    76. if(ret<=0){
    77. perror("read");
    78. exit(0);
    79. }
    80. cout<<"进程A读到数据 - "<
    81. }
    82. close(fdr);
    83. close(fdw);
    84. }
    85. #include
    86. #include
    87. #include
    88. #include
    89. #include
    90. #include
    91. #include
    92. #include
    93. using namespace std;
    94. int main(){
    95. // 判断管道文件是否存在
    96. int ret = access("fifo1" , F_OK);
    97. if(ret == -1){
    98. ret = mkfifo("fifo1" , 0664);
    99. if(ret == -1){
    100. perror("mkfifo");
    101. exit(0);
    102. }
    103. }
    104. ret = access("fifo2" , F_OK);
    105. if(ret == -1){
    106. ret = mkfifo("fifo2" , 0664);
    107. if(ret == -1){
    108. perror("mkfifo");
    109. exit(0);
    110. }
    111. }
    112. // 只读开fifo1
    113. int fdr = open("fifo1" , O_RDONLY);
    114. if(fdr == -1){
    115. perror("open");
    116. exit(0);
    117. }
    118. cout<<"打开fifo1成功..."<<"等待读取..."<
    119. // 只写开fifo2
    120. int fdw = open("fifo2" , O_WRONLY);
    121. if(fdw == -1){
    122. perror("open");
    123. exit(0);
    124. }
    125. cout<<"打开fifo2成功..."<<"等待写入..."<
    126. char buf[128];
    127. // 循环写读
    128. while(1){
    129. // 读数据
    130. memset(buf , 0 , sizeof(buf));
    131. ret = read(fdr , buf , sizeof(buf));
    132. if(ret<=0){
    133. perror("read");
    134. exit(0);
    135. }
    136. cout<<"进程B读到数据 - "<
    137. memset(buf , 0 , sizeof(buf));
    138. // 获取输入数据
    139. fgets(buf , sizeof(buf) , stdin);
    140. // 写入
    141. ret = write(fdw , buf , strlen(buf));
    142. if(ret == - 1){
    143. perror("write");
    144. exit(0);
    145. }
    146. }
    147. close(fdr);
    148. close(fdw);
    149. }

    内存映射

    效率较高的IPC , 直接对内存进行操作;将磁盘文件的数据映射到内存(栈和堆之间的地址空间),通过修改内存来修改磁盘文件;

    通过将磁盘文件映射到两个进程地址空间中实现进程间的通信;

    mmap - 文件映射到内存/munmap -  解除映射

    1. /*
    2. void *mmap(void *addr, size_t length, int prot, int flags,
    3. int fd, off_t offset);
    4. 功能: 映射一个文件到内存中
    5. 参数:
    6. addr - 映射内存的首地址 - NULL 由内核指定
    7. length - 映射的数据的长度 !=0 , 建议文件长度 -> 分页整数倍
    8. 获取文件长度 - stat lseek
    9. prot - 对申请的内存映射区的操作权限
    10. PROT_EXEC - 执行
    11. PROT_READ - 读权限
    12. PROT_WRITE - 写权限
    13. PROT_NONE - 没有权限
    14. 要操作映射内存,必须要有读的权限
    15. PROT_READ、PROT_READ|PROT_WRITE
    16. flags
    17. MAP_SHARED - 映射区的数据自动和磁盘文件同步(进程通信必备)
    18. MAP_PRIVATE - 映射区的数据自动和磁盘文件不同步(copy on write)
    19. fd - 磁盘文件描述符(open获得)
    20. - 文件大小!=0 , open指定权限不能和prot有冲突(open>prot)
    21. offset - 偏移量 必须是4K整数倍 一般不用;0 - 不偏移
    22. 返回值:创建好的内存首地址 , 失败返回MAP_FAILED(void* -1)
    23. int munmap(void *addr, size_t length);
    24. 功能:释放内存映射
    25. 参数:
    26. addr - 释放内存的首地址
    27. length - 要释放的内存大小 和mmap中的length保持一致
    28. */
    29. /*
    30. 使用内存映射实现进程间的通信
    31. 1. 有关系的进程
    32. 没有子进程时,通过父进程创建内存映射区
    33. 父子进程共享创建的内存映射区
    34. 2. 没关系的进程
    35. 准备一个大小不是0的磁盘文件
    36. 进程1 通过磁盘文件创建内存映射 - 得到操作内存指针
    37. 进程2 通过磁盘文件创建内存映射 - 得到操作内存指针
    38. NOTE:内存映射区通信是非阻塞的
    39. */
    40. #include
    41. #include
    42. #include
    43. #include
    44. #include
    45. #include
    46. #include
    47. #include
    48. #include
    49. using namespace std;
    50. int main(){
    51. //1. 打开文件
    52. int fd = open("test.txt" , O_RDWR);
    53. if(fd == -1){
    54. perror("open");
    55. exit(0);
    56. }
    57. // 获取文件大小
    58. int size = lseek(fd , 0 , SEEK_END);
    59. void* ptr = mmap(NULL , size , PROT_READ|PROT_WRITE , MAP_SHARED , fd , 0);
    60. if(ptr == MAP_FAILED){
    61. perror("mmap");
    62. exit(0);
    63. }
    64. // 创建子进程
    65. pid_t pid = fork();
    66. if(pid>0){
    67. strcpy((char*) ptr , "我是你爹");
    68. wait(NULL);
    69. }
    70. else if(pid == 0){
    71. char buf[64];
    72. strcpy(buf , (char*) ptr);
    73. cout<<"子进程读到的数据:"<
    74. }
    75. munmap(ptr , size);
    76. return 0;
    77. }
    NOTE

    1.如果对mmap的返回值(ptr)做++! I(ptr++),munmap是否能够成功?

    可以对ptr进行++操作;

    但munmap需要传递内存的首地址,++后不能正确释放内存;


    2. 如果open时O_RDONLY,mmap时prot参数指定PROT_READ | PROT_WRITE会怎样?

    错误,返回MAP_FAILED

    open函数中的权限建议与prot权限保持一致,大于等于也可;


    3. 如果文件偏移量为1000会怎样?

    文件偏移量必须是4k的整数倍 - 错误 返回MAP_FAILED


    4. mmap什么情况下会调用失败?

            - length = 0

            - prot的权限只指定了写 或 权限大于open

            ..............


    5. 可以open的时候O_CREAT一个新文件来创建映射区吗?

    可以!但是创建的文件大小如果为0则会出错

    可以对新的文件进行拓展 - lseek/truncate


    6. mmap后关闭文件描述符,对mmap映射有没有影响?

    不会产生问题;映射区仍然存在 创建映射区的fd关闭没什么影响


    7. 对ptr越界操作会怎样?

    void* ptr = mmap(NULL , 100 ...)

    4K

    越界操作操作的是非法内存 ——> 段错误

    通过内存映射实现文件拷贝
    1. // 使用内存映射实现拷贝
    2. /*
    3. 思路:
    4. 1. 原始文件进行映射
    5. 2. 创建一个新的文件(通过拓展,保证文件不为0)
    6. 3. 新文件的数据映射到内存
    7. 4. 通过内存拷贝 即可实现
    8. 5. 释放资源
    9. */
    10. #include
    11. #include
    12. #include
    13. #include
    14. #include
    15. #include
    16. #include
    17. #include
    18. #include
    19. using namespace std;
    20. int main(){
    21. // 1.
    22. int fd = open("old.txt" , O_RDWR);
    23. if(fd == -1){
    24. perror("open");
    25. exit(0);
    26. }
    27. int size = lseek(fd , 0 , SEEK_END);
    28. // 2.
    29. int fdn = open("new.txt" , O_RDWR|O_CREAT , 0664);
    30. if(fdn == -1){
    31. perror("open");
    32. exit(0);
    33. }
    34. truncate("new.txt" , size);
    35. write(fdn , " " , 1);
    36. // 3.
    37. void* ptr1 = mmap(NULL , size , PROT_READ | PROT_WRITE , MAP_SHARED , fd , 0);
    38. if(ptr1 == MAP_FAILED){
    39. perror("mmap");
    40. exit(0);
    41. }
    42. void* ptr2 = mmap(NULL , size , PROT_READ | PROT_WRITE , MAP_SHARED , fdn , 0);
    43. if(ptr2 == MAP_FAILED){
    44. perror("mmap");
    45. exit(0);
    46. }
    47. // 4.
    48. memcpy(ptr2 , ptr1 , size);
    49. // 5.
    50. munmap(ptr2 , size);
    51. munmap(ptr1 , size);
    52. close(fdn);
    53. close(fd);
    54. return 0;
    55. }

    匿名映射
    1. /*
    2. 匿名映射:不需要文件实体 只能用在父子进程之间的通信
    3. - flags - MAP_ANONYMOUS fd指定为-1即可 offset为0
    4. */
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include
    13. #include
    14. using namespace std;
    15. int main(){
    16. // 1. 创建匿名内存映射区
    17. int len = 4096;
    18. void* ptr = mmap(NULL , len , PROT_READ | PROT_WRITE , MAP_SHARED | MAP_ANONYMOUS , -1 , 0);
    19. if(ptr == MAP_FAILED){
    20. perror("mmap");
    21. exit(0);
    22. }
    23. // 父子进程间通信
    24. pid_t pid = fork();
    25. if(pid > 0){
    26. strcpy((char*)ptr , "hello 647");
    27. wait(NULL);
    28. }
    29. else if(pid == 0){
    30. sleep(1);
    31. cout<<(char*) ptr<
    32. }
    33. int ret = munmap(ptr , len);
    34. if(ret == -1){
    35. perror("munmap");
    36. exit(0);
    37. }
    38. return 0;
    39. }

    信号概述

    信号是事件发生时对进程的通知机制 , 有时称为软件中断(软件层次上对中断机制的模拟 - 异步通信);

    信号通常源于内核 ,引发内核产生信号的事件:

    1. 前台进程,用户通过输入特殊中断字符发送信号;eg. Ctrl+c

    2. 硬件发生异常

    3. 系统状态发生变化 - alarm定时器到期引起SIGALRM

    4. kill 命令

    信号的特点:

    1. 简单

    2. 不能携带大量信息

    3. 满足某个特定条件才能发送

    4. 优先级较高*

    查看系统定义的信号列表:kill -l;1~31为常规信号 , 其余为预定义好的实时信号

    查看信号的详细信息:man 7 signal

    信号的状态:产生、未决、递达

    kill、raise、abort函数

    Core处理动作会生成Core文件 - 保存进程异常退出的错误信息

    1. #include
    2. #include
    3. int main(){
    4. char* buf;
    5. strcpy(buf , "hello");
    6. return 0;
    7. }

     要生成core文件需要先通过ulimit修改core文件的大小;

    注意这里生成不了core文件可以通过sudo service apport stop关闭错误收集系统;

    进gdb调试后,core-file core即可打印错误信息;

    1. /*
    2. int kill (pid_t pid, int sig);
    3. 功能:给任何进程/进程组pid,发送任何信号sig
    4. 参数:
    5. pid
    6. >0 - 将信号发送给指定进程
    7. 0 - 将信号发送给当前进程组所有进程
    8. -1 - 将信号发送给每一个有权限接收这个信号的进程
    9. <-1 - abs(pid)进程组
    10. sig - 信号编号/宏值,如果为0表示不发送任何信号
    11. kill(getppid() , 9);
    12. int raise (int sig);
    13. 功能:给当前进程发送信号(给自己)
    14. 参数:sig - 要发送的信号
    15. 返回值:
    16. 成功 - 0
    17. 失败 - !0
    18. void abort(void);
    19. 功能:发送SIGABRT给当前进程,杀死当前进程
    20. */
    21. #include
    22. #include
    23. #include
    24. #include
    25. #include
    26. using namespace std;
    27. int main(){
    28. pid_t pid = fork();
    29. if(pid == 0){
    30. int i = 0;
    31. for(i ; i<5 ; i++){
    32. cout<<"子进程"<
    33. sleep(1);
    34. }
    35. }
    36. else if(pid > 0){
    37. cout<<"父进程"<
    38. sleep(2);
    39. cout<<"杀死子进程"<
    40. kill(pid , SIGINT);
    41. }
    42. return 0;
    43. }

    alarm函数(自然定时法 , 与进程状态无关)

    unsigned int alarm(unsigned int seconds);

    1. /*/
    2. #include
    3. unsigned int alarm(unsigned int seconds);
    4. 功能:设置定时器(闹钟),函数调用开始倒计时,不会阻塞
    5. 倒计时为0,给当前进程发SIGALRM
    6. 参数:seconds - 倒计时/s , 参数为0 - 定时器无效
    7. 取消一个定时器 - alarm(0)
    8. 返回值
    9. - 若之前没有定时器返回0
    10. - 之前定时器,倒计时剩余的时间
    11. SIGALRM:默认终止当前进程,某个进程都只有一个唯一定时器;
    12. */
    13. #include
    14. #include
    15. using namespace std;
    16. int main(){
    17. int sec = alarm(5);
    18. cout<<"seconds = "<
    19. sleep(2);
    20. sec = alarm(2);
    21. cout<<"seconds = "<
    22. while(1){
    23. }
    24. return 0;
    25. }

     实际的时间 = 内核时间 + 用户时间 + 消耗的时间(IO...)

    进行文件IO操作比较浪费时间;

    setitimer定时器函数(非阻塞)
    1. /*
    2. #include
    3. int setitimer(int which, const struct itimerval *new_value,
    4. struct itimerval *old_value);
    5. 功能:设置定时器(闹钟) , 替代alarm函数,精度更高 - us
    6. 可以实现周期定时
    7. 参数:
    8. which - 定时器以什么时间计时
    9. ITINER_REAL - 真实事件->SIGALRM
    10. ITIMER_VIRTUAL - 用户时间->SIGVTALRM
    11. ITIMER_PROF - 用户态和内核态下的事件->SIGPROF
    12. new_value - 设置定时器的属性
    13. struct itimerval { // 定时器的结构体
    14. struct timeval it_interval; //Interval for periodic timer 间隔时间
    15. struct timeval it_value; //Time until next expiration 延迟时间
    16. };
    17. struct timeval { // 时间的结构体
    18. time_t tv_sec; //seconds
    19. suseconds_t tv_usec; //microseconds
    20. };
    21. old_value - 记录上一次的时间参数 一般设为NULL 不使用
    22. 返回值:
    23. 成功 - 0
    24. 失败 - -1 并设置errno
    25. */
    26. #include
    27. #include
    28. #include
    29. #include
    30. #include
    31. using namespace std;
    32. // 过3s 每2s定时一次
    33. int main(){
    34. // 设置结构体
    35. struct itimerval new_value;
    36. new_value.it_interval.tv_sec = 2;
    37. new_value.it_interval.tv_usec = 0;
    38. new_value.it_value.tv_sec = 3;
    39. new_value.it_value.tv_usec = 0;
    40. int ret = setitimer(ITIMER_REAL , &new_value , NULL);
    41. if(ret == -1){
    42. perror("setitimer");
    43. exit(0);
    44. }
    45. getchar();
    46. return 0;
    47. }

    捕捉signal信号 - signal/sigaction

    signal会根据不同的UNIX版本而表现不同;sigaction不会,建议使用sigaction

    一定要在定时器设置之前注册信号捕捉!!!

    1. /*
    2. #include
    3. typedef void (*sighandler_t)(int);
    4. sighandler_t signal(int signum, sighandler_t handler);
    5. 功能:设置某个信号的捕捉行为
    6. 参数:
    7. signum - 要捕捉的信号
    8. handler - 捕捉到信号的处理方法
    9. SIG_IGN - 忽略信号
    10. SIG_DFL - 使用信号默认的行为
    11. 回调函数 - 由内核调用 程序员只负责写函数; 捕捉到后如何处理信号
    12. 返回值:
    13. 成功 - 上一次注册的信号处理函数;第一次返回NULL
    14. 失败 - SIG_ERR 并设置errno
    15. SIGKILL SIGSTOP不能被捕捉、忽略、处理
    16. */
    17. #include
    18. #include
    19. #include
    20. #include
    21. #include
    22. #include
    23. using namespace std;
    24. void meet(int num){
    25. // num 表示捕捉到信号的值
    26. cout<<"逮到你了~"<
    27. }
    28. // 过3s 每2s定时一次
    29. int main(){
    30. // 注册信号捕捉
    31. // signal(SIGALRM, SIG_IGN);
    32. // signal(SIGALRM, SIG_DFL);
    33. signal(SIGALRM, meet);
    34. // 设置结构体
    35. struct itimerval new_value;
    36. new_value.it_interval.tv_sec = 2;
    37. new_value.it_interval.tv_usec = 0;
    38. new_value.it_value.tv_sec = 3;
    39. new_value.it_value.tv_usec = 0;
    40. int ret = setitimer(ITIMER_REAL , &new_value , NULL);
    41. if(ret == -1){
    42. perror("setitimer");
    43. exit(0);
    44. }
    45. getchar();
    46. return 0;
    47. }

    信号集

    sigantion涉及到了信号集的概念 - 很多信号组成的集合 , 数据类型 - sigset_t;

    PCB中有两个重要的信号集 - 阻塞信号集和未决信号集;两个信号集都由内核使用位图机制来实现 - 64位;不能直接对两个信号集进行操作,需要自定义另一个集合,借助信号集操作函数来对其进行操作;

    1. /*
    2. 对自定义信号集进行操作
    3. #include
    4. int sigemptyset(sigset_t *set);
    5. 功能 - 清空信号集的数据,标志位置0
    6. 参数 - 需要操作的信号集(传出参数)
    7. 返回值:
    8. 成功 - 0
    9. 失败 - -1 并设置errno
    10. int sigfillset(sigset_t *set);
    11. 功能 - 标志位置1
    12. 参数 - 需要操作的信号集(传出参数)
    13. 返回值:
    14. 成功 - 0
    15. 失败 - -1 并设置errno
    16. int sigaddset(sigset_t *set, int signum);
    17. 功能 - 设置信号集中的某一标志位为1,阻塞该信号
    18. 参数
    19. set - 需要操作的信号集(传出参数)
    20. signum - 需要阻塞的信号
    21. 返回值:
    22. 成功 - 0
    23. 失败 - -1 并设置errno
    24. int sigdelset(sigset_t *set, int signum);
    25. 功能 - 设置信号集中的某一标志位为0,不阻塞该信号
    26. 参数
    27. set - 需要操作的信号集(传出参数)
    28. signum - 需要不阻塞的信号
    29. 返回值:
    30. 成功 - 0
    31. 失败 - -1 并设置errno
    32. int sigismember(const sigset_t *set, int signum);
    33. 功能 - 判断某个信号是否阻塞
    34. 参数
    35. set - 需要操作的信号集
    36. signum - 待判断的信号
    37. 返回值:
    38. 被阻塞 - 1
    39. 没被阻塞 - 0
    40. 错误 - -1
    41. */
    42. #include
    43. #include
    44. #include
    45. #include
    46. #include
    47. #include
    48. using namespace std;
    49. int main(){
    50. sigset_t set;// 创建
    51. //清空
    52. sigemptyset(&set);
    53. int ret = sigismember(&set , SIGINT);
    54. if(ret == 0){
    55. cout<<"SIGINT 不阻塞"<
    56. }
    57. else if(ret == 1){
    58. cout<<"SIGINT 阻塞"<
    59. }
    60. // 添加信号集
    61. sigaddset(&set , SIGINT);
    62. sigaddset(&set , SIGQUIT);
    63. ret = sigismember(&set , SIGINT);
    64. if(ret == 0){
    65. cout<<"SIGINT 不阻塞"<
    66. }
    67. else if(ret == 1){
    68. cout<<"SIGINT 阻塞"<
    69. }
    70. // 信号集删除
    71. sigdelset(&set , SIGQUIT);
    72. ret = sigismember(&set , SIGQUIT);
    73. if(ret == 0){
    74. cout<<"SIGQUIT 不阻塞"<
    75. }
    76. else if(ret == 1){
    77. cout<<"SIGQUIT 阻塞"<
    78. }
    79. return 0;
    80. }

    可以通过sigprocmask对内核中的阻塞信号集进行操作

    1. /*
    2. #include
    3. int sigprocmask(int how, const sigset_t *set, sigset_t *oldset);
    4. 功能:将自定义信号集中的数据设置到内核中
    5. 参数:
    6. how:如何对内核阻塞信号集进行处理
    7. SIG_BLOCK - 将用户设置的阻塞信号集添加到内核中 内核中原来的数据不变(|)
    8. mask |= set
    9. SIG_UNBLOCK - 根据用户设置清除内核中阻塞信号(&)
    10. mask &= ~set
    11. SIG_SETMASK - 覆盖
    12. set - 自定义信号集
    13. oldset - 保存设置之前内存中信号集状态 , 一般NULL
    14. 返回值:
    15. 成功 - 0
    16. 失败 - -1 (两个错误号)
    17. int sigpending(sigset_t *set);
    18. 功能:获取内核中未决信号集
    19. 参数:set - 传出参数
    20. */
    21. // 写一个程序 不断把所有的常规信号的未决状态打印到屏幕(位)
    22. #include
    23. #include
    24. #include
    25. #include
    26. #include
    27. #include
    28. using namespace std;
    29. int main(){
    30. // 设置2、3信号阻塞
    31. sigset_t set;
    32. sigemptyset(&set);
    33. sigaddset(&set , SIGINT);
    34. sigaddset(&set , SIGQUIT);
    35. sigprocmask(SIG_BLOCK , &set , NULL);
    36. while(1){
    37. sigset_t pending_set;
    38. sigemptyset(&pending_set);
    39. sigpending(&pending_set);
    40. //遍历前32位
    41. for(int i = 1 ; i<=32 ; i++){
    42. if(sigismember(&pending_set , i)==1){
    43. cout<<"1";
    44. }
    45. else if(sigismember(&pending_set , i)==0){
    46. cout<<"0";
    47. }
    48. else{
    49. perror("sigismember");
    50. exit(0);
    51. }
    52. }
    53. cout<
    54. }
    55. return 0;
    56. }

    信号捕捉函数 - sigaction

    信号捕捉处理过程中使用临时阻塞信号集,信号处理完后恢复内核中的阻塞信号集;

    信号处理过程中,再发出信号会阻塞,且阻塞的常规信号不支持排队;

    1. /*
    2. #include
    3. int sigaction(int signum, const struct sigaction *act,
    4. struct sigaction *oldact);
    5. 功能:检查/改变信号的处理
    6. 参数:
    7. signum - 需要捕捉的信号编号/宏值
    8. act - 捕捉到信号之后的处理动作
    9. oldact - 上次的相关设置,一般NULL
    10. 返回值:
    11. 成功 - 0
    12. 失败 - -1
    13. struct sigaction {
    14. // 信号捕捉到后的处理函数
    15. void (*sa_handler)(int);
    16. // 不常用
    17. void (*sa_sigaction)(int, siginfo_t *, void *);
    18. // 临时阻塞信号集 信号捕捉函数执行过程中临时阻塞某些信号
    19. sigset_t sa_mask;
    20. // 使用哪个处理捕捉信号 0 - sa_handler/SA_SIGINFO - sa_sigaction
    21. int sa_flags;
    22. // 被废弃掉了 - NULL
    23. void (*sa_restorer)(void);
    24. };
    25. */
    26. #include
    27. #include
    28. #include
    29. #include
    30. #include
    31. #include
    32. using namespace std;
    33. void meet(int num){
    34. // num 表示捕捉到信号的值
    35. cout<<"逮到你了~"<
    36. }
    37. // 过3s 每2s定时一次
    38. int main(){
    39. struct sigaction act;
    40. act.sa_flags = 0;
    41. act.sa_handler = meet;
    42. sigemptyset(&act.sa_mask);
    43. // 注册信号捕捉
    44. sigaction(SIGALRM , &act , NULL);
    45. // 设置结构体
    46. struct itimerval new_value;
    47. new_value.it_interval.tv_sec = 2;
    48. new_value.it_interval.tv_usec = 0;
    49. new_value.it_value.tv_sec = 3;
    50. new_value.it_value.tv_usec = 0;
    51. int ret = setitimer(ITIMER_REAL , &new_value , NULL);
    52. if(ret == -1){
    53. perror("setitimer");
    54. exit(0);
    55. }
    56. while(1){
    57. }
    58. return 0;
    59. }

    SIGCHLD信号

    1. 子进程终止

    2. 子进程接收到SIGSTOP - 暂停

    3. 处于暂停的子进程收到SIGCONT唤醒

    给父进程发送SIGCHLD,父进程默认忽略;

    1. /*
    2. 通过SIGCHLD解决僵尸进程的问题
    3. */
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. using namespace std;
    13. void meet(int num){
    14. while(1){
    15. int ret = waitpid(-1 , NULL , WNOHANG);
    16. if(ret > 0){
    17. cout<<"子进程结束了 - "<
    18. }
    19. else if(ret == 0){
    20. break;
    21. }
    22. else{
    23. break;
    24. }
    25. }
    26. }
    27. int main(){
    28. // 提前设置阻塞信号集 - SIGCHLD
    29. sigset_t set;
    30. sigemptyset(&set);
    31. sigaddset(&set , SIGCHLD);
    32. sigprocmask(SIG_BLOCK , &set , NULL);
    33. pid_t pid;
    34. for(int i = 0 ; i < 5 ; i++){
    35. pid = fork();
    36. if(pid == 0){
    37. break;
    38. }
    39. }
    40. if(pid > 0){
    41. // 捕捉SIGCHLD信号
    42. struct sigaction act;
    43. act.sa_flags = 0;
    44. act.sa_handler = meet;
    45. sigemptyset(&act.sa_mask);
    46. sigaction(SIGCHLD , &act , NULL);
    47. sigprocmask(SIG_UNBLOCK , &set , NULL);
    48. while(1){
    49. cout<<"父进程: "<<getpid()<
    50. sleep(2);
    51. }
    52. }
    53. else if(pid == 0){
    54. cout<<"子进程:"<<getpid()<
    55. }
    56. return 0;
    57. }

    注意:当没有子进程时,waitpid也会返回-1;并不是只有在错误得时候才返回-1;

    共享内存

    共享内存的效率高于内存映射;允许多个进程共享同一物理内存区域,共享内存段为用户空间的一部分,因此共享内存无需内核介入(相比其他IPC通信少);

    与管道等要求发送进程将数据从用户空间的缓冲区复制进内核内存和接收进程将数据从内核内存复制进用户空间的缓冲区的做法相比,这种 IPC 技术的速度更快。

    1. /*
    2. key_t ftok(const char *pathname, int proj_id);
    3. 功能:根据指定路径名和int值生成一个共享内存的key
    4. 参数:
    5. pathname - 路径名
    6. proj_id - int值,但系统调用只是用其中1个字节
    7. 问题1:操作系统如何知道一块共享内存被多少个进程关联?
    8. - 共享内存维护了一个结构体struct shmid_ds 其中有一个成员shm_nattach记录该信息
    9. 可以通过ipcs -a 查所有通信方式信息
    10. ipcs -m 共享内存;ipcrm 删除(标记删除不会释放)
    11. ipcs -q 消息队列
    12. ipcs -s 信号
    13. 问题2:可不可以对共享内存进行多次删除 shmct1
    14. 可以的
    15. 因为shmct1 标记删除共享内存,不是直接删除,当关联进程为0才会被真正删除
    16. 如果一个进程和共享内存取消关联就不能继续操作这个共享内存;
    17. 问题三:共享内存和内存映射的区别
    18. 1. 共享内存可以直接创建,内存映射需要磁盘文件(匿名映射除外)
    19. 2. 共享内存效率更高
    20. 3. 所有进程操作的是统一共享内存,内存映射是每个进程在自己的虚拟地址空间有一块独立内存
    21. 4. 进程突然退出,共享内存还存在,内存映射区会消失,但磁盘文件中的数据还在
    22. 5. 内存映射区:进程退出就销毁
    23. 共享内存:进程退出,需要手动删除(所有关联进程数为0),进程退出会自动和共享内存取消关联
    24. */
    1. // write
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. using namespace std;
    8. int main(){
    9. // 1. 创建
    10. int shmid = shmget(100 , 4096 , IPC_CREAT | 0664);
    11. // 2. 关联
    12. void* ptr = shmat(shmid , NULL , 0);
    13. // 3. 写数据
    14. char* ctr=new char[20];
    15. string str = "hello 647";
    16. strcpy(ctr,str.c_str());
    17. memcpy(ptr , ctr , sizeof(str)+1);
    18. cout<<"按任意键继续"<
    19. getchar();
    20. // 4. 解除关联
    21. shmdt(ptr);
    22. // 5. 删除共享内存
    23. shmctl(shmid , IPC_RMID , NULL);
    24. return 0;
    25. }
    26. // read
    27. #include
    28. #include
    29. #include
    30. #include
    31. #include
    32. using namespace std;
    33. int main(){
    34. // 1. 创建
    35. int shmid = shmget(100 , 0 , IPC_CREAT);
    36. // 2. 关联
    37. void* ptr = shmat(shmid , NULL , 0);
    38. // 3. 读数据
    39. cout<<(char*)ptr<
    40. cout<<"按任意键继续"<
    41. getchar();
    42. // 4. 解除关联
    43. shmdt(ptr);
    44. // 5. 删除共享内存
    45. shmctl(shmid , IPC_RMID , NULL);
    46. return 0;
    47. }

    守护进程

    终端

    UNIX系统,用户通过终端登陆系统得到一个shell进程,这个终端为shell控制终端 - 保存于PCB;

    默认情况下标准输入、标准输出、标准错误都指向控制终端;

    进程组

    进程组是一组相关进程集合,进程组的生命周期从首进程创建组开始,最后一个成员进程退出组结束;

    会话

    会话是一组相关进程组的集合,会话首进程为创建该会话的id,进程Id为会话id;

    一个会话中的所有进程共享单个控制终端,一个终端最多可能会成为一个会话的控制终端;会话首进程为该终端的控制进程;

    在任一时刻,会话中的其中一个进程组会成为终端的前台进程组,其他进程组会成为后台进程组。只有前台进程组中的进程才能从控制终端中读取输入。当用户在控制终端中输入终端字符生成信号后,该信号会被发送到前台进程组中的所有成员。

    守护进程 - 后台服务进程

    生命周期很长,守护进程会在系统启动的时候被创建并一直运行直至系统被关闭。

    它在后台运行并且不拥有控制终端。没有控制终端确保了内核永远不会为守护进程自动生成任何控制信号以及终端相关的信号(如 SIGINT、SIGQUIT)

    创建步骤

    1. fork(),父进程退出 - 确保子进程不是进程组首进程/防止父进程结束后显示shell提示符

    2. setsid() - 脱离控制终端

    3. 清楚进程umask,确保守护进程创建文件、目录所需的权限

    4. 该当前目录为根目录

    5. 关继承的打开的文件描述符

    6. 关闭文件描述符0 1 2后,守护进程打开/dev/null,重定向文件描述符到该设备

    7. 业务逻辑

    1. /*
    2. 写一个守护进程,每隔2s获取系统时间 写入磁盘文件
    3. */
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include
    13. #include
    14. #include
    15. #include
    16. using namespace std;
    17. void work(int num){
    18. time_t tm = time(NULL);
    19. struct tm* loc = localtime(&tm);
    20. // char buf[1024];
    21. // sprintf(buf, "%d-%d-%d %d:%d:%d\n", loc->tm_year, loc->tm_mon, loc->tm_mday, loc->tm_hour, loc->tm_min, loc->tm_sec);
    22. // cout<
    23. char* str = asctime(loc);
    24. int fd = open("time.txt" , O_RDWR|O_CREAT , 0664);
    25. write(fd , str , strlen(str));
    26. }
    27. int main(){
    28. // 创建子进程 - 防止进程组冲突
    29. pid_t pid = fork();
    30. if(pid>0){
    31. exit(0);
    32. }
    33. // 新建会话 - 脱离控制终端
    34. setsid();
    35. // 设置掩码
    36. umask(022);
    37. // 更改工作目录
    38. chdir("/home/nowcoder");
    39. // 关文件描述符
    40. int fd = open("/dev/null" , O_RDWR);
    41. dup2(fd , STDIN_FILENO);
    42. dup2(fd , STDOUT_FILENO);
    43. dup2(fd , STDERR_FILENO);
    44. // 业务逻辑
    45. struct sigaction act;
    46. act.sa_flags = 0;
    47. act.sa_handler = work;
    48. sigemptyset(&act.sa_mask);
    49. sigaction(SIGALRM , &act , NULL);
    50. struct itimerval val;
    51. val.it_interval.tv_sec = 2;
    52. val.it_interval.tv_usec = 0;
    53. val.it_value.tv_sec = 2;
    54. val.it_value.tv_usec = 0;
    55. setitimer(ITIMER_REAL , &val , NULL);
    56. while(1){
    57. sleep(10);
    58. }
    59. return 0;
    60. }

  • 相关阅读:
    【PMSM】二. 经典电流环、速度环设计(下)
    C语言序列化与反序列化--TCL中支持的数据结构(二)
    本文带你了解透彻云计算(前世,今生,未来)
    Linux 之 split 切分大文件 cat 合并多个小文件
    FlinkSQL 窗口聚合
    Python——LeetCode刷题——【36. 有效的数独】(字节二面)
    NTB0101GS1Z 电压电平 移位器 产品概述 特性
    java房屋装修公司业务管理系统
    MySQL高可用搭建方案之(MMM)
    Spring的“一站式解决方案”体现在哪里?
  • 原文地址:https://blog.csdn.net/rygy_/article/details/132567073