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 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
|
# ============================================================================
package MooseX::App::Meta::Role::Class::Base;
# ============================================================================
use utf8;
use 5.010;
use List::Util qw(max first);
use namespace::autoclean;
use Moose::Role;
use MooseX::App::Utils;
use Module::Pluggable::Object;
use File::Basename qw();
has 'app_messageclass' => (
is => 'rw',
isa => 'ClassName',
lazy => 1,
builder => '_build_app_messageclass',
);
has 'app_namespace' => (
is => 'rw',
isa => 'MooseX::App::Types::List',
coerce => 1,
lazy => 1,
builder => '_build_app_namespace',
);
has 'app_exclude' => (
is => 'rw',
isa => 'MooseX::App::Types::List',
coerce => 1,
default => sub { [] },
);
has 'app_base' => (
is => 'rw',
isa => 'Str',
lazy => 1,
default => sub {
return File::Basename::basename($0);
},
);
has 'app_strict' => (
is => 'rw',
isa => 'Bool',
default => sub {0},
);
has 'app_fuzzy' => (
is => 'rw',
isa => 'Bool',
default => sub {1},
);
has 'app_command_name' => (
is => 'rw',
isa => 'CodeRef',
default => sub { \&MooseX::App::Utils::class_to_command },
);
has 'app_prefer_commandline' => (
is => 'rw',
isa => 'Bool',
default => sub {0},
);
has 'app_permute' => (
is => 'rw',
isa => 'Bool',
default => sub {0},
);
has 'app_commands' => (
is => 'rw',
isa => 'HashRef[Str]',
traits => ['Hash'],
handles => {
command_register => 'set',
command_get => 'get',
command_classes => 'values',
command_list => 'shallow_clone',
},
lazy => 1,
builder => '_build_app_commands',
);
sub _build_app_messageclass {
my ($self) = @_;
return 'MooseX::App::Message::Block'
}
sub _build_app_namespace {
my ($self) = @_;
return [ $self->name ];
}
sub _build_app_commands {
my ($self) = @_;
my (@list);
# Process namespace list
foreach my $namespace ( @{ $self->app_namespace } ) {
push(@list,$self->command_scan_namespace($namespace));
}
my $commands = { @list };
# Process excludes
foreach my $exclude ( @{ $self->app_exclude } ) {
foreach my $command (keys %{$commands}) {
delete $commands->{$command}
if $commands->{$command} =~ m/^\Q$exclude\E(::|$)/;
}
}
return $commands;
}
sub command_check {
my ($self) = @_;
foreach my $attribute ($self->command_usage_attributes($self,'all')) {
$attribute->cmd_check();
}
return;
}
sub command_scan_namespace {
my ($self,$namespace) = @_;
# Find all packages in namespace
my $mpo = Module::Pluggable::Object->new(
search_path => [ $namespace ],
);
my $commandsub = $self->app_command_name;
my %return;
# Loop all packages
foreach my $command_class ($mpo->plugins) {
my $command_class_name = substr($command_class,length($namespace)+2);
# subcommands support
$command_class_name =~ s/::/ /g;
# Extract command name
$command_class_name =~ s/^\Q$namespace\E:://;
$command_class_name =~ s/^.+::([^:]+)$/$1/;
my $command = $commandsub->($command_class_name,$command_class);
# Check if command was loaded
$return{$command} = $command_class
if defined $command;
}
return %return;
}
sub command_args {
my ($self,$metaclass) = @_;
$metaclass ||= $self;
my $parsed_argv = MooseX::App::ParsedArgv->instance;
unless ($metaclass->does_role('MooseX::App::Role::Common')) {
Moose->throw_error('Class '.$metaclass->name.' is not a proper MooseX::App::Command class. You either need to use MooseX::App::Command or exclude this class via app_exclude')
}
# Process options
my @attributes_option = $self->command_usage_attributes($metaclass,'option');
my ($return,$errors) = $self->command_parse_options(\@attributes_option);
my %raw_error;
# Loop all left over options
foreach my $option ($parsed_argv->available('option')) {
my $key = $option->key;
my $raw = $option->original;
my $message;
next
if defined $raw_error{$raw};
# Get possible options with double dash - might be missing
if (length $key == 1
&& $raw =~ m/^-(\w+)$/) {
POSSIBLE_ATTRIBUTES:
foreach my $attribute ($self->command_usage_attributes($metaclass,[qw(option proto)])) {
foreach my $name ($attribute->cmd_name_possible) {
# TODO fuzzy match
if ($name eq $1) {
$raw_error{$raw} = 1;
$message = "Did you mean '--$name'?";
last POSSIBLE_ATTRIBUTES;
}
}
}
}
# Handle error messages
my $error;
if (defined $message) {
$error = $self->command_message(
header => "Unknown option '".$raw."'", # LOCALIZE
body => $message,
type => "error",
);
} else {
$error = $self->command_message(
header => "Unknown option '".$option->key."'", # LOCALIZE
type => "error",
);
}
unshift(@{$errors},$error);
}
# Process positional parameters
my @attributes_parameter = $self->command_usage_attributes($metaclass,'parameter');
foreach my $attribute (@attributes_parameter) {
my $element = $parsed_argv->consume('parameter');
last
unless defined $element;
my ($parameter_value,$parameter_errors) = $self->command_process_attribute($attribute, [ $element->key ] );
push(@{$errors},@{$parameter_errors});
$return->{$attribute->name} = $parameter_value;
}
# Handle all unconsumed parameters and options
if ($self->app_strict || $metaclass->command_strict) {
foreach my $parameter ($parsed_argv->available('parameter')) {
unshift(@{$errors},
$self->command_message(
header => "Unknown parameter '".$parameter->key."'", # LOCALIZE
type => "error",
)
);
}
}
# Handle ENV
foreach my $attribute ($self->command_usage_attributes($metaclass,'all')) {
next
unless $attribute->can('has_cmd_env')
&& $attribute->has_cmd_env;
my $cmd_env = $attribute->cmd_env;
if (exists $ENV{$cmd_env}
&& ! defined $return->{$attribute->name}) {
my $value = $ENV{$cmd_env};
if ($attribute->has_type_constraint) {
my $type_constraint = $attribute->type_constraint;
if ($attribute->should_coerce
&& $type_constraint->has_coercion) {
my $coercion = $type_constraint->coercion;
$value = $coercion->coerce($value) // $value;
}
}
$return->{$attribute->name} = $value;
my $error = $attribute->cmd_type_constraint_check($value);
if ($error) {
push(@{$errors},
$self->command_message(
header => "Invalid environment value for '".$cmd_env."'", # LOCALIZE
type => "error",
body => $error,
)
);
}
}
}
return ($return,$errors);
}
sub command_proto {
my ($self,$metaclass) = @_;
$metaclass ||= $self;
my @attributes;
foreach my $attribute ($self->command_usage_attributes($metaclass,'proto')) {
next
unless $attribute->does('MooseX::App::Meta::Role::Attribute::Option')
&& $attribute->has_cmd_type;
push(@attributes,$attribute);
}
return $self->command_parse_options(\@attributes);
}
sub command_parse_options {
my ($self,$attributes) = @_;
# Build attribute lookup hash
my %option_to_attribute;
foreach my $attribute (@{$attributes}) {
foreach my $name ($attribute->cmd_name_possible) {
if (defined $option_to_attribute{$name}
&& $option_to_attribute{$name} != $attribute) {
Moose->throw_error('Command line option conflict: '.$name);
}
$option_to_attribute{$name} = $attribute;
}
}
my $match = {};
my $return = {};
my @errors;
# Get ARGV
my $parsed_argv = MooseX::App::ParsedArgv->instance;
# Loop all exact matches
foreach my $option ($parsed_argv->available('option')) {
if (my $attribute = $option_to_attribute{$option->key}) {
$option->consume($attribute);
$match->{$attribute->name} = [ $option ];
}
}
# Process fuzzy matches
if ($self->app_fuzzy) {
# Loop all options (sorted by length)
foreach my $option (sort { length($b->key) <=> length($a->key) } $parsed_argv->available('option')) {
# No fuzzy matching for one-letter flags
my $option_length = length($option->key);
next
if $option_length == 1;
my ($match_attributes) = [];
# Try to match attributes
foreach my $name (keys %option_to_attribute) {
next
if ($option_length >= length($name));
my $name_short = lc(substr($name,0,$option_length));
# Partial match
if (lc($option->key) eq $name_short) {
my $attribute = $option_to_attribute{$name};
unless (grep { $attribute == $_ } @{$match_attributes}) {
push(@{$match_attributes},$attribute);
}
}
}
# Process matches
# No match
if(@{$match_attributes} == 0) {}
# One match
elsif(@{$match_attributes} == 1) {
my $attribute = $match_attributes->[0];
$option->consume();
$match->{$attribute->name} ||= [];
push(@{$match->{$attribute->name}},$option);
}
# Multiple matches
else {
$option->consume();
push(@errors,
$self->command_message(
header => "Ambiguous option '".$option->key."'", # LOCALIZE
type => "error",
body => "Could be\n".MooseX::App::Utils::format_list( # LOCALIZE
map { [ $_ ] }
sort
map { $_->cmd_name_primary }
@{$match_attributes}
),
)
);
}
}
}
# Check all attributes
foreach my $attribute (@{$attributes}) {
next
unless exists $match->{$attribute->name};
my @mapped_values;
foreach my $element (@{$match->{$attribute->name}}) {
push(@mapped_values,$element->all_values);
}
my $values = [
map { $_->value }
sort { $a->position <=> $b->position }
@mapped_values
];
#warn Data::Dumper::Dumper($raw);
my ($value,$errors) = $self->command_process_attribute( $attribute, $values );
push(@errors,@{$errors});
$return->{$attribute->name} = $value;
}
return ($return,\@errors);
}
sub command_process_attribute {
my ($self,$attribute,$raw) = @_;
$raw = [ $raw ]
unless ref($raw) eq 'ARRAY';
my @errors;
my $value;
# Attribute with split
if ($attribute->has_cmd_split) {
my @raw_unfolded;
foreach (@{$raw}) {
push(@raw_unfolded,split($attribute->cmd_split,$_));
}
$raw = \@raw_unfolded;
}
# Attribute with counter - transform value count into value
if ($attribute->cmd_count) {
$value = $raw = [ scalar(@$raw) ];
}
# Attribute with type constraint
if ($attribute->has_type_constraint) {
my $type_constraint = $attribute->type_constraint;
if ($type_constraint->is_a_type_of('ArrayRef')) {
$value = $raw;
} elsif ($type_constraint->is_a_type_of('HashRef')) {
$value = {};
foreach my $element (@{$raw}) {
if ($element =~ m/^([^=]+)=(.+?)$/) {
$value->{$1} ||= $2;
} else {
push(@errors,
$self->command_message(
header => "Invalid value for '".$attribute->cmd_name_primary."'", # LOCALIZE
type => "error",
body => "Value must be supplied as 'key=value' (not '$element')", # LOCALIZE
)
);
}
}
} elsif ($type_constraint->is_a_type_of('Bool')) {
$value = $raw->[-1];
# if ($self->has_default
# && ! $self->is_default_a_coderef
# && $self->default == 1) {
} else {
$value = $raw->[-1];
}
unless(defined $value) {
push(@errors,
$self->command_message(
header => "Missing value for '".$attribute->cmd_name_primary."'", # LOCALIZE
type => "error",
)
);
} else {
if ($attribute->should_coerce
&& $type_constraint->has_coercion) {
my $coercion = $type_constraint->coercion;
$value = $coercion->coerce($value) // $value;
}
my $error = $attribute->cmd_type_constraint_check($value);
if (defined $error) {
push(@errors,
$self->command_message(
header => "Invalid value for '".$attribute->cmd_name_primary."'", # LOCALIZE
type => "error",
body => $error,
)
);
}
}
} else {
$value = $raw->[-1];
}
return ($value,\@errors);
}
sub command_candidates {
my ($self,$command) = @_;
my $lc_command = lc($command);
my $commands = $self->app_commands;
my @candidates;
my $candidate_length = length($command);
# Compare all commands to find matching candidates
foreach my $command_name (keys %$commands) {
if ($command_name eq $lc_command) {
return $command_name;
} elsif ($lc_command eq substr($command_name,0,$candidate_length)) {
push(@candidates,$command_name);
}
}
return [ sort @candidates ];
}
sub command_find {
my ($self,$commands) = @_;
my $parsed_argv = MooseX::App::ParsedArgv->instance;
my $all_commands = $self->app_commands;
# Get parts
my (@parts,@command_parts);
if (defined $commands) {
if (ref($commands) eq 'ARRAY') {
@parts = map { lc } @{$commands};
} else {
@parts = ( lc($commands) );
}
} else {
@parts = $parsed_argv->elements_argv;
}
# Extract possible parts
foreach my $part (@parts) {
# Anyting staring with a dash cannot be a command
last
if $part =~ m/^-/;
push(@command_parts,lc($part));
}
# Shortcut
return
unless scalar @command_parts;
# basically do a longest-match search
for my $index (reverse(0..$#command_parts)) {
my $command = join ' ', @command_parts[0..$index];
if( $all_commands->{$command} ) {
$parsed_argv->shift_argv for 0..$index;
return $command;
}
}
# didn't find an exact match, let's go to plan B
foreach my $index (reverse(0..$#command_parts)) {
my $command = join ' ', @command_parts[0..$index];
my $candidate = $self->command_candidates($command);
if (ref $candidate eq '') {
$parsed_argv->shift_argv;
return $candidate;
}
if (@{$candidate} == 0) {
next;
}
elsif (@{$candidate} == 1) {
if ($self->app_fuzzy) {
$parsed_argv->shift_argv;
return $candidate->[0];
} else {
return $self->command_message(
header => "Unknown command '$command'", # LOCALIZE
type => "error",
body => "Did you mean '".$candidate->[0]."'?", # LOCALIZE
);
}
}
else {
return $self->command_message(
header => "Ambiguous command '$command'", # LOCALIZE
type => "error",
body => "Which command did you mean?\n". # LOCALIZE
MooseX::App::Utils::format_list(map { [ $_ ] } sort @{$candidate}),
);
}
}
my $command = $command_parts[0];
return $self->command_message(
header => "Unknown command '$command'", # LOCALIZE
type => "error",
);
}
sub command_parser_hints {
my ($self,$metaclass) = @_;
$metaclass ||= $self;
my %hints;
my %names;
my $return = { permute => [], novalue => [], fixedvalue => {} };
foreach my $attribute ($self->command_usage_attributes($metaclass,[qw(option proto)])) {
my $permute = 0;
my $bool = 0;
my $type_constraint = $attribute->type_constraint;
if ($type_constraint) {
$permute = 1
if $type_constraint->is_a_type_of('ArrayRef')
|| $type_constraint->is_a_type_of('HashRef');
$bool = 1
if $type_constraint->is_a_type_of('Bool');
}
my $hint = {
name => $attribute->name,
bool => $bool,
novalue => $bool || $attribute->cmd_count,
permute => $permute,
};
foreach my $name ($attribute->cmd_name_list) {
$names{$name} = $hints{$name} = $hint;
}
# Negated values
if ($bool) {
$hint->{fixedvalue} = 1;
if ($attribute->has_cmd_negate) {
my $hint_neg = { %{$hint} }; # shallow copy
$hint_neg->{fixedvalue} = 0;
foreach my $name (@{$attribute->cmd_negate}) {
$names{$name} = $hints{$name} = $hint_neg;
}
}
} elsif ($attribute->cmd_count) {
$hint->{fixedvalue} = 1;
}
}
if ($self->app_fuzzy) {
my $length = max(map { length($_) } keys %names) // 0;
foreach my $l (reverse(2..$length)) {
my %tmp;
foreach my $name (keys %names) {
next
if length($name) < $l;
my $short_name = substr($name,0,$l);
next
if defined $hints{$short_name};
$tmp{$short_name} ||= [];
next
if defined $tmp{$short_name}->[0]
&& $tmp{$short_name}->[0]->{name} eq $names{$name}->{name};
push(@{$tmp{$short_name}},$names{$name})
}
foreach my $short_name (keys %tmp) {
next
if scalar @{$tmp{$short_name}} > 1;
$hints{$short_name} = $tmp{$short_name}->[0];
}
}
}
foreach my $name (keys %hints) {
if ($hints{$name}->{novalue}) {
push(@{$return->{novalue}},$name);
}
if ($hints{$name}->{permute}) {
push(@{$return->{permute}},$name);
}
if (defined $hints{$name}->{fixedvalue}) {
$return->{fixedvalue}{$name} = $hints{$name}->{fixedvalue};
}
}
#warn Data::Dumper::Dumper($return);
return $return;
}
sub command_message {
my ($self,@args) = @_;
my $messageclass = $self->app_messageclass;
Class::Load::load_class($messageclass);
return $messageclass->new(@args);
}
sub command_check_attributes {
my ($self,$command_meta,$errors,$params) = @_;
$command_meta ||= $self;
# Check required values
foreach my $attribute ($self->command_usage_attributes($command_meta,[qw(option proto parameter)])) {
if ($attribute->is_required
&& ! exists $params->{$attribute->name}
&& ! $attribute->has_default) {
push(@{$errors},
$self->command_message(
header => "Required ".($attribute->cmd_type eq 'parameter' ? 'parameter':'option')." '".$attribute->cmd_name_primary."' missing", # LOCALIZE
type => "error",
)
);
}
}
return $errors;
}
sub command_usage_attributes {
my ($self,$metaclass,$types) = @_;
$metaclass ||= $self;
$types ||= [qw(option proto)];
if ('' eq ref $types) {
$types = [$types];
}
unless ($metaclass->does_role('MooseX::App::Role::Common')) {
Moose->throw_error('Class '.$metaclass->name.' is not a proper MooseX::App::Command class. You either need to use MooseX::App::Command or exclude this class via app_exclude')
}
my @return;
foreach my $attribute ($metaclass->get_all_attributes) {
next
unless $attribute->does('MooseX::App::Meta::Role::Attribute::Option')
&& $attribute->has_cmd_type;
next
unless first { $attribute->cmd_type eq $_ or 'all' eq $_ } @$types;
push(@return,$attribute);
}
return (sort {
$a->cmd_position <=> $b->cmd_position ||
$a->cmd_usage_name cmp $b->cmd_usage_name
} @return);
}
sub command_usage_options {
my ($self,$metaclass,$headline) = @_;
$headline ||= 'options:'; # LOCALIZE
$metaclass ||= $self;
my @options;
foreach my $attribute ($self->command_usage_attributes($metaclass,[qw(option proto)])) {
push(@options,[
$attribute->cmd_usage_name(),
$attribute->cmd_usage_description()
]);
}
return
unless scalar @options > 0;
return $self->command_message(
header => $headline,
body => MooseX::App::Utils::format_list(@options),
);
}
sub command_usage_parameters {
my ($self,$metaclass,$headline) = @_;
$headline ||= 'parameter:'; # LOCALIZE
$metaclass ||= $self;
my @parameters;
foreach my $attribute (
sort { $a->cmd_position <=> $b->cmd_position }
$self->command_usage_attributes($metaclass,'parameter')
) {
push(@parameters,[
$attribute->cmd_usage_name(),
$attribute->cmd_usage_description()
]);
}
return
unless scalar @parameters > 0;
return $self->command_message(
header => $headline,
body => MooseX::App::Utils::format_list(@parameters),
);
}
sub command_usage_header {
my ($self,$command_meta_class) = @_;
my $caller = $self->app_base;
my ($command_name,$usage);
if ($command_meta_class) {
$command_name = $self->command_class_to_command($command_meta_class->name);
} else {
$command_name = '<command>';
}
$command_meta_class ||= $self;
if ($command_meta_class->can('command_usage')
&& $command_meta_class->command_usage_predicate) {
$usage = MooseX::App::Utils::format_text($command_meta_class->command_usage);
}
unless (defined $usage) {
# LOCALIZE
$usage = "$caller $command_name ";
my @parameter= $self->command_usage_attributes($command_meta_class,'parameter');
foreach my $attribute (@parameter) {
if ($attribute->is_required) {
$usage .= "<".$attribute->cmd_usage_name.'> ';
} else {
$usage .= '['.$attribute->cmd_usage_name.'] ';
}
}
$usage .= "[long options...]
$caller help
$caller $command_name --help";
$usage = MooseX::App::Utils::format_text($usage);
}
return $self->command_message(
header => 'usage:', # LOCALIZE
body => $usage,
);
}
sub command_usage_description {
my ($self,$command_meta_class) = @_;
$command_meta_class ||= $self;
if ($command_meta_class->can('command_long_description')
&& $command_meta_class->command_long_description_predicate) {
return $self->command_message(
header => 'description:', # LOCALIZE
body => MooseX::App::Utils::format_text($command_meta_class->command_long_description),
);
} elsif ($command_meta_class->can('command_short_description')
&& $command_meta_class->command_short_description_predicate) {
return $self->command_message(
header => 'short description:', # LOCALIZE
body => MooseX::App::Utils::format_text($command_meta_class->command_short_description),
);
}
return;
}
sub command_class_to_command {
my ($self,$command_class) = @_;
my $commands = $self->app_commands;
foreach my $element (keys %$commands) {
if ($command_class eq $commands->{$element}) {
return $element;
}
}
return;
}
sub command_subcommands {
my ($self,$command_meta_class) = @_;
$command_meta_class ||= $self;
my $command_class = $command_meta_class->name;
my $command_name = $self->command_class_to_command($command_class);
my $commands = $self->app_commands;
my $subcommands = {};
foreach my $command (keys %{$commands}) {
next
if $command eq $command_name
|| $command !~ m/^\Q$command_name\E\s(.+)/;
$subcommands->{$1} = $commands->{$command};
}
return $subcommands;
}
sub command_usage_command {
my ($self,$command_meta_class) = @_;
$command_meta_class ||= $self;
my @usage;
push(@usage,$self->command_usage_header($command_meta_class));
push(@usage,$self->command_usage_description($command_meta_class));
push(@usage,$self->command_usage_parameters($command_meta_class,'parameters:')); # LOCALIZE
push(@usage,$self->command_usage_options($command_meta_class,'options:')); # LOCALIZE
push(@usage,$self->command_usage_subcommands('available subcommands:',$self->command_subcommands($command_meta_class))); # LOCALIZE
return @usage;
}
sub command_usage_global {
my ($self) = @_;
my @usage;
push(@usage,$self->command_usage_header());
my $description = $self->command_usage_description($self);
push(@usage,$description)
if $description;
push(@usage,$self->command_usage_parameters($self,'global parameters:')); # LOCALIZE
push(@usage,$self->command_usage_options($self,'global options:')); # LOCALIZE
push(@usage,$self->command_usage_subcommands('available commands:',$self->app_commands)); # LOCALIZE
return @usage;
}
sub command_usage_subcommands {
my ($self,$headline,$commands) = @_;
my @commands;
foreach my $command (keys %$commands) {
my $class = $commands->{$command};
Class::Load::load_class($class);
}
foreach my $command (keys %$commands) {
my $class = $commands->{$command};
unless ($class->can('meta')
&& $class->DOES('MooseX::App::Role::Common')) {
Moose->throw_error('Class '.$class.' is not a proper MooseX::App::Command class. You either need to use MooseX::App::Command or exclude this class via app_exclude')
}
my $command_description;
$command_description = $class->meta->command_short_description
if $class->meta->can('command_short_description');
$command_description ||= '';
push(@commands,[$command,$command_description]);
}
@commands = sort { $a->[0] cmp $b->[0] } @commands;
push(@commands,['help','Prints this usage information']); # LOCALIZE
return $self->command_message(
header => $headline,
body => MooseX::App::Utils::format_list(@commands),
);
}
1;
__END__
=pod
=encoding utf8
=head1 NAME
MooseX::App::Meta::Role::Class::Base - Meta class role for application base class
=head1 DESCRIPTION
This meta class role will automatically be applied to the application base
class. This documentation is only of interest if you intend to write
plugins for MooseX-App.
=head1 ACCESSORS
=head2 app_messageclass
Message class for generating error messages. Defaults to
MooseX::App::Message::Block. The default can be overwritten by altering
the C<_build_app_messageclass> method. Defaults to MooseX::App::Message::Block
=head2 app_namespace
Usually MooseX::App will take the package name of the base class as the
namespace for commands. This namespace can be changed.
=head2 app_exclude
Exclude namespaces included in app_namespace
=head2 app_base
Usually MooseX::App will take the name of the calling wrapper script to
construct the program name in various help messages. This name can
be changed via the app_base accessor. Defaults to the base name of $0
=head2 app_fuzzy
Boolean flag that controls if command names and attributes should be
matched exactly or fuzzy. Defaults to true.
=head2 app_command_name
Coderef attribute that controls how package names are translated to command
names and attributes. Defaults to &MooseX::App::Utils::class_to_command
=head2 app_commands
Hashref with command to command class map.
=head2 app_strict
Boolean flag that controls if an application with superfluous/unknown
positional parameters should terminate with an error message or not.
If disabled all extra parameters will be copied to the L<extra_argv>
command class attribute.
=head2 app_prefer_commandline
By default, arguments passed to new_with_command and new_with_options have a
higher priority than the command line options. This boolean flag will give
the command line an higher priority.
=head2 app_permute
Boolean flag that controls if command line arguments that take multiple values
(ie ArrayRef or HashRef type constraints) can be permuted.
=head1 METHODS
=head2 command_check
Runs sanity checks on options and parameters. Will usually only be executed if
either HARNESS_ACTIVE or APP_DEVELOPER environment are set.
=head2 command_register
$self->command_register($command_moniker,$command_class);
Registers an additional command
=head2 command_get
my $command_class = $self->command_register($command_moniker);
Returns a command class for the given command moniker
=head2 command_class_to_command
my $command_moniker = $meta->command_class_to_command($command_class);
Returns the command moniker for the given command class.
=head2 command_message
my $message = $meta->command_message(
header => $header,
type => 'error',
body => $message
);
Generates a message object (using the class from L<app_messageclass>)
=head2 command_usage_attributes
my @attributes = $meta->command_usage_attributes($metaclass);
Returns a list of attributes/command options for the given meta class.
=head2 command_usage_command
my @messages = $meta->command_usage_command($command_metaclass);
Returns a list of messages containing the documentation for a given
command meta class.
=head2 command_usage_description
my $message = $meta->command_usage_description($command_metaclass);
Returns a messages with the basic command description.
=head2 command_usage_global
my @messages = $meta->command_usage_global();
Returns a list of messages containing the documentation for the application.
=head2 command_usage_header
my $message = $meta->command_usage_header();
my $message = $meta->command_usage_header($command_meta_class);
Returns a message containing the basic usage documentation
=head2 command_find
my @commands = $meta->command_find($commands_arrayref);
Returns a list of command names matching the user input
=head2 command_candidates
my $commands = $meta->command_candidates($user_command_input);
Returns either a single command or an arrayref of possibly matching commands.
=head2 command_proto
my ($result,$errors) = $meta->command_proto($command_meta_class);
Returns all parsed options (as hashref) and erros (as arrayref) for the proto
command. Is a wrapper around L<command_parse_options>.
=head2 command_args
my ($options,$errors) = $self->command_args($command_meta_class);
Returns all parsed options (as hashref) and erros (as arrayref) for the main
command. Is a wrapper around L<command_parse_options>.
=head2 command_parse_options
my ($options,$errors) = $self->command_parse_options(\@attribute_metaclasses);
Tries to parse the selected attributes from @ARGV.
=head2 command_scan_namespace
my %namespaces = $self->command_scan_namespace($namespace);
Scans a namespace for command classes. Returns a hash with command names
as keys and package names as values.
=head2 command_process_attribute
my @attributes = $self->command_process_attribute($attribute_metaclass,$matches);
TODO
###Returns a list of all attributes with the given type
=head2 command_usage_options
my $usage = $self->command_usage_options($metaclass,$headline);
Returns the options usage as a message object
=head2 command_usage_parameters
my $usage = $self->command_usage_parameters($metaclass,$headline);
Returns the positional parameters usage as a message object
=head2 command_check_attributes
$errors = $self->command_check_attributes($command_metaclass,$errors,$params)
Checks all attributes. Returns/alters the $errors arrayref
=head2 command_parser_hints
$self->command_parser_hints($self,$metaclass)
Generates parser hints as required by L<MooseX::App::ParsedArgv>
=cut
|