PHP多執行緒管道通訊的應用

*文
發布: 2023-03-18 12:42:02
原創
1723 人瀏覽過

本文主要介紹了PHP多線程編程之管道通信,實例分析了管道通信的原理以其使用,希望對大家理解管道通信有所幫助。

一個線程如果是個人英雄主義,那麼多線程就是集體主義,你不再是一個獨行俠,而是一個指揮家。

管道通訊:
1. 管道可以認為是一個佇列,不同的執行緒都可以往裡面寫東西,也都可以從裡面讀東西。寫就是
在佇列末尾添加,讀就是在隊頭刪除。
 
2. 管道一般有大小,預設一般是4K,也就是內容超過4K了,你就只能讀,不能往裡面寫了。
 
3. 預設情況下,管道寫入以後,就會被阻止,直到讀取他的程式讀取把資料讀完。而讀取線程也會被阻止,
   直到有進程寫入資料到管道。當然,你可以改變這樣的預設屬性,用stream_set_block  函數,設定成非阻斷模式。
 
下面是我封裝的一個管道的類別(這個類別命名有問題,沒有統一,沒有時間改成統一的了,我一般先寫測試程式碼,最後封裝,所以命名上可能不統一) :


<?php
class Pipe
{
  public $fifoPath;
  private $w_pipe;
  private $r_pipe;
 
  /**
   * 自动创建一个管道
   *
   * @param string $name 管道名字
   * @param int $mode 管道的权限,默认任何用户组可以读写
   */
  function __construct($name = &#39;pipe&#39;, $mode = 0666)
  {
    $fifoPath = "/tmp/$name." . posix_getpid();
    if (!file_exists($fifoPath)) {
      if (!posix_mkfifo($fifoPath, $mode)) {
        error("create new pipe ($name) error.");
        return false;
      }
    } else {
      error( "pipe ($name) has exit.");
      return false;
    }
    $this->fifoPath = $fifoPath;
  }
///////////////////////////////////////////////////
// 写管道函数开始
///////////////////////////////////////////////////
  function open_write()
  {
    $this->w_pipe = fopen($this->fifoPath, &#39;w&#39;);
    if ($this->w_pipe == NULL) {
      error("open pipe {$this->fifoPath} for write error.");
      return false;
    }
    return true;
  }
 
  function write($data)
  {
    return fwrite($this->w_pipe, $data);
  }
 
  function write_all($data)
  {
    $w_pipe = fopen($this->fifoPath, &#39;w&#39;);
    fwrite($w_pipe, $data);
    fclose($w_pipe);
  }
 
  function close_write()
  {
    return fclose($this->w_pipe);
  }
/////////////////////////////////////////////////////////
/// 读管道相关函数开始
////////////////////////////////////////////////////////
  function open_read()
  {
    $this->r_pipe = fopen($this->fifoPath, &#39;r&#39;);
    if ($this->r_pipe == NULL) {
      error("open pipe {$this->fifoPath} for read error.");
      return false;
    }
    return true;
  }
  function read($byte = 1024)
  {
    return fread($this->r_pipe, $byte);
  }
  function read_all()
  {
    $r_pipe = fopen($this->fifoPath, &#39;r&#39;);
    $data = &#39;&#39;;
    while (!feof($r_pipe)) {
      //echo "read one K\n";
      $data .= fread($r_pipe, 1024);
    }
    fclose($r_pipe);
    return $data;
  }
  function close_read()
  {
    return fclose($this->r_pipe);
  }
  /**
   * 删除管道
   *
   * @return boolean is success
   */
  function rm_pipe()
  {
    return unlink($this->fifoPath);
  }
}
?>
 /*
有了这个类,就可以实现简单的管道通信了。*/
登入後複製

相關推薦:

理解 php 多執行緒的妙用

PHP 多執行緒詳解

#php進程間通訊--有名管道


以上是PHP多執行緒管道通訊的應用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!