@@ -67,7 +67,12 @@ abstract class ManagerAbstracter
67
67
/**
68
68
* @var string
69
69
*/
70
- protected $ scriptName ;
70
+ protected $ script ;
71
+
72
+ /**
73
+ * @var string
74
+ */
75
+ protected $ command ;
71
76
72
77
/**
73
78
* Verbosity level for the running script. Set via -v option
@@ -284,23 +289,20 @@ public function __construct(array $config = [])
284
289
{
285
290
$ this ->pid = getmypid ();
286
291
$ this ->setConfig ($ config );
287
- $ this ->bootstrap ();
292
+ $ this ->init ();
288
293
}
289
294
290
295
/**
291
296
* bootstrap
292
297
*/
293
- protected function bootstrap ()
298
+ protected function init ()
294
299
{
295
300
// checkEnvironment
296
301
$ this ->checkEnvironment ();
297
302
298
303
// parseCliOption
299
304
$ this ->handleCliCommand ();
300
305
301
- // parseCliOption
302
- $ this ->parseCliOption ();
303
-
304
306
// $this->debug("Start gearman worker, connection to the gearman server {$host}:{$port}");
305
307
}
306
308
@@ -311,6 +313,8 @@ public function start()
311
313
{
312
314
$ this ->log ("Started with pid {$ this ->pid }, Current script owner: " . get_current_user (), self ::LOG_PROC_INFO );
313
315
316
+ $ this ->bootstrap ();
317
+
314
318
$ this ->startWorkers ();
315
319
316
320
$ this ->beginMonitor ();
@@ -322,13 +326,21 @@ protected function handleCliCommand()
322
326
{
323
327
global $ argv ;
324
328
$ 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
+ }
326
337
327
338
unset($ tmp );
328
339
329
- $ command = $ this ->getCommand (); // e.g 'start'
340
+ $ command = $ this ->command ;
330
341
331
- $ this ->checkInputCommand ($ command );
342
+ // parseCliOption
343
+ $ this ->parseCliOption ();
332
344
333
345
$ masterPid = $ this ->getPidFromFile ($ this ->pidFile );
334
346
$ masterIsStarted = ($ masterPid > 0 ) && @posix_kill ($ masterPid , 0 );
@@ -338,18 +350,15 @@ protected function handleCliCommand()
338
350
339
351
// check master process is running
340
352
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__ );
342
354
}
343
355
344
- // run as daemon
345
- $ this ->daemon = (bool )$ this ->cliIn ->boolOpt ('d ' , $ this ->config ->get ('swoole.daemonize ' ));
346
-
347
356
return $ this ;
348
357
}
349
358
350
359
// check master process
351
360
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__ );
353
362
}
354
363
355
364
// switch command
@@ -362,17 +371,16 @@ protected function handleCliCommand()
362
371
break ;
363
372
364
373
case 'status ' :
365
- $ this ->showRuntimeStatus ();
374
+ // $this->showStatus();
375
+ $ this ->showHelp ("The command [ {$ command }] is un-completed! " );
366
376
break ;
367
377
368
378
default :
369
- $ this ->stdout ("The command [ {$ command }] is don't supported! " );
370
- $ this ->showHelpPanel ();
379
+ $ this ->showHelp ("The command [ {$ command }] is don't supported! " );
371
380
break ;
372
381
}
373
382
374
383
return $ this ;
375
-
376
384
}
377
385
378
386
/**
@@ -381,6 +389,55 @@ protected function handleCliCommand()
381
389
*/
382
390
abstract protected function parseCliOption ();
383
391
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
+
384
441
/**
385
442
* Bootstrap a set of workers and any vars that need to be set
386
443
*/
@@ -545,7 +602,7 @@ protected function startWorker($jobs = 'all')
545
602
break ;
546
603
547
604
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 );
549
606
$ this ->children [$ pid ] = array (
550
607
'jobs ' => $ jobs ,
551
608
'start_time ' => time (),
@@ -804,7 +861,7 @@ protected function registerSignals($parent = true)
804
861
* Handles signals
805
862
* @param int $sigNo
806
863
*/
807
- public function signal ($ sigNo )
864
+ public function signalHandler ($ sigNo )
808
865
{
809
866
static $ termCount = 0 ;
810
867
@@ -886,9 +943,17 @@ protected function trigger($name, array $args = [])
886
943
/**
887
944
* @return string
888
945
*/
889
- public function getScriptName ()
946
+ public function getScript ()
890
947
{
891
- return $ this ->scriptName ;
948
+ return $ this ->script ;
949
+ }
950
+
951
+ /**
952
+ * @return string
953
+ */
954
+ public function getCommand ()
955
+ {
956
+ return $ this ->command ;
892
957
}
893
958
894
959
/**
@@ -1123,6 +1188,11 @@ public function getJobOpt($name, $key, $default = null)
1123
1188
/// some help method
1124
1189
//////////////////////////////////////////////////////////////////////
1125
1190
1191
+ protected function showStatus ()
1192
+ {
1193
+ // todo ...
1194
+ }
1195
+
1126
1196
/**
1127
1197
* Shows the scripts help info with optional error message
1128
1198
* @param string $msg
@@ -1159,13 +1229,13 @@ protected function logChildStatus($pid, $jobs, $status)
1159
1229
1160
1230
switch ($ status ) {
1161
1231
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) " ;
1163
1233
break ;
1164
1234
case 'exited ' :
1165
- $ message = "Child $ pid exited cleanly. ( $ jobStr) " ;
1235
+ $ message = "Child (PID: $ pid) exited cleanly. (Jobs: $ jobStr) " ;
1166
1236
break ;
1167
1237
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) " ;
1169
1239
break ;
1170
1240
}
1171
1241
0 commit comments