File Coverage

blib/lib/CLI/Osprey/Role.pm
Criterion Covered Total %
statement 129 190 67.8
branch 46 104 44.2
condition 10 47 21.2
subroutine 13 17 76.4
pod 0 5 0.0
total 198 363 54.5


line stmt bran cond sub pod time code
1             package CLI::Osprey::Role;
2 4     4   2368 use strict;
  4         10  
  4         118  
3 4     4   28 use warnings;
  4         17  
  4         128  
4 4     4   34 use Carp 'croak';
  4         18  
  4         218  
5 4     4   3858 use Path::Tiny ();
  4         47533  
  4         122  
6 4     4   40 use Scalar::Util qw(blessed);
  4         12  
  4         268  
7 4     4   39 use Module::Runtime 'use_module';
  4         12  
  4         41  
8              
9 4     4   2052 use CLI::Osprey::Descriptive;
  4         12  
  4         45  
10              
11             # ABSTRACT: Role for CLI::Osprey applications
12             our $VERSION = '0.07'; # VERSION
13             our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY
14              
15             sub _osprey_option_to_getopt {
16 4     4   11 my ($name, %attributes) = @_;
17 4         21 my $getopt = join('|', grep defined, ($name, $attributes{short}));
18 4 50 33     23 $getopt .= '+' if $attributes{repeatable} && !defined $attributes{format};
19 4 50       12 $getopt .= '!' if $attributes{negatable};
20 4 50       16 $getopt .= '=' . $attributes{format} if defined $attributes{format};
21 4 50 33     19 $getopt .= '@' if $attributes{repeatable} && defined $attributes{format};
22 4         23 return $getopt;
23             }
24              
25             sub _osprey_prepare_options {
26 14     14   39 my ($options, $config) = @_;
27              
28 14         35 my @getopt;
29             my %abbreviations;
30 14         0 my %fullnames;
31              
32             my @order = sort {
33 14         51 ($options->{$a}{order} || 9999) <=> ($options->{$b}{order} || 9999)
34 0 0 0     0 || ($config->{added_order} ? ($options->{$a}{added_order} <=> $options->{$b}{added_order}) : 0)
    0 0        
      0        
35             || $a cmp $b
36             } keys %$options;
37              
38 14         37 for my $option (@order) {
39 4         6 my %attributes = %{ $options->{$option} };
  4         24  
40              
41 4         18 push @{ $fullnames{ $attributes{option} } }, $option;
  4         21  
42             }
43              
44 14         39 for my $name (keys %fullnames) {
45 4 50       6 if (@{ $fullnames{$name} } > 1) {
  4         20  
46 0         0 croak "Multiple option attributes named $name: [@{ $fullnames{$name} }]";
  0         0  
47             }
48             }
49              
50 14         31 for my $option (@order) {
51 4         6 my %attributes = %{ $options->{$option} };
  4         16  
52              
53 4         9 my $name = $attributes{option};
54 4         9 my $doc = $attributes{doc};
55 4 50       13 $doc = "no documentation for $name" unless defined $doc;
56              
57 4 50       10 push @getopt, [] if $attributes{spacer_before};
58 4 50       17 push @getopt, [ _osprey_option_to_getopt($option, %attributes), $doc, ($attributes{hidden} ? { hidden => 1} : ()) ];
59 4 50       12 push @getopt, [] if $attributes{spacer_after};
60              
61 4         6 push @{ $abbreviations{$name} }, $option;
  4         12  
62              
63             # If we allow abbreviating long option names, an option can be called by any prefix of its name,
64             # unless that prefix is an option name itself. Ambiguous cases (an abbreviation is a prefix of
65             # multiple option names) are handled later in _osprey_fix_argv.
66 4 50       13 if ($config->{abbreviate}) {
67 4         15 for my $len (1 .. length($name) - 1) {
68 24         42 my $abbreviated = substr $name, 0, $len;
69 24 50       54 push @{ $abbreviations{$abbreviated} }, $name unless exists $fullnames{$abbreviated};
  24         66  
70             }
71             }
72             }
73              
74 14         52 return \@getopt, \%abbreviations;
75             }
76              
77             sub _osprey_fix_argv {
78 14     14   38 my ($options, $abbreviations) = @_;
79              
80 14         24 my @new_argv;
81              
82 14         46 while (defined( my $arg = shift @ARGV )) {
83             # As soon as we find a -- or a non-option word, stop processing and leave everything
84             # from there onwards in ARGV as either positional args or a subcommand.
85 6 100 33     67 if ($arg eq '--' or $arg eq '-' or $arg !~ /^-/) {
      66        
86 5         26 push @new_argv, $arg, @ARGV;
87 5         15 last;
88             }
89              
90 1         5 my ($arg_name_with_dash, $arg_value) = split /=/, $arg, 2;
91 1 50       4 unshift @ARGV, $arg_value if defined $arg_value;
92              
93 1         8 my ($dash, $negative, $arg_name_without_dash)
94             = $arg_name_with_dash =~ /^(-+)(no\-)?(.+)$/;
95              
96 1         2 my $option_name;
97            
98 1 50       4 if ($dash eq '--') {
99 1         3 my $option_name = $abbreviations->{$arg_name_without_dash};
100 1 50       5 if (defined $option_name) {
101 1 50       5 if (@$option_name == 1) {
102 1         3 $option_name = $option_name->[0];
103             } else {
104             # TODO: can't we produce a warning saying that it's ambiguous and which options conflict?
105 0         0 $option_name = undef;
106             }
107             }
108             }
109              
110 1   50     11 my $arg_name = ($dash || '') . ($negative || '');
      50        
111 1 50       3 if (defined $option_name) {
112 0         0 $arg_name .= $option_name;
113             } else {
114 1         3 $arg_name .= $arg_name_without_dash;
115             }
116              
117 1         3 push @new_argv, $arg_name;
118 1 0 33     4 if (defined $option_name && $options->{$option_name}{format}) {
119 0         0 push @new_argv, shift @ARGV;
120             }
121             }
122              
123 14         34 return @new_argv;
124             }
125              
126 4     4   4623 use Moo::Role;
  4         18  
  4         52  
127              
128             requires qw(_osprey_config _osprey_options _osprey_subcommands);
129              
130             has 'parent_command' => (
131             is => 'ro',
132             );
133              
134             has 'invoked_as' => (
135             is => 'ro',
136             );
137              
138             sub new_with_options {
139 13     13 0 57744 my ($class, %params) = @_;
140 13         379 my %config = $class->_osprey_config;
141              
142 13 50       365 local @ARGV = @ARGV if $config{protect_argv};
143              
144 13 100       53 if (!defined $params{invoked_as}) {
145 10         68 $params{invoked_as} = Getopt::Long::Descriptive::prog_name();
146             }
147              
148 13         105 my ($parsed_params, $usage) = $class->parse_options(%params);
149              
150 13 50       65 if ($parsed_params->{h}) {
    50          
    50          
151 0         0 return $class->osprey_usage(1, $usage);
152             } elsif ($parsed_params->{help}) {
153 0         0 return $class->osprey_help(1, $usage);
154             } elsif ($parsed_params->{man}) {
155 0         0 return $class->osprey_man($usage);
156             }
157              
158 13         24 my %merged_params;
159 13 50       30 if ($config{prefer_commandline}) {
160 13         49 %merged_params = (%params, %$parsed_params);
161             } else {
162 0         0 %merged_params = (%$parsed_params, %params);
163             }
164              
165 13         348 my %subcommands = $class->_osprey_subcommands;
166 13         174 my ($subcommand_name, $subcommand_class);
167 13 100 66     58 if (@ARGV && $ARGV[0] ne '--') { # Check what to do with remaining options
168 4 50       30 if ($ARGV[0] =~ /^--/) { # Getopt stopped at an unrecognized option, error.
    50          
169 0         0 print STDERR "Unknown option '$ARGV[0]'.\n";
170 0         0 return $class->osprey_usage(1, $usage);
171             } elsif (%subcommands) {
172 4         12 $subcommand_name = shift @ARGV; # Remove it so the subcommand sees only options
173 4         11 $subcommand_class = $subcommands{$subcommand_name};
174 4 50       15 if (!defined $subcommand_class) {
175 0         0 print STDERR "Unknown subcommand '$subcommand_name'.\n";
176 0         0 return $class->osprey_usage(1, $usage);
177             }
178             }
179             # If we're not expecting a subcommand, and getopt didn't stop at an option, consider the remainder
180             # as positional args and leave them in ARGV.
181             }
182              
183 13         23 my $self;
184 13 50       18 unless (eval { $self = $class->new(%merged_params); 1 }) {
  13         164  
  13         7274  
185 0 0       0 if ($@ =~ /^Attribute \((.*?)\) is required/) {
    0          
    0          
    0          
186 0         0 print STDERR "$1 is missing\n";
187             } elsif ($@ =~ /^Missing required arguments: (.*) at /) {
188 0         0 my @missing_required = split /,\s/, $1;
189 0         0 print STDERR "$_ is missing\n" for @missing_required;
190             } elsif ($@ =~ /^(.*?) required/) {
191 0         0 print STDERR "$1 is missing\n";
192             } elsif ($@ =~ /^isa check .*?failed: /) {
193 0         0 print STDERR substr($@, index($@, ':') + 2);
194             } else {
195 0         0 print STDERR $@;
196             }
197 0         0 return $class->osprey_usage(1, $usage);
198             }
199              
200 13 100       165 return $self unless $subcommand_class;
201              
202 4 100       34 use_module($subcommand_class) unless ref $subcommand_class;
203              
204 4         163 return $subcommand_class->new_with_options(
205             %params,
206             parent_command => $self,
207             invoked_as => "$params{invoked_as} $subcommand_name"
208             );
209             }
210              
211             sub parse_options {
212 14     14 0 1470 my ($class, %params) = @_;
213              
214 14         328 my %options = $class->_osprey_options;
215 14         453 my %config = $class->_osprey_config;
216 14         397 my %subcommands = $class->_osprey_subcommands;
217              
218 14         213 my ($options, $abbreviations) = _osprey_prepare_options(\%options, \%config);
219 14         40 @ARGV = _osprey_fix_argv(\%options, $abbreviations);
220              
221 14 100       46 my @getopt_options = %subcommands ? qw(require_order) : ();
222              
223 14 50       54 push @getopt_options, @{$config{getopt_options}} if defined $config{getopt_options};
  0         0  
224              
225 14         27 my $prog_name = $params{invoked_as};
226 14 100       36 $prog_name = Getopt::Long::Descriptive::prog_name() if !defined $prog_name;
227              
228 14         30 my $usage_str = $config{usage_string};
229 14 50       33 unless (defined $usage_str) {
230 14 100       32 if (%subcommands) {
231 10         28 $usage_str = "Usage: $prog_name %o [subcommand]";
232             } else {
233 4         21 $usage_str = "Usage: $prog_name %o";
234             }
235             }
236              
237 14         109 my ($opt, $usage) = describe_options(
238             $usage_str,
239             @$options,
240             [],
241             [ 'h', "show a short help message" ],
242             [ 'help', "show a long help message" ],
243             [ 'man', "show the manual" ],
244             { getopt_conf => \@getopt_options },
245             );
246              
247 14         11219 $usage->{prog_name} = $prog_name;
248 14         32 $usage->{target} = $class;
249              
250 14 50       42 if ($usage->{should_die}) {
251 0         0 return $class->osprey_usage(1, $usage);
252             }
253              
254 14         32 my %parsed_params;
255              
256 14         51 for my $name (keys %options, qw(h help man)) {
257 46         136 my $val = $opt->$name();
258 46 100       222 $parsed_params{$name} = $val if defined $val;
259             }
260              
261 14         83 return \%parsed_params, $usage;
262              
263             }
264              
265             sub osprey_usage {
266 0     0 0   my ($class, $code, @messages) = @_;
267              
268 0           my $usage;
269              
270 0 0 0       if (@messages && blessed($messages[0]) && $messages[0]->isa('CLI::Osprey::Descriptive::Usage')) {
      0        
271 0           $usage = shift @messages;
272             } else {
273 0           local @ARGV = ();
274 0           (undef, $usage) = $class->parse_options(help => 1);
275             }
276              
277 0           my $message;
278 0 0         $message = join("\n", @messages, '') if @messages;
279 0           $message .= $usage . "\n";
280              
281 0 0         if ($code) {
282 0           CORE::warn $message;
283             } else {
284 0           print $message;
285             }
286 0 0         exit $code if defined $code;
287 0           return;
288             }
289              
290             sub osprey_help {
291 0     0 0   my ($class, $code, $usage) = @_;
292              
293 0 0 0       unless (defined $usage && blessed($usage) && $usage->isa('CLI::Osprey::Descriptive::Usage')) {
      0        
294 0           local @ARGV = ();
295 0           (undef, $usage) = $class->parse_options(help => 1);
296             }
297              
298 0           my $message = $usage->option_help . "\n";
299              
300 0 0         if ($code) {
301 0           CORE::warn $message;
302             } else {
303 0           print $message;
304             }
305 0 0         exit $code if defined $code;
306 0           return;
307             }
308              
309             sub osprey_man {
310 0     0 0   my ($class, $usage, $output) = @_;
311              
312 0 0 0       unless (defined $usage && blessed($usage) && $usage->isa('CLI::Osprey::Descriptive::Usage')) {
      0        
313 0           local @ARGV = ();
314 0           (undef, $usage) = $class->parse_options(man => 1);
315             }
316              
317 0           my $tmpdir = Path::Tiny->tempdir;
318 0           my $podfile = $tmpdir->child("help.pod");
319 0           $podfile->spew_utf8($usage->option_pod);
320              
321 0           require Pod::Usage;
322 0           Pod::Usage::pod2usage(
323             -verbose => 2,
324             -input => "$podfile",
325             -exitval => 'NOEXIT',
326             -output => $output,
327             );
328              
329 0           exit(0);
330             }
331              
332             sub _osprey_subcommand_desc {
333 0     0     my ($class) = @_;
334 0           my %config = $class->_osprey_config;
335 0           return $config{desc};
336             }
337              
338             1;
339              
340             __END__