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

php使用goto实现自动重启swoole、reactphp、workerman服务的代码

发布:smiling 来源: PHP粉丝网  添加日期:2022-02-27 10:20:35 浏览: 评论:0 

在平时使用swoole进行开发中,常常遇到这种问题,改了代码之后,手动ctrl+c中断服务,再敲命令重启服务,频繁地重启,感觉心很累。

php提供了inotify扩展,调用linux的inotify系统调用,监控文件的变化.

这时候就产生了一个想法,我开一个主进程监控文件变化,再开一个子进程运行swoole服务,主进程监听到文件变化之后,干掉子进程,然后再开一个子进程运行swoole服务. 子进程如果想优雅地退出,安装个信号处理器,在退出之前做一些操作。

  1. <?php 
  2.  
  3. //index.php 
  4.  
  5. require './vendor/autoload.php'
  6.  
  7. Restart: 
  8.  
  9. $pid = pcntl_fork(); 
  10.  
  11. if ($pid > 0) { 
  12.   $fd = inotify_init(); 
  13.   $watch_descriptor = inotify_add_watch($fd'./src/', IN_MODIFY); 
  14.  
  15.   $events = inotify_read($fd); 
  16.  
  17.   posix_kill($pid, SIGTERM); 
  18.     
  19.   fclose($fd); 
  20.  
  21.   pcntl_wait($status); 
  22.  
  23.   goto Restart; 
  24. elseif ($pid == 0) { 
  25.   \Church\Application::run(); 
  26. else { 
  27.   exit(0); 
  28.  
  29. <?php 
  30. namespace Church; 
  31.  
  32. /** 
  33. use Psr\Http\Message\ServerRequestInterface; 
  34. use React\Http\Response; 
  35. use React\Http\Server; 
  36. **/ 
  37.  
  38. class Application 
  39.   public static function run() 
  40.   { 
  41.   /** 
  42.     $loop = \React\EventLoop\Factory::create(); 
  43.  
  44.     $loop->addSignal(SIGTERM, function() use ($loop) { 
  45.       $loop->stop(); 
  46.     }); 
  47.  
  48.     $server = new Server(function (ServerRequestInterface $request) { 
  49.  
  50.       return new Response( 
  51.         200, 
  52.         array( 
  53.           'Content-Type' => 'text/plain' 
  54.         ), 
  55.         "Hello World1!\n" 
  56.       ); 
  57.     }); 
  58.  
  59.     $socket = new \React\Socket\Server(8080, $loop); 
  60.     $server->listen($socket); 
  61.  
  62.     $loop->run(); 
  63.   **/ 
  64.     //高性能HTTP服务器 
  65.     $http = new \Swoole\Http\Server("127.0.0.1", 9501); 
  66.  
  67.     $http->on("start"function ($server) { 
  68.       echo "Swoole http server is started at http://127.0.0.1:9501\n"
  69.     }); 
  70.  
  71.     $http->on("request"function ($request$response) { 
  72.       $response->header("Content-Type""text/plain"); 
  73.       $response->end("Hello World1\n"); 
  74.     }); 
  75.  
  76.     $http->start(); 
  77.  
  78.   } 

个人觉得这里最优雅的实现方式应该是用GOTO了。

Tags: swoole reactphp workerman

分享到: