File Coverage

blib/lib/CLI/Osprey/Role.pm
Criterion Covered Total %
statement 129 190 67.8
branch 44 102 43.1
condition 10 47 21.2
subroutine 13 17 76.4
pod 0 5 0.0
total 196 361 54.2


line stmt bran cond sub pod time code
1             package CLI::Osprey::Role;
2 4     4   2310 use strict;
  4         8  
  4         106  
3 4     4   17 use warnings;
  4         6  
  4         98  
4 4     4   21 use Carp 'croak';
  4         15  
  4         199  
5 4     4   2930 use Path::Tiny ();
  4         41377  
  4         119  
6 4     4   38 use Scalar::Util qw(blessed);
  4         8  
  4         250  
7 4     4   77 use Module::Runtime 'use_module';
  4         14  
  4         34  
8              
9 4     4   2172 use CLI::Osprey::Descriptive;
  4         12  
  4         45  
10              
11             # ABSTRACT: Role for CLI::Osprey applications
12             our $VERSION = '0.06'; # VERSION
13             our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY
14              
15             sub _osprey_option_to_getopt {
16 3     3   10 my ($name, %attributes) = @_;
17 3         18 my $getopt = join('|', grep defined, ($name, $attributes{short}));
18 3 50 33     14 $getopt .= '+' if $attributes{repeatable} && !defined $attributes{format};
19 3 50       10 $getopt .= '!' if $attributes{negatable};
20 3 50       14 $getopt .= '=' . $attributes{format} if defined $attributes{format};
21 3 50 33     12 $getopt .= '@' if $attributes{repeatable} && defined $attributes{format};
22 3         25 return $getopt;
23             }
24              
25             sub _osprey_prepare_options {
26 13     13   30 my ($options, $config) = @_;
27              
28 13         35 my @getopt;
29             my %abbreviations;
30 13         0 my %fullnames;
31              
32             my @order = sort {
33 13         48 ($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 13         31 for my $option (@order) {
39 3         5 my %attributes = %{ $options->{$option} };
  3         20  
40              
41 3         6 push @{ $fullnames{ $attributes{option} } }, $option;
  3         18  
42             }
43              
44 13         44 for my $name (keys %fullnames) {
45 3 50       7 if (@{ $fullnames{$name} } > 1) {
  3         14  
46 0         0 croak "Multiple option attributes named $name: [@{ $fullnames{$name} }]";
  0         0  
47             }
48             }
49              
50 13         39 for my $option (@order) {
51 3         6 my %attributes = %{ $options->{$option} };
  3         13  
52              
53 3         8 my $name = $attributes{option};
54 3         7 my $doc = $attributes{doc};
55 3 50       13 $doc = "no documentation for $name" unless defined $doc;
56              
57 3 50       10 push @getopt, [] if $attributes{spacer_before};
58 3 50       16 push @getopt, [ _osprey_option_to_getopt($option, %attributes), $doc, ($attributes{hidden} ? { hidden => 1} : ()) ];
59 3 50       12 push @getopt, [] if $attributes{spacer_after};
60              
61 3         5 push @{ $abbreviations{$name} }, $option;
  3         11  
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 3 50       12 if ($config->{abbreviate}) {
67 3         13 for my $len (1 .. length($name) - 1) {
68 18         35 my $abbreviated = substr $name, 0, $len;
69 18 50       35 push @{ $abbreviations{$abbreviated} }, $name unless exists $fullnames{$abbreviated};
  18         69  
70             }
71             }
72             }
73              
74 13         46 return \@getopt, \%abbreviations;
75             }
76              
77             sub _osprey_fix_argv {
78 13     13   36 my ($options, $abbreviations) = @_;
79              
80 13         23 my @new_argv;
81              
82 13         40 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 5 100 33     64 if ($arg eq '--' or $arg eq '-' or $arg !~ /^-/) {
      66        
86 4         11 push @new_argv, $arg, @ARGV;
87 4         11 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         6 my ($dash, $negative, $arg_name_without_dash)
94             = $arg_name_with_dash =~ /^(-+)(no\-)?(.+)$/;
95              
96 1         3 my $option_name;
97            
98 1 50       5 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       6 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     10 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         2 push @new_argv, $arg_name;
118 1 0 33     5 if (defined $option_name && $options->{$option_name}{format}) {
119 0         0 push @new_argv, shift @ARGV;
120             }
121             }
122              
123 13         31 return @new_argv;
124             }
125              
126 4     4   4297 use Moo::Role;
  4         17  
  4         46  
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 12     12 0 53886 my ($class, %params) = @_;
140 12         373 my %config = $class->_osprey_config;
141              
142 12 50       354 local @ARGV = @ARGV if $config{protect_argv};
143              
144 12 100       43 if (!defined $params{invoked_as}) {
145 9         76 $params{invoked_as} = Getopt::Long::Descriptive::prog_name();
146             }
147              
148 12         103 my ($parsed_params, $usage) = $class->parse_options(%params);
149              
150 12 50       54 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 12         20 my %merged_params;
159 12 50       27 if ($config{prefer_commandline}) {
160 12         41 %merged_params = (%params, %$parsed_params);
161             } else {
162 0         0 %merged_params = (%$parsed_params, %params);
163             }
164              
165 12         293 my %subcommands = $class->_osprey_subcommands;
166 12         153 my ($subcommand_name, $subcommand_class);
167 12 100 66     47 if (@ARGV && $ARGV[0] ne '--') { # Check what to do with remaining options
168 3 50       20 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 3         9 $subcommand_name = shift @ARGV; # Remove it so the subcommand sees only options
173 3         9 $subcommand_class = $subcommands{$subcommand_name};
174 3 50       10 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 12         20 my $self;
184 12 50       22 unless (eval { $self = $class->new(%merged_params); 1 }) {
  12         130  
  12         6919  
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 12 100       150 return $self unless $subcommand_class;
201              
202 3         22 use_module($subcommand_class);
203              
204 3         147 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 13     13 0 1213 my ($class, %params) = @_;
213              
214 13         311 my %options = $class->_osprey_options;
215 13         379 my %config = $class->_osprey_config;
216 13         335 my %subcommands = $class->_osprey_subcommands;
217              
218 13         194 my ($options, $abbreviations) = _osprey_prepare_options(\%options, \%config);
219 13         46 @ARGV = _osprey_fix_argv(\%options, $abbreviations);
220              
221 13 100       39 my @getopt_options = %subcommands ? qw(require_order) : ();
222              
223 13 50       51 push @getopt_options, @{$config{getopt_options}} if defined $config{getopt_options};
  0         0  
224              
225 13         27 my $prog_name = $params{invoked_as};
226 13 100       35 $prog_name = Getopt::Long::Descriptive::prog_name() if !defined $prog_name;
227              
228 13         28 my $usage_str = $config{usage_string};
229 13 50       31 unless (defined $usage_str) {
230 13 100       27 if (%subcommands) {
231 9         26 $usage_str = "Usage: $prog_name %o [subcommand]";
232             } else {
233 4         14 $usage_str = "Usage: $prog_name %o";
234             }
235             }
236              
237 13         106 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 13         10065 $usage->{prog_name} = $prog_name;
248 13         28 $usage->{target} = $class;
249              
250 13 50       42 if ($usage->{should_die}) {
251 0         0 return $class->osprey_usage(1, $usage);
252             }
253              
254 13         19 my %parsed_params;
255              
256 13         46 for my $name (keys %options, qw(h help man)) {
257 42         112 my $val = $opt->$name();
258 42 100       193 $parsed_params{$name} = $val if defined $val;
259             }
260              
261 13         75 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__