当前位置:首页 > PHP教程 > php高级应用 > 列表

如何写php守护进程(Daemon)

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-03 20:01:34 浏览: 评论:0 

守护进程(Daemon)是运行在后台的一种特殊进程。它独立于控制终端并且周期性地执行某种任务或等待处理某些发生的事件。守护进程是一种很有用的进程。php也可以实现守护进程的功能。

一、基本概念

进程: 每个进程都有一个父进程,子进程退出,父进程能得到子进程退出的状态。

进程组:每个进程都属于一个进程组,每个进程组都有一个进程组号,该号等于该进程组组长的PID

二、守护编程要点

1. 在后台运行

为避免挂起控制终端将Daemon放入后台执行。方法是在进程中调用fork使父进程终止,让Daemon在子进程中后台执行。 if($pid=pcntl_fork()) exit(0);//是父进程,结束父进程,子进程继续

2. 脱离控制终端,登录会话和进程组

有必要先介绍一下Linux中的进程与控制终端,登录会话和进程组之间的关系:进程属于一个进程组,进程组号(GID)就是进程组长的进程号(PID)。登录会话可以包含多个进程组。这些进程组共享一个控制终端。这个控制终端通常是创建进程的登录终  端。 控制终端,登录会话和进程组通常是从父进程继承下来的。我们的目的就是要摆脱它们,使之不受它们的影响。方法是在第1点的基础上,调用setsid()使进程成为会话组长: posix_setsid();

说明:当进程是会话组长时setsid()调用失败。但第一点已经保证进程不是会话组长。setsid()调用成功后,进程成为新的会话组长和新的进程组长,并与原来的登录会话和进程组脱离。由于会话过程对控制终端的独占性,进程同时与控制终端脱离。

3. 禁止进程重新打开控制终端

现在,进程已经成为无终端的会话组长。但它可以重新申请打开一个控制终端。可以通过使进程不再成为会话组长来禁止进程重新打开控制终端: if($pid=pcntl_fork()) exit(0);//结束第一子进程,第二子进程继续(第二子进程不再是会话组长)

4. 关闭打开的文件描述符

进程从创建它的父进程那里继承了打开的文件描述符。如不关闭,将会浪费系统资源,造成进程所在的文件系统无法卸下以及引起无法预料的错误。按如下方法关闭它们:

fclose(STDIN),fclose(STDOUT),fclose(STDERR)关闭标准输入输出与错误显示。

5. 改变当前工作目录

进程活动时,其工作目录所在的文件系统不能卸下。一般需要将工作目录改变到根目录。对于需要转储核心,写运行日志的进程将工作目录改变到特定目录如chdir("/")

6. 重设文件创建掩模

进程从创建它的父进程那里继承了文件创建掩模。它可能修改守护进程所创建的文件的存取位。为防止这一点,将文件创建掩模清除:umask(0);

7. 处理SIGCHLD信号

处理SIGCHLD信号并不是必须的。但对于某些进程,特别是服务器进程往往在请求到来时生成子进程处理请求。如果父进程不等待子进程结束,子进程将成为僵尸进程(zombie)从而占用系统资源。如果父进程等待子进程结束,将增加父进程的负担,影  响服务器进程的并发性能。在Linux下可以简单地将SIGCHLD信号的操作设为SIG_IGN。 signal(SIGCHLD,SIG_IGN);

这样,内核在子进程结束时不会产生僵尸进程。这一点与BSD4不同,BSD4下必须显式等待子进程结束才能释放僵尸进程。关于信号的问题请参考Linux 信号说明列表

三、实例

  1. <?php  
  2. * 后台脚本控制类  
  3. */  
  4. class DaemonCommand{  
  5.     
  6.   private $info_dir="/tmp";  
  7.   private $pid_file="";  
  8.   private $terminate=false; //是否中断  
  9.   private $workers_count=0;  
  10.   private $gc_enabled=null;  
  11.   private $workers_max=8; //最多运行8个进程  
  12.     
  13.   public function __construct($is_sington=false,$user='nobody',$output="/dev/null"){  
  14.     
  15.       $this->is_sington=$is_sington//是否单例运行,单例运行会在tmp目录下建立一个唯一的PID  
  16.       $this->user=$user;//设置运行的用户 默认情况下nobody  
  17.       $this->output=$output//设置输出的地方  
  18.       $this->checkPcntl();  
  19.   }  
  20.   //检查环境是否支持pcntl支持  
  21.   public function checkPcntl(){  
  22.     if ( ! function_exists('pcntl_signal_dispatch')) {  
  23.       // PHP < 5.3 uses ticks to handle signals instead of pcntl_signal_dispatch  
  24.       // call sighandler only every 10 ticks  
  25.       declare(ticks = 10);  
  26.     }  
  27.     
  28.     // Make sure PHP has support for pcntl  
  29.     if ( ! function_exists('pcntl_signal')) {  
  30.       $message = 'PHP does not appear to be compiled with the PCNTL extension. This is neccesary for daemonization';  
  31.       $this->_log($message);  
  32.       throw new Exception($message);  
  33.     }  
  34.     //信号处理  
  35.     pcntl_signal(SIGTERM, array(__CLASS__"signalHandler"),false);  
  36.     pcntl_signal(SIGINT, array(__CLASS__"signalHandler"),false);  
  37.     pcntl_signal(SIGQUIT, array(__CLASS__"signalHandler"),false);  
  38.     
  39.     // Enable PHP 5.3 garbage collection  
  40.     if (function_exists('gc_enable'))  
  41.     {  
  42.       gc_enable();  
  43.       $this->gc_enabled = gc_enabled();  
  44.     }  
  45.   }  
  46.     
  47.   // daemon化程序  
  48.   public function daemonize(){  
  49.     
  50.     global $stdin$stdout$stderr;  
  51.     global $argv;  
  52.     
  53.     set_time_limit(0);  
  54.     
  55.     // 只允许在cli下面运行  
  56.     if (php_sapi_name() != "cli"){  
  57.       die("only run in command line mode\n");  
  58.     }  
  59.     
  60.     // 只能单例运行  
  61.     if ($this->is_sington==true){  
  62.     
  63.       $this->pid_file = $this->info_dir . "/" .__CLASS__ . "_" . substr(basename($argv[0]), 0, -4) . ".pid";  
  64.       $this->checkPidfile();  
  65.     }  
  66.     
  67.     umask(0); //把文件掩码清0  
  68.     
  69.     if (pcntl_fork() != 0){ //是父进程,父进程退出  
  70.       exit();  
  71.     }  
  72.     
  73.     posix_setsid();//设置新会话组长,脱离终端  
  74.     
  75.     if (pcntl_fork() != 0){ //是第一子进程,结束第一子进程    
  76.       exit();  
  77.     }  
  78.     
  79.     chdir("/"); //改变工作目录  
  80.     
  81.     $this->setUser($this->user) or die("cannot change owner");  
  82.     
  83.     //关闭打开的文件描述符  
  84.     fclose(STDIN);  
  85.     fclose(STDOUT);  
  86.     fclose(STDERR);  
  87.     
  88.     $stdin = fopen($this->output, 'r');  
  89.     $stdout = fopen($this->output, 'a');  
  90.     $stderr = fopen($this->output, 'a');  
  91.     
  92.     if ($this->is_sington==true){  
  93.       $this->createPidfile();  
  94.     }  
  95.     
  96.   }  
  97.   //--检测pid是否已经存在  
  98.   public function checkPidfile(){  
  99.     
  100.     if (!file_exists($this->pid_file)){  
  101.       return true;  
  102.     }  
  103.     $pid = file_get_contents($this->pid_file);  
  104.     $pid = intval($pid);  
  105.     if ($pid > 0 && posix_kill($pid, 0)){  
  106.       $this->_log("the daemon process is already started");  
  107.     }  
  108.     else {  
  109.       $this->_log("the daemon proces end abnormally, please check pidfile " . $this->pid_file);  
  110.     }  
  111.     exit(1);  
  112.     
  113.   }  
  114.   //----创建pid  
  115.   public function createPidfile(){  
  116.     
  117.     if (!is_dir($this->info_dir)){  
  118.       mkdir($this->info_dir);  
  119.     }  
  120.     $fp = fopen($this->pid_file, 'w'or die("cannot create pid file");  
  121.     fwrite($fp, posix_getpid());  
  122.     fclose($fp);  
  123.     $this->_log("create pid file " . $this->pid_file);  
  124.   }  
  125.     
  126.   //设置运行的用户  
  127.   public function setUser($name){  
  128.     
  129.     $result = false;  
  130.     if (emptyempty($name)){  
  131.       return true;  
  132.     }  
  133.     $user = posix_getpwnam($name);  
  134.     if ($user) {  
  135.       $uid = $user['uid'];  
  136.       $gid = $user['gid'];  
  137.       $result = posix_setuid($uid);  
  138.       posix_setgid($gid);  
  139.     }  
  140.     return $result;  
  141.     
  142.   }  
  143.   //信号处理函数  
  144.   public function signalHandler($signo){  
  145.     
  146.     switch($signo){  
  147.     
  148.       //用户自定义信号  
  149.       case SIGUSR1: //busy  
  150.       if ($this->workers_count < $this->workers_max){  
  151.         $pid = pcntl_fork();  
  152.         if ($pid > 0){  
  153.           $this->workers_count ++;  
  154.         }  
  155.       }  
  156.       break;  
  157.       //子进程结束信号  
  158.       case SIGCHLD:  
  159.         while(($pid=pcntl_waitpid(-1, $status, WNOHANG)) > 0){  
  160.           $this->workers_count --;  
  161.         }  
  162.       break;  
  163.       //中断进程  
  164.       case SIGTERM:  
  165.       case SIGHUP:  
  166.       case SIGQUIT:  
  167.     
  168.         $this->terminate = true;  
  169.       break;  
  170.       default:  
  171.       return false;  
  172.     }  
  173.     
  174.   }  
  175.   /**  
  176.   *开始开启进程  
  177.   *$count 准备开启的进程数  
  178.   */ 
  179.   public function start($count=1){  
  180.     
  181.     $this->_log("daemon process is running now");  
  182.     pcntl_signal(SIGCHLD, array(__CLASS__"signalHandler"),false); // if worker die, minus children num  
  183.     while (true) {  
  184.       if (function_exists('pcntl_signal_dispatch')){  
  185.     
  186.         pcntl_signal_dispatch();  
  187.       }  
  188.     
  189.       if ($this->terminate){  
  190.         break;  
  191.       }  
  192.       $pid=-1;  
  193.       if($this->workers_count<$count){  
  194.     
  195.         $pid=pcntl_fork();  
  196.       }  
  197.     
  198.       if($pid>0){  
  199.     
  200.         $this->workers_count++;  
  201.     
  202.       }elseif($pid==0){  
  203.     
  204.         // 这个符号表示恢复系统对信号的默认处理  
  205.         pcntl_signal(SIGTERM, SIG_DFL);  
  206.         pcntl_signal(SIGCHLD, SIG_DFL);  
  207.         if(!emptyempty($this->jobs)){  
  208.           while($this->jobs['runtime']){  
  209.             if(emptyempty($this->jobs['argv'])){  
  210.               call_user_func($this->jobs['function'],$this->jobs['argv']);  
  211.             }else{  
  212.               call_user_func($this->jobs['function']);  
  213.             }  
  214.             $this->jobs['runtime']--;  
  215.             sleep(2);  
  216.           }  
  217.           exit();  
  218.     
  219.         }  
  220.         return;  
  221.     
  222.       }else{  
  223.     
  224.         sleep(2);  
  225.       }  
  226.     
  227.     
  228.     }  
  229.     
  230.     $this->mainQuit();  
  231.     exit(0);  
  232.     
  233.   }  
  234.     
  235.   //整个进程退出  
  236.   public function mainQuit(){  
  237.     
  238.     if (file_exists($this->pid_file)){  
  239.       unlink($this->pid_file);  
  240.       $this->_log("delete pid file " . $this->pid_file);  
  241.     }  
  242.     $this->_log("daemon process exit now");  
  243.     posix_kill(0, SIGKILL);  
  244.     exit(0);  
  245.   }  
  246.     
  247.   // 添加工作实例,目前只支持单个job工作  
  248.   public function setJobs($jobs=array()){  
  249.     
  250.     if(!isset($jobs['argv'])||emptyempty($jobs['argv'])){  
  251.     
  252.       $jobs['argv']="";  
  253.     
  254.     }  
  255.     if(!isset($jobs['runtime'])||emptyempty($jobs['runtime'])){  
  256.     
  257.       $jobs['runtime']=1;  
  258.     
  259.     }  
  260.     
  261.     if(!isset($jobs['function'])||emptyempty($jobs['function'])){  
  262.     
  263.       $this->log("你必须添加运行的函数!");  
  264.     }  
  265.     
  266.     $this->jobs=$jobs;  
  267.     
  268.   }  
  269.   //日志处理  
  270.   private function _log($message){  
  271.     printf("%s\t%d\t%d\t%s\n"date("c"), posix_getpid(), posix_getppid(), $message);  
  272.   }  
  273.     
  274. }  
  275.     
  276. //调用方法1  
  277. $daemon=new DaemonCommand(true);  
  278. $daemon->daemonize();  
  279. $daemon->start(2);//开启2个子进程工作  
  280. work();  
  281.     
  282.     
  283.     
  284.     
  285. //调用方法2  
  286. $daemon=new DaemonCommand(true);  
  287. $daemon->daemonize();  
  288. $daemon->addJobs(array('function'=>'work','argv'=>'','runtime'=>1000));//function 要运行的函数,argv运行函数的参数,runtime运行的次数  
  289. $daemon->start(2);//开启2个子进程工作  
  290.     
  291. //具体功能的实现  
  292. function work(){  
  293.    echo "测试1";  
  294. }  
  295. ?> 

以上就是关于php守护进程的相关介绍,希望对大家的学习有所帮助。

Tags: php守护进程 Daemon

分享到: