20
20
use Inhere \Console \IO \Input ;
21
21
use Inhere \Console \IO \InputDefinition ;
22
22
use Inhere \Console \IO \Output ;
23
- use Inhere \Console \Util \FormatUtil ;
24
23
use Inhere \Console \Util \Helper ;
25
24
use InvalidArgumentException ;
26
25
use ReflectionException ;
32
31
use Toolkit \PFlag \SFlags ;
33
32
use Toolkit \Stdlib \Helper \PhpHelper ;
34
33
use Toolkit \Stdlib \Obj \ConfigObject ;
35
- use Toolkit \Stdlib \Util \PhpDoc ;
36
34
use function array_merge ;
37
35
use function cli_set_process_title ;
38
36
use function error_get_last ;
39
37
use function function_exists ;
40
- use function implode ;
41
- use function is_string ;
42
- use function preg_replace ;
43
- use function sprintf ;
44
- use function ucfirst ;
45
- use const PHP_EOL ;
46
38
use const PHP_OS ;
47
39
48
40
/**
@@ -252,8 +244,8 @@ protected function annotationVars(): array
252
244
protected function initForRun (Input $ input ): void
253
245
{
254
246
$ input ->setFs ($ this ->flags );
247
+ $ this ->flags ->setDesc (self ::getDesc ());
255
248
$ this ->flags ->setScriptName (self ::getName ());
256
- $ this ->flags ->setDesc (self ::getDescription ());
257
249
258
250
// load built in options
259
251
// $builtInOpts = GlobalOption::getAloneOptions();
@@ -507,6 +499,7 @@ public function loadRulesByDocblock(string $method, FlagsParser $fs): void
507
499
$ dr = DocblockRules::newByDocblock ($ rftMth ->getDocComment ());
508
500
$ dr ->parse ();
509
501
502
+ $ fs ->setDesc ($ dr ->getTagValue ('desc ' ) ?: self ::getDesc ());
510
503
$ fs ->addArgsByRules ($ dr ->getArgRules ());
511
504
$ fs ->addOptsByRules ($ dr ->getOptRules ());
512
505
}
@@ -522,111 +515,26 @@ public function loadRulesByDocblock(string $method, FlagsParser $fs): void
522
515
*/
523
516
abstract protected function showHelp (): bool ;
524
517
518
+ /**************************************************************************
519
+ * getter/setter methods
520
+ **************************************************************************/
521
+
525
522
/**
526
- * Display command/action help by parse method annotations
527
- *
528
- * @param string $method
529
- * @param string $action action of an group
530
- * @param array $aliases
531
- *
532
- * @return int
533
- * @throws ReflectionException
523
+ * @return string
534
524
*/
535
- protected function showHelpByAnnotations ( string $ method , string $ action = '' , array $ aliases = [] ): int
525
+ public function getGroupName ( ): string
536
526
{
537
- $ name = $ this ->input ->getCommand ();
538
-
539
- // subcommand: is a console controller subcommand
540
- $ rftMth = PhpHelper::reflectMethod ($ this , $ method );
541
- if ($ action && !$ rftMth ->isPublic ()) {
542
- $ this ->write ("The command [<info> $ name</info>] don't allow access in the class. " );
543
- return 0 ;
544
- }
545
-
546
- $ allowedTags = DocblockRules::getAllowedTags ();
547
- $ this ->logf (Console::VERB_DEBUG , "render help for the command: %s " , $ this ->input ->getCommandId ());
548
-
549
- $ help = [];
550
- $ doc = $ this ->parseCommentsVars ((string )$ rftMth ->getDocComment ());
551
- $ tags = PhpDoc::getTags ($ doc , [
552
- 'allow ' => $ allowedTags ,
553
- ]);
554
-
555
- if ($ aliases ) {
556
- $ realName = $ action ?: static ::getName ();
557
- // command name
558
- $ help ['Command: ' ] = sprintf ('%s(alias: <info>%s</info>) ' , $ realName , implode (', ' , $ aliases ));
559
- }
560
-
561
- $ binName = $ this ->input ->getBinName ();
562
-
563
- $ path = $ binName . ' ' . $ name ;
564
- if ($ action ) {
565
- $ group = static ::getName ();
566
- $ path = "$ binName $ group $ action " ;
567
- }
568
-
569
- // is an command object
570
- $ isCommand = $ this ->isCommand ();
571
- foreach ($ allowedTags as $ tag ) {
572
- if (empty ($ tags [$ tag ]) || !is_string ($ tags [$ tag ])) {
573
- // for alone command
574
- if ($ tag === 'description ' && $ isCommand ) {
575
- $ help ['Description: ' ] = static ::getDesc ();
576
- continue ;
577
- }
578
-
579
- if ($ tag === 'usage ' ) {
580
- $ help ['Usage: ' ] = "$ path [--options ...] [arguments ...] " ;
581
- }
582
-
583
- continue ;
584
- }
585
-
586
- // $msg = trim($tags[$tag]);
587
- $ message = $ tags [$ tag ];
588
- $ labelName = ucfirst ($ tag ) . ': ' ;
589
-
590
- // for alone command
591
- if ($ tag === 'description ' && $ isCommand ) {
592
- $ message = static ::getDescription ();
593
- } else {
594
- $ message = preg_replace ('#(\n)# ' , '$1 ' , $ message );
595
- }
596
-
597
- $ help [$ labelName ] = $ message ;
598
- }
599
-
600
- if (isset ($ help ['Description: ' ])) {
601
- $ description = $ help ['Description: ' ] ?: 'No description message for the command ' ;
602
- $ this ->write (ucfirst ($ this ->parseCommentsVars ($ description )) . PHP_EOL );
603
- unset($ help ['Description: ' ]);
604
- }
605
-
606
- $ help ['Group Options: ' ] = null ;
607
-
608
- $ this ->beforeRenderCommandHelp ($ help );
609
-
610
- if ($ app = $ this ->getApp ()) {
611
- $ help ['Global Options: ' ] = FormatUtil::alignOptions ($ app ->getFlags ()->getOptSimpleDefines ());
612
- }
613
-
614
- $ this ->output ->mList ($ help , [
615
- 'sepChar ' => ' ' ,
616
- 'lastNewline ' => 0 ,
617
- ]);
618
-
619
- return 0 ;
527
+ return '' ;
620
528
}
621
529
622
- protected function beforeRenderCommandHelp (array &$ help ): void
530
+ /**
531
+ * @return string
532
+ */
533
+ public function getRealName (): string
623
534
{
535
+ return self ::getName ();
624
536
}
625
537
626
- /**************************************************************************
627
- * getter/setter methods
628
- **************************************************************************/
629
-
630
538
/**
631
539
* @return array
632
540
*/
@@ -706,33 +614,6 @@ public static function setCoroutine($coroutine): void
706
614
static ::$ coroutine = (bool )$ coroutine ;
707
615
}
708
616
709
- /**
710
- * @return array
711
- */
712
- final public static function getAnnotationTags (): array
713
- {
714
- return self ::$ annotationTags ;
715
- }
716
-
717
- /**
718
- * @param string $name
719
- */
720
- public static function addAnnotationTag (string $ name ): void
721
- {
722
- if (!isset (self ::$ annotationTags [$ name ])) {
723
- self ::$ annotationTags [$ name ] = true ;
724
- }
725
- }
726
-
727
- /**
728
- * @param array $annotationTags
729
- * @param bool $replace
730
- */
731
- public static function setAnnotationTags (array $ annotationTags , $ replace = false ): void
732
- {
733
- self ::$ annotationTags = $ replace ? $ annotationTags : array_merge (self ::$ annotationTags , $ annotationTags );
734
- }
735
-
736
617
/**
737
618
* @return string
738
619
*/
0 commit comments