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