目錄
分享PHP守护进程类,分享php守护进程
您可能感兴趣的文章:
首頁 後端開發 php教程 分享PHP守护进程类,分享php守护进程_PHP教程

分享PHP守护进程类,分享php守护进程_PHP教程

Jul 12, 2016 am 09:02 AM
php 守護程式

分享PHP守护进程类,分享php守护进程

用PHP实现的Daemon类。可以在服务器上实现队列或者脱离 crontab 的计划任务。 
使用的时候,继承于这个类,并重写 _doTask 方法,通过 main 初始化执行。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

<&#63;php

  

class Daemon {

  

  const DLOG_TO_CONSOLE = 1;

  const DLOG_NOTICE = 2;

  const DLOG_WARNING = 4;

  const DLOG_ERROR = 8;

  const DLOG_CRITICAL = 16;

  

  const DAPC_PATH = '/tmp/daemon_apc_keys';

  

  /**

   * User ID

   *

   * @var int

   */

  public $userID = 65534; // nobody

  

  /**

   * Group ID

   *

   * @var integer

   */

  public $groupID = 65533; // nobody

  

  /**

   * Terminate daemon when set identity failure &#63;

   *

   * @var bool

   * @since 1.0.3

   */

  public $requireSetIdentity = false;

  

  /**

   * Path to PID file

   *

   * @var string

   * @since 1.0.1

   */

  public $pidFileLocation = '/tmp/daemon.pid';

  

  /**

   * processLocation

   * 进程信息记录目录

   *

   * @var string

   */

  public $processLocation = '';

  

  /**

   * processHeartLocation

   * 进程心跳包文件

   *

   * @var string

   */

  public $processHeartLocation = '';

  

  /**

   * Home path

   *

   * @var string

   * @since 1.0

   */

  public $homePath = '/';

  

  /**

   * Current process ID

   *

   * @var int

   * @since 1.0

   */

  protected $_pid = 0;

  

  /**

   * Is this process a children

   *

   * @var boolean

   * @since 1.0

   */

  protected $_isChildren = false;

  

  /**

   * Is daemon running

   *

   * @var boolean

   * @since 1.0

   */

  protected $_isRunning = false;

  

  /**

   * Constructor

   *

   * @return void

   */

  public function __construct() {

  

    error_reporting(0);

    set_time_limit(0);

    ob_implicit_flush();

  

    register_shutdown_function(array(&$this, 'releaseDaemon'));

  }

  

  /**

   * 启动进程

   *

   * @return bool

   */

  public function main() {

  

    $this->_logMessage('Starting daemon');

  

    if (!$this->_daemonize()) {

      $this->_logMessage('Could not start daemon', self::DLOG_ERROR);

  

      return false;

    }

  

    $this->_logMessage('Running...');

  

    $this->_isRunning = true;

  

    while ($this->_isRunning) {

      $this->_doTask();

    }

  

    return true;

  }

  

  /**

   * 停止进程

   *

   * @return void

   */

  public function stop() {

  

    $this->_logMessage('Stoping daemon');

  

    $this->_isRunning = false;

  }

  

  /**

   * Do task

   *

   * @return void

   */

  protected function _doTask() {

    // override this method

  }

  

  /**

   * _logMessage

   * 记录日志

   *

   * @param string 消息

   * @param integer 级别

   * @return void

   */

  protected function _logMessage($msg, $level = self::DLOG_NOTICE) {

    // override this method

  }

  

  /**

   * Daemonize

   *

   * Several rules or characteristics that most daemons possess:

   * 1) Check is daemon already running

   * 2) Fork child process

   * 3) Sets identity

   * 4) Make current process a session laeder

   * 5) Write process ID to file

   * 6) Change home path

   * 7) umask(0)

   *

   * @access private

   * @since 1.0

   * @return void

   */

  private function _daemonize() {

  

    ob_end_flush();

  

    if ($this->_isDaemonRunning()) {

      // Deamon is already running. Exiting

      return false;

    }

  

    if (!$this->_fork()) {

      // Coudn't fork. Exiting.

      return false;

    }

  

    if (!$this->_setIdentity() && $this->requireSetIdentity) {

      // Required identity set failed. Exiting

      return false;

    }

  

    if (!posix_setsid()) {

      $this->_logMessage('Could not make the current process a session leader', self::DLOG_ERROR);

  

      return false;

    }

  

    if (!$fp = fopen($this->pidFileLocation, 'w')) {

      $this->_logMessage('Could not write to PID file', self::DLOG_ERROR);

      return false;

    } else {

      fputs($fp, $this->_pid);

      fclose($fp);

    }

  

    // 写入监控日志

    $this->writeProcess();

  

    chdir($this->homePath);

    umask(0);

  

    declare(ticks = 1);

  

    pcntl_signal(SIGCHLD, array(&$this, 'sigHandler'));

    pcntl_signal(SIGTERM, array(&$this, 'sigHandler'));

    pcntl_signal(SIGUSR1, array(&$this, 'sigHandler'));

    pcntl_signal(SIGUSR2, array(&$this, 'sigHandler'));

  

    return true;

  }

  

  /**

   * Cheks is daemon already running

   *

   * @return bool

   */

  private function _isDaemonRunning() {

  

    $oldPid = file_get_contents($this->pidFileLocation);

  

    if ($oldPid !== false && posix_kill(trim($oldPid),0))

    {

      $this->_logMessage('Daemon already running with PID: '.$oldPid, (self::DLOG_TO_CONSOLE | self::DLOG_ERROR));

  

      return true;

    }

    else

    {

      return false;

    }

  }

  

  /**

   * Forks process

   *

   * @return bool

   */

  private function _fork() {

  

    $this->_logMessage('Forking...');

  

    $pid = pcntl_fork();

  

    if ($pid == -1) {

      // 出错

      $this->_logMessage('Could not fork', self::DLOG_ERROR);

  

      return false;

    } elseif ($pid) {

      // 父进程

      $this->_logMessage('Killing parent');

  

      exit();

    } else {

      // fork的子进程

      $this->_isChildren = true;

      $this->_pid = posix_getpid();

  

      return true;

    }

  }

  

  /**

   * Sets identity of a daemon and returns result

   *

   * @return bool

   */

  private function _setIdentity() {

  

    if (!posix_setgid($this->groupID) || !posix_setuid($this->userID))

    {

      $this->_logMessage('Could not set identity', self::DLOG_WARNING);

  

      return false;

    }

    else

    {

      return true;

    }

  }

  

  /**

   * Signals handler

   *

   * @access public

   * @since 1.0

   * @return void

   */

  public function sigHandler($sigNo) {

  

    switch ($sigNo)

    {

      case SIGTERM:  // Shutdown

        $this->_logMessage('Shutdown signal');

        exit();

        break;

  

      case SIGCHLD:  // Halt

        $this->_logMessage('Halt signal');

        while (pcntl_waitpid(-1, $status, WNOHANG) > 0);

        break;

      case SIGUSR1:  // User-defined

        $this->_logMessage('User-defined signal 1');

        $this->_sigHandlerUser1();

        break;

      case SIGUSR2:  // User-defined

        $this->_logMessage('User-defined signal 2');

        $this->_sigHandlerUser2();

        break;

    }

  }

  

  /**

   * Signals handler: USR1

   * 主要用于定时清理每个进程里被缓存的域名dns解析记录

   *

   * @return void

   */

  protected function _sigHandlerUser1() {

    apc_clear_cache('user');

  }

  

  /**

   * Signals handler: USR2

   * 用于写入心跳包文件

   *

   * @return void

   */

  protected function _sigHandlerUser2() {

  

    $this->_initProcessLocation();

  

    file_put_contents($this->processHeartLocation, time());

  

    return true;

  }

  

  /**

   * Releases daemon pid file

   * This method is called on exit (destructor like)

   *

   * @return void

   */

  public function releaseDaemon() {

  

    if ($this->_isChildren && is_file($this->pidFileLocation)) {

      $this->_logMessage('Releasing daemon');

  

      unlink($this->pidFileLocation);

    }

  }

  

  /**

   * writeProcess

   * 将当前进程信息写入监控日志,另外的脚本会扫描监控日志的数据发送信号,如果没有响应则重启进程

   *

   * @return void

   */

  public function writeProcess() {

  

    // 初始化 proc

    $this->_initProcessLocation();

  

    $command = trim(implode(' ', $_SERVER['argv']));

  

    // 指定进程的目录

    $processDir = $this->processLocation . '/' . $this->_pid;

    $processCmdFile = $processDir . '/cmd';

    $processPwdFile = $processDir . '/pwd';

  

    // 所有进程所在的目录

    if (!is_dir($this->processLocation)) {

      mkdir($this->processLocation, 0777);

      chmod($processDir, 0777);

    }

  

    // 查询重复的进程记录

    $pDirObject = dir($this->processLocation);

    while ($pDirObject && (($pid = $pDirObject->read()) !== false)) {

      if ($pid == '.' || $pid == '..' || intval($pid) != $pid) {

        continue;

      }

  

      $pDir = $this->processLocation . '/' . $pid;

      $pCmdFile = $pDir . '/cmd';

      $pPwdFile = $pDir . '/pwd';

      $pHeartFile = $pDir . '/heart';

  

      // 根据cmd检查启动相同参数的进程

      if (is_file($pCmdFile) && trim(file_get_contents($pCmdFile)) == $command) {

        unlink($pCmdFile);

        unlink($pPwdFile);

        unlink($pHeartFile);

  

        // 删目录有缓存

        usleep(1000);

  

        rmdir($pDir);

      }

    }

  

    // 新进程目录

    if (!is_dir($processDir)) {

      mkdir($processDir, 0777);

      chmod($processDir, 0777);

    }

  

    // 写入命令参数

    file_put_contents($processCmdFile, $command);

    file_put_contents($processPwdFile, $_SERVER['PWD']);

  

    // 写文件有缓存

    usleep(1000);

  

    return true;

  }

  

  /**

   * _initProcessLocation

   * 初始化

   *

   * @return void

   */

  protected function _initProcessLocation() {

  

    $this->processLocation = ROOT_PATH . '/app/data/proc';

    $this->processHeartLocation = $this->processLocation . '/' . $this->_pid . '/heart';

  }

}

登入後複製

您可能感兴趣的文章:

  • php守护进程 加linux命令nohup实现任务每秒执行一次
  • PHP程序级守护进程的实现与优化的使用概述
  • PHP实现多进程并行操作的详解(可做守护进程)
  • shell脚本作为保证PHP脚本不挂掉的守护进程实例分享
  • PHP高级编程实例:编写守护进程
  • PHP守护进程实例
  • PHP将进程作为守护进程的方法
  • PHP扩展程序实现守护进程
  • 如何写php守护进程(Daemon)

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1086642.htmlTechArticle分享PHP守护进程类,分享php守护进程 用PHP实现的Daemon类。可以在服务器上实现队列或者脱离 crontab 的计划任务。 使用的时候,继承于这个...
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前 By 尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
4 週前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
4 週前 By 尊渡假赌尊渡假赌尊渡假赌

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

CakePHP 專案配置 CakePHP 專案配置 Sep 10, 2024 pm 05:25 PM

在本章中,我們將了解CakePHP中的環境變數、常規配置、資料庫配置和電子郵件配置。

適用於 Ubuntu 和 Debian 的 PHP 8.4 安裝和升級指南 適用於 Ubuntu 和 Debian 的 PHP 8.4 安裝和升級指南 Dec 24, 2024 pm 04:42 PM

PHP 8.4 帶來了多項新功能、安全性改進和效能改進,同時棄用和刪除了大量功能。 本指南介紹如何在 Ubuntu、Debian 或其衍生版本上安裝 PHP 8.4 或升級到 PHP 8.4

CakePHP 日期和時間 CakePHP 日期和時間 Sep 10, 2024 pm 05:27 PM

為了在 cakephp4 中處理日期和時間,我們將使用可用的 FrozenTime 類別。

CakePHP 檔案上傳 CakePHP 檔案上傳 Sep 10, 2024 pm 05:27 PM

為了進行文件上傳,我們將使用表單助理。這是文件上傳的範例。

CakePHP 路由 CakePHP 路由 Sep 10, 2024 pm 05:25 PM

在本章中,我們將學習以下與路由相關的主題?

討論 CakePHP 討論 CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP 是 PHP 的開源框架。它旨在使應用程式的開發、部署和維護變得更加容易。 CakePHP 基於類似 MVC 的架構,功能強大且易於掌握。模型、視圖和控制器 gu

如何設定 Visual Studio Code (VS Code) 進行 PHP 開發 如何設定 Visual Studio Code (VS Code) 進行 PHP 開發 Dec 20, 2024 am 11:31 AM

Visual Studio Code,也稱為 VS Code,是一個免費的原始碼編輯器 - 或整合開發環境 (IDE) - 可用於所有主要作業系統。 VS Code 擁有大量針對多種程式語言的擴展,可以輕鬆編寫

CakePHP 建立驗證器 CakePHP 建立驗證器 Sep 10, 2024 pm 05:26 PM

可以透過在控制器中新增以下兩行來建立驗證器。

See all articles