Skip to content
This repository was archived by the owner on Jan 23, 2019. It is now read-only.

Commit d62ded7

Browse files
committed
update
1 parent 4021549 commit d62ded7

File tree

6 files changed

+328
-219
lines changed

6 files changed

+328
-219
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44
!.gitkeep
55
composer.lock
66
*.swp
7+
*.log
8+
*.pid
79
*.patch
810
.DS_Store

examples/logger.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
/**
3+
* Created by PhpStorm.
4+
* User: inhere
5+
* Date: 2017/5/1
6+
* Time: 下午12:46
7+
*/
8+
9+
require dirname(__DIR__) . '/../../autoload.php';
10+
11+
12+
$lgr = \inhere\library\utils\LiteLogger::make([
13+
'splitType' => 'hour',
14+
'basePath' => __DIR__,
15+
], 'test');
16+
17+
$lgr->trace('a traced message');
18+
$lgr->debug('a debug message', [
19+
'name' => 'value',
20+
]);
21+
$lgr->debug('a debug message');
22+
$lgr->info('a info message');
23+
$lgr->notice('a notice message');
24+
$lgr->warning('a warning message');
25+
$lgr->error('a error message');
26+
$lgr->ex(new \RuntimeException('a exception message'));
27+
28+
$lgr->flush();
29+
30+
print_r($lgr);

src/gearman/ManagerAbstracter.php

+95-25
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,12 @@ abstract class ManagerAbstracter
6767
/**
6868
* @var string
6969
*/
70-
protected $scriptName;
70+
protected $script;
71+
72+
/**
73+
* @var string
74+
*/
75+
protected $command;
7176

7277
/**
7378
* Verbosity level for the running script. Set via -v option
@@ -284,23 +289,20 @@ public function __construct(array $config = [])
284289
{
285290
$this->pid = getmypid();
286291
$this->setConfig($config);
287-
$this->bootstrap();
292+
$this->init();
288293
}
289294

290295
/**
291296
* bootstrap
292297
*/
293-
protected function bootstrap()
298+
protected function init()
294299
{
295300
// checkEnvironment
296301
$this->checkEnvironment();
297302

298303
// parseCliOption
299304
$this->handleCliCommand();
300305

301-
// parseCliOption
302-
$this->parseCliOption();
303-
304306
// $this->debug("Start gearman worker, connection to the gearman server {$host}:{$port}");
305307
}
306308

@@ -311,6 +313,8 @@ public function start()
311313
{
312314
$this->log("Started with pid {$this->pid}, Current script owner: " . get_current_user(), self::LOG_PROC_INFO);
313315

316+
$this->bootstrap();
317+
314318
$this->startWorkers();
315319

316320
$this->beginMonitor();
@@ -322,13 +326,21 @@ protected function handleCliCommand()
322326
{
323327
global $argv;
324328
$tmp = $argv;
325-
$this->scriptName = array_shift($tmp);
329+
$this->script = array_shift($tmp);
330+
331+
// collect command `start`
332+
if (isset($tmp[0]) && $tmp[0]{0} !== '-' && (false === strpos($tmp[0], '='))) {
333+
$this->command = trim($tmp[0]);
334+
} else {
335+
$this->command = 'start';
336+
}
326337

327338
unset($tmp);
328339

329-
$command = $this->getCommand(); // e.g 'start'
340+
$command = $this->command;
330341

331-
$this->checkInputCommand($command);
342+
// parseCliOption
343+
$this->parseCliOption();
332344

333345
$masterPid = $this->getPidFromFile($this->pidFile);
334346
$masterIsStarted = ($masterPid > 0) && @posix_kill($masterPid, 0);
@@ -338,18 +350,15 @@ protected function handleCliCommand()
338350

339351
// check master process is running
340352
if ($masterIsStarted) {
341-
$this->stdout("The worker manager have been started. (PID:{$masterPid})", true, -__LINE__);
353+
$this->stdout("The worker manager has been running. (PID:{$masterPid})", true, -__LINE__);
342354
}
343355

344-
// run as daemon
345-
$this->daemon = (bool)$this->cliIn->boolOpt('d', $this->config->get('swoole.daemonize'));
346-
347356
return $this;
348357
}
349358

350359
// check master process
351360
if (!$masterIsStarted) {
352-
$this->cliOut->error("The swoole server({$this->name}) is not running.", true, -__LINE__);
361+
$this->stdout('The worker manager is not running.', true, -__LINE__);
353362
}
354363

355364
// switch command
@@ -362,17 +371,16 @@ protected function handleCliCommand()
362371
break;
363372

364373
case 'status':
365-
$this->showRuntimeStatus();
374+
// $this->showStatus();
375+
$this->showHelp("The command [{$command}] is un-completed!");
366376
break;
367377

368378
default:
369-
$this->stdout("The command [{$command}] is don't supported!");
370-
$this->showHelpPanel();
379+
$this->showHelp("The command [{$command}] is don't supported!");
371380
break;
372381
}
373382

374383
return $this;
375-
376384
}
377385

378386
/**
@@ -381,6 +389,55 @@ protected function handleCliCommand()
381389
*/
382390
abstract protected function parseCliOption();
383391

392+
/**
393+
* bootstrap start
394+
*/
395+
protected function bootstrap()
396+
{
397+
if ($this->pidFile && !file_put_contents($this->pidFile, $this->pid)) {
398+
$this->showHelp("Unable to write PID to the file {$this->pidFile}");
399+
}
400+
401+
// If we want run as daemon, fork here and exit
402+
if ($this->config['as_daemon']) {
403+
$this->runAsDaemon();
404+
}
405+
406+
if ($logFile = $this->config['log_file']) {
407+
if ($logFile === 'syslog') {
408+
$this->config['log_syslog'] = true;
409+
$this->config['log_file'] = $logFile = '';
410+
} else {
411+
$this->openLogFile();
412+
}
413+
}
414+
415+
if ($username = $this->config['user']) {
416+
$user = posix_getpwnam($username);
417+
418+
if (!$user || !isset($user['uid'])) {
419+
$this->showHelp("User ({$username}) not found.");
420+
}
421+
422+
// Ensure new uid can read/write pid and log files
423+
if ($this->pidFile && !chown($this->pidFile, $user['uid'])) {
424+
$this->log("Unable to chown PID file to {$username}", self::LOG_ERROR);
425+
}
426+
427+
if ($this->logFileHandle && !chown($logFile, $user['uid'])) {
428+
$this->log("Unable to chown log file to {$username}", self::LOG_ERROR);
429+
}
430+
431+
posix_setuid($user['uid']);
432+
433+
if (posix_geteuid() !== (int)$user['uid']) {
434+
$this->showHelp("Unable to change user to {$username} (UID: {$user['uid']}).");
435+
}
436+
437+
$this->log("User set to {$username}", self::LOG_PROC_INFO);
438+
}
439+
}
440+
384441
/**
385442
* Bootstrap a set of workers and any vars that need to be set
386443
*/
@@ -545,7 +602,7 @@ protected function startWorker($jobs = 'all')
545602
break;
546603

547604
default: // at parent
548-
$this->log("Started child $pid (" . implode(',', $jobs) . ')', self::LOG_PROC_INFO);
605+
$this->log("Started child (PID:$pid) (Jobs:" . implode(',', $jobs) . ')', self::LOG_PROC_INFO);
549606
$this->children[$pid] = array(
550607
'jobs' => $jobs,
551608
'start_time' => time(),
@@ -804,7 +861,7 @@ protected function registerSignals($parent = true)
804861
* Handles signals
805862
* @param int $sigNo
806863
*/
807-
public function signal($sigNo)
864+
public function signalHandler($sigNo)
808865
{
809866
static $termCount = 0;
810867

@@ -886,9 +943,17 @@ protected function trigger($name, array $args = [])
886943
/**
887944
* @return string
888945
*/
889-
public function getScriptName()
946+
public function getScript()
890947
{
891-
return $this->scriptName;
948+
return $this->script;
949+
}
950+
951+
/**
952+
* @return string
953+
*/
954+
public function getCommand()
955+
{
956+
return $this->command;
892957
}
893958

894959
/**
@@ -1123,6 +1188,11 @@ public function getJobOpt($name, $key, $default = null)
11231188
/// some help method
11241189
//////////////////////////////////////////////////////////////////////
11251190

1191+
protected function showStatus()
1192+
{
1193+
// todo ...
1194+
}
1195+
11261196
/**
11271197
* Shows the scripts help info with optional error message
11281198
* @param string $msg
@@ -1159,13 +1229,13 @@ protected function logChildStatus($pid, $jobs, $status)
11591229

11601230
switch ($status) {
11611231
case 'killed':
1162-
$message = "Child $pid has been running too long. Forcibly killing process. ($jobStr)";
1232+
$message = "Child (PID:$pid) has been running too long. Forcibly killing process. (Jobs:$jobStr)";
11631233
break;
11641234
case 'exited':
1165-
$message = "Child $pid exited cleanly. ($jobStr)";
1235+
$message = "Child (PID:$pid) exited cleanly. (Jobs:$jobStr)";
11661236
break;
11671237
default:
1168-
$message = "Child $pid died unexpectedly with exit code $status. ($jobStr)";
1238+
$message = "Child (PID:$pid) died unexpectedly with exit code $status. (Jobs:$jobStr)";
11691239
break;
11701240
}
11711241

0 commit comments

Comments
 (0)