Remove POD of a removed option.
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt.pm
1
2 package MooseX::Getopt;
3 use Moose::Role;
4
5 our $VERSION   = '0.20';
6 our $AUTHORITY = 'cpan:STEVAN';
7
8 use constant HAVE_GLD => not not eval { require Getopt::Long::Descriptive };
9
10 my @roles = ('MooseX::Getopt::Basic');
11 if (HAVE_GLD()) { push @roles, 'MooseX::Getopt::GLD' }
12
13 with @roles;
14
15 no Moose::Role; 1;
16
17 __END__
18
19 =pod
20
21 =head1 NAME
22
23 MooseX::Getopt - A Moose role for processing command line options
24
25 =head1 SYNOPSIS
26
27   ## In your class
28   package My::App;
29   use Moose;
30
31   with 'MooseX::Getopt';
32
33   has 'out' => (is => 'rw', isa => 'Str', required => 1);
34   has 'in'  => (is => 'rw', isa => 'Str', required => 1);
35
36   # ... rest of the class here
37
38   ## in your script
39   #!/usr/bin/perl
40
41   use My::App;
42
43   my $app = My::App->new_with_options();
44   # ... rest of the script here
45
46   ## on the command line
47   % perl my_app_script.pl -in file.input -out file.dump
48
49 =head1 DESCRIPTION
50
51 This is a role which provides an alternate constructor for creating
52 objects using parameters passed in from the command line.
53
54 This module attempts to DWIM as much as possible with the command line
55 params by introspecting your class's attributes. It will use the name
56 of your attribute as the command line option, and if there is a type
57 constraint defined, it will configure Getopt::Long to handle the option
58 accordingly.
59
60 You can use the trait L<MooseX::Getopt::Meta::Attribute::Trait> or the
61 attribute metaclass L<MooseX::Getopt::Meta::Attribute> to get non-default
62 commandline option names and aliases.
63
64 You can use the trait L<MooseX::Getopt::Meta::Attribute::Trait::NoGetopt>
65 or the attribute metaclass L<MooseX::Getopt::Meta::Attribute::NoGetopt>
66 to have C<MooseX::Getopt> ignore your attribute in the commandline options.
67
68 By default, attributes which start with an underscore are not given
69 commandline argument support, unless the attribute's metaclass is set
70 to L<MooseX::Getopt::Meta::Attribute>. If you don't want you accessors
71 to have the leading underscore in thier name, you can do this:
72
73   # for read/write attributes
74   has '_foo' => (accessor => 'foo', ...);
75
76   # or for read-only attributes
77   has '_bar' => (reader => 'bar', ...);
78
79 This will mean that Getopt will not handle a --foo param, but your
80 code can still call the C<foo> method.
81
82 If your class also uses a configfile-loading role based on
83 L<MooseX::ConfigFromFile>, such as L<MooseX::SimpleConfig>,
84 L<MooseX::Getopt>'s C<new_with_options> will load the configfile
85 specified by the C<--configfile> option (or the default you've
86 given for the configfile attribute) for you.
87
88 Options specified in multiple places follow the following
89 precendence order: commandline overrides configfile, which
90 overrides explicit new_with_options parameters.
91
92 =head2 Supported Type Constraints
93
94 =over 4
95
96 =item I<Bool>
97
98 A I<Bool> type constraint is set up as a boolean option with
99 Getopt::Long. So that this attribute description:
100
101   has 'verbose' => (is => 'rw', isa => 'Bool');
102
103 would translate into C<verbose!> as a Getopt::Long option descriptor,
104 which would enable the following command line options:
105
106   % my_script.pl --verbose
107   % my_script.pl --noverbose
108
109 =item I<Int>, I<Float>, I<Str>
110
111 These type constraints are set up as properly typed options with
112 Getopt::Long, using the C<=i>, C<=f> and C<=s> modifiers as appropriate.
113
114 =item I<ArrayRef>
115
116 An I<ArrayRef> type constraint is set up as a multiple value option
117 in Getopt::Long. So that this attribute description:
118
119   has 'include' => (
120       is      => 'rw',
121       isa     => 'ArrayRef',
122       default => sub { [] }
123   );
124
125 would translate into C<includes=s@> as a Getopt::Long option descriptor,
126 which would enable the following command line options:
127
128   % my_script.pl --include /usr/lib --include /usr/local/lib
129
130 =item I<HashRef>
131
132 A I<HashRef> type constraint is set up as a hash value option
133 in Getopt::Long. So that this attribute description:
134
135   has 'define' => (
136       is      => 'rw',
137       isa     => 'HashRef',
138       default => sub { {} }
139   );
140
141 would translate into C<define=s%> as a Getopt::Long option descriptor,
142 which would enable the following command line options:
143
144   % my_script.pl --define os=linux --define vendor=debian
145
146 =back
147
148 =head2 Custom Type Constraints
149
150 It is possible to create custom type constraint to option spec
151 mappings if you need them. The process is fairly simple (but a
152 little verbose maybe). First you create a custom subtype, like
153 so:
154
155   subtype 'ArrayOfInts'
156       => as 'ArrayRef'
157       => where { scalar (grep { looks_like_number($_) } @$_)  };
158
159 Then you register the mapping, like so:
160
161   MooseX::Getopt::OptionTypeMap->add_option_type_to_map(
162       'ArrayOfInts' => '=i@'
163   );
164
165 Now any attribute declarations using this type constraint will
166 get the custom option spec. So that, this:
167
168   has 'nums' => (
169       is      => 'ro',
170       isa     => 'ArrayOfInts',
171       default => sub { [0] }
172   );
173
174 Will translate to the following on the command line:
175
176   % my_script.pl --nums 5 --nums 88 --nums 199
177
178 This example is fairly trivial, but more complex validations are
179 easily possible with a little creativity. The trick is balancing
180 the type constraint validations with the Getopt::Long validations.
181
182 Better examples are certainly welcome :)
183
184 =head2 Inferred Type Constraints
185
186 If you define a custom subtype which is a subtype of one of the
187 standard L</Supported Type Constraints> above, and do not explicitly
188 provide custom support as in L</Custom Type Constraints> above,
189 MooseX::Getopt will treat it like the parent type for Getopt
190 purposes.
191
192 For example, if you had the same custom C<ArrayOfInts> subtype
193 from the examples above, but did not add a new custom option
194 type for it to the C<OptionTypeMap>, it would be treated just
195 like a normal C<ArrayRef> type for Getopt purposes (that is,
196 C<=s@>).
197
198 =head1 METHODS
199
200 =over 4
201
202 =item B<new_with_options (%params)>
203
204 This method will take a set of default C<%params> and then collect
205 params from the command line (possibly overriding those in C<%params>)
206 and then return a newly constructed object.
207
208 The special parameter C<argv>, if specified should point to an array  
209 reference with an array to use instead of C<@ARGV>.
210
211 If L<Getopt::Long/GetOptions> fails (due to invalid arguments),
212 C<new_with_options> will throw an exception.
213
214 If L<Getopt::Long::Descriptive> is installed and any of the following
215 command line params are passed, the program will exit with usage 
216 information. You can add descriptions for each option by including a
217 B<documentation> option for each attribute to document.
218
219   --?
220   --help
221   --usage
222
223 If you have L<Getopt::Long::Descriptive> a the C<usage> param is also passed to
224 C<new>.
225
226 =item B<ARGV>
227
228 This accessor contains a reference to a copy of the C<@ARGV> array
229 as it originally existed at the time of C<new_with_options>.
230
231 =item B<extra_argv>
232
233 This accessor contains an arrayref of leftover C<@ARGV> elements that
234 L<Getopt::Long> did not parse.  Note that the real C<@ARGV> is left
235 un-mangled.
236
237 =item B<meta>
238
239 This returns the role meta object.
240
241 =item B<HAVE_GLD>
242
243 A constant for internal use.
244
245 =back
246
247 =head1 BUGS
248
249 All complex software has bugs lurking in it, and this module is no
250 exception. If you find a bug please either email me, or add the bug
251 to cpan-RT.
252
253 =head1 AUTHOR
254
255 Stevan Little E<lt>stevan@iinteractive.comE<gt>
256
257 Brandon L. Black, E<lt>blblack@gmail.comE<gt>
258
259 Yuval Kogman, E<lt>nothingmuch@woobling.orgE<gt>
260
261 =head1 CONTRIBUTORS
262
263 Ryan D Johnson, E<lt>ryan@innerfence.comE<gt>
264
265 Drew Taylor, E<lt>drew@drewtaylor.comE<gt>
266
267 =head1 COPYRIGHT AND LICENSE
268
269 Copyright 2007-2008 by Infinity Interactive, Inc.
270
271 L<http://www.iinteractive.com>
272
273 This library is free software; you can redistribute it and/or modify
274 it under the same terms as Perl itself.
275
276 =cut