summaryrefslogtreecommitdiff
path: root/doc/optparse/option_params.rdoc
blob: b2e4e1a33ce5e2fd5fdd97490fa47aa3013c0dbd (plain)
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
== Parameters for New Options

Option-creating methods in \OptionParser
accept arguments that determine the behavior of a new option:

- OptionParser#on
- OptionParser#on_head
- OptionParser#on_tail
- OptionParser#define
- OptionParser#define_head
- OptionParser#define_tail
- OptionParser#make_switch

The code examples on this page use:

- OptionParser#on, to define options.
- OptionParser#parse!, to parse the command line.
- Built-in option <tt>--help</tt>, to display defined options.

Contents:

- {Option Names}[#label-Option+Names]
  - {Short Names}[#label-Short+Names]
    - {Simple Short Names}[#label-Simple+Short+Names]
    - {Short Names with Required Arguments}[#label-Short+Names+with+Required+Arguments]
    - {Short Names with Optional Arguments}[#label-Short+Names+with+Optional+Arguments]
    - {Short Names from Range}[#label-Short+Names+from+Range]
  - {Long Names}[#label-Long+Names]
    - {Simple Long Names}[#label-Simple+Long+Names]
    - {Long Names with Required Arguments}[#label-Long+Names+with+Required+Arguments]
    - {Long Names with Optional Arguments}[#label-Long+Names+with+Optional+Arguments]
    - {Long Names with Negation}[#label-Long+Names+with+Negation]
  - {Mixed Names}[#label-Mixed+Names]
- {Argument Styles}[#label-Argument+Styles]
- {Argument Values}[#label-Argument+Values]
  - {Explicit Argument Values}[#label-Explicit+Argument+Values]
    - {Explicit Values in Array}[#label-Explicit+Values+in+Array]
    - {Explicit Values in Hash}[#label-Explicit+Values+in+Hash]
  - {Argument Value Patterns}[#label-Argument+Value+Patterns]
- {Argument Converters}[#label-Argument+Converters]
- {Descriptions}[#label-Descriptions]
- {Option Handlers}[#label-Option+Handlers]
  - {Handler Blocks}[#label-Handler+Blocks]
  - {Handler Procs}[#label-Handler+Procs]
  - {Handler Methods}[#label-Handler+Methods]

=== Option Names

There are two kinds of option names:

- Short option name, consisting of a single hyphen and a single character.
- Long option name, consisting of two hyphens and one or more characters.

==== Short Names

===== Simple Short Names

File +short_simple.rb+ defines two options:

- One with short name <tt>-x</tt>.
- The other with two short names, in effect, aliases, <tt>-1</tt> and <tt>-%</tt>.

 :include: ruby/short_simple.rb

Executions:

  $ ruby short_simple.rb --help
  Usage: short_simple [options]
      -x                               One short name
      -1, -%                           Two short names (aliases)
  $ ruby short_simple.rb -x
  ["-x", true]
  $ ruby short_simple.rb -1 -x -%
  ["-1 or -%", true]
  ["-x", true]
  ["-1 or -%", true]

===== Short Names with Required Arguments

A short name followed (no whitespace) by a dummy word
defines an option that requires an argument.

File +short_required.rb+ defines an option <tt>-x</tt>
that requires an argument.

  :include: ruby/short_required.rb

Executions:

  $ ruby short_required.rb --help
  Usage: short_required [options]
      -xXXX                            Short name with required argument
  $ ruby short_required.rb -x
  short_required.rb:6:in `<main>': missing argument: -x (OptionParser::MissingArgument)
  $ ruby short_required.rb -x FOO
  ["-x", "FOO"]

===== Short Names with Optional Arguments

A short name followed (with whitespace) by a dummy word in square brackets
defines an option that allows an optional argument.

File +short_optional.rb+ defines an option <tt>-x</tt>
that allows an optional argument.

  :include: ruby/short_optional.rb

Executions:

  $ ruby short_optional.rb --help
  Usage: short_optional [options]
      -x [XXX]                         Short name with optional argument
  $ ruby short_optional.rb -x
  ["-x", nil]
  $ ruby short_optional.rb -x FOO
  ["-x", "FOO"]

===== Short Names from Range

You can define an option with multiple short names
taken from a range of characters.
The parser yields both the actual character cited and the value.

File +short_range.rb+ defines an option with short names
for all printable characters from <tt>!</tt> to <tt>~</tt>:

  :include: ruby/short_range.rb

Executions:

  $ ruby short_range.rb --help
  Usage: short_range [options]
      -[!-~]                           Short names in (very large) range
  $ ruby short_range.rb -!
  ["!-~", "!", nil]
  $ ruby short_range.rb -!
  ["!-~", "!", nil]
  $ ruby short_range.rb -A
  ["!-~", "A", nil]
  $ ruby short_range.rb -z
  ["!-~", "z", nil]

==== Long Names

===== Simple Long Names

File +long_simple.rb+ defines two options:

- One with long name <tt>-xxx</tt>.
- The other with two long names, in effect, aliases,
  <tt>--y1%</tt> and <tt>--z2#</tt>.

  :include: ruby/long_simple.rb

Executions:

  $ ruby long_simple.rb --help
  Usage: long_simple [options]
          --xxx                        One long name
          --y1%, --z2#                 Two long names (aliases)
  $ ruby long_simple.rb --xxx
  ["--xxx", true]
  $ ruby long_simple.rb --y1% --xxx --z2#
  ["--y1% or --z2#", true]
  ["--xxx", true]
  ["--y1% or --z2#", true]

===== Long Names with Required Arguments

A long name followed (with whitespace) by a dummy word
defines an option that requires an argument.

File +long_required.rb+ defines an option <tt>--xxx</tt>
that requires an argument.

  :include: ruby/long_required.rb

Executions:

  $ ruby long_required.rb --help
  Usage: long_required [options]
          --xxx XXX                    Long name with required argument
  $ ruby long_required.rb --xxx
  long_required.rb:6:in `<main>': missing argument: --xxx (OptionParser::MissingArgument)
  $ ruby long_required.rb --xxx FOO
  ["--xxx", "FOO"]

===== Long Names with Optional Arguments

A long name followed (with whitespace) by a dummy word in square brackets
defines an option that allows an optional argument.

File +long_optional.rb+ defines an option <tt>--xxx</tt>
that allows an optional argument.

  :include: ruby/long_optional.rb

Executions:

  $ ruby long_optional.rb --help
  Usage: long_optional [options]
          --xxx [XXX]                  Long name with optional argument
  $ ruby long_optional.rb --xxx
  ["--xxx", nil]
  $ ruby long_optional.rb --xxx FOO
  ["--xxx", "FOO"]

===== Long Names with Negation

A long name may be defined with both positive and negative senses.

File +long_with_negation.rb+ defines an option that has both senses.

  :include: ruby/long_with_negation.rb

Executions:

  $ ruby long_with_negation.rb --help
  Usage: long_with_negation [options]
          --[no-]binary                Long name with negation
  $ ruby long_with_negation.rb --binary
  [true, TrueClass]
  $ ruby long_with_negation.rb --no-binary
  [false, FalseClass]

==== Mixed Names

An option may have both short and long names.

File +mixed_names.rb+ defines a mixture of short and long names.

  :include: ruby/mixed_names.rb

Executions:

  $ ruby mixed_names.rb --help
Usage: mixed_names [options]
    -x, --xxx                        Short and long, no argument
    -y, --yyyYYY                     Short and long, required argument
    -z, --zzz [ZZZ]                  Short and long, optional argument
  $ ruby mixed_names.rb -x
  ["--xxx", true]
  $ ruby mixed_names.rb --xxx
  ["--xxx", true]
  $ ruby mixed_names.rb -y
  mixed_names.rb:12:in `<main>': missing argument: -y (OptionParser::MissingArgument)
  $ ruby mixed_names.rb -y FOO
  ["--yyy", "FOO"]
  $ ruby mixed_names.rb --yyy
  mixed_names.rb:12:in `<main>': missing argument: --yyy (OptionParser::MissingArgument)
  $ ruby mixed_names.rb --yyy BAR
  ["--yyy", "BAR"]
  $ ruby mixed_names.rb -z
  ["--zzz", nil]
  $ ruby mixed_names.rb -z BAZ
  ["--zzz", "BAZ"]
  $ ruby mixed_names.rb --zzz
  ["--zzz", nil]
  $ ruby mixed_names.rb --zzz BAT
  ["--zzz", "BAT"]

=== Argument Keywords

As seen above, a given option name string may itself
indicate whether the option has no argument, a required argument,
or an optional argument.

An alternative is to use a separate symbol keyword,
which is one of <tt>:NONE</tt> (the default),
<tt>:REQUIRED</tt>, <tt>:OPTIONAL</tt>.

File +argument_keywords.rb+ defines an option with a required argument.

  :include: ruby/argument_keywords.rb

Executions:

  $ ruby argument_keywords.rb --help
  Usage: argument_keywords [options]
      -x, --xxx                        Required argument
  $ ruby argument_styles.rb --xxx
  argument_styles.rb:6:in `<main>': missing argument: --xxx (OptionParser::MissingArgument)
  $ ruby argument_styles.rb --xxx FOO
  ["--xxx", "FOO"]

=== Argument Strings

Still another way to specify a required argument
is to define it in a string separate from the name string.

File +argument_strings.rb+ defines an option with a required argument.

  :include: ruby/argument_strings.rb

Executions:

  $ ruby argument_strings.rb --help
  Usage: argument_strings [options]
      -x, --xxx=XXX                    Required argument
  $ ruby argument_strings.rb --xxx
  argument_strings.rb:9:in `<main>': missing argument: --xxx (OptionParser::MissingArgument)
  $ ruby argument_strings.rb --xxx FOO
  ["--xxx", "FOO"]

=== Argument Values

Permissible argument values may be restricted
either by specifying explicit values
or by providing a pattern that the given value must match.

==== Explicit Argument Values

You can specify argument values in either of two ways:

- Specify values an array of strings.
- Specify values a hash.

===== Explicit Values in Array

You can specify explicit argument values in an array of strings.
The argument value must be one of those strings, or an unambiguous abbreviation.

File +explicit_array_values.rb+ defines options with explicit argument values.

  :include: ruby/explicit_array_values.rb

Executions:

  $ ruby explicit_array_values.rb --help
  Usage: explicit_array_values [options]
      -xXXX                            Values for required argument
      -y [YYY]                         Values for optional argument
  $ ruby explicit_array_values.rb -x
  explicit_array_values.rb:9:in `<main>': missing argument: -x (OptionParser::MissingArgument)
  $ ruby explicit_array_values.rb -x foo
  ["-x", "foo"]
  $ ruby explicit_array_values.rb -x f
  ["-x", "foo"]
  $ ruby explicit_array_values.rb -x bar
  ["-x", "bar"]
  $ ruby explicit_array_values.rb -y ba
  explicit_array_values.rb:9:in `<main>': ambiguous argument: -y ba (OptionParser::AmbiguousArgument)
  $ ruby explicit_array_values.rb -x baz
  explicit_array_values.rb:9:in `<main>': invalid argument: -x baz (OptionParser::InvalidArgument)


===== Explicit Values in Hash

You can specify explicit argument values in a hash with string keys.
The value passed must be one of those keys, or an unambiguous abbreviation;
the value yielded will be the value for that key.

File +explicit_hash_values.rb+ defines options with explicit argument values.

  :include: ruby/explicit_hash_values.rb

Executions:

  $ ruby explicit_hash_values.rb --help
  Usage: explicit_hash_values [options]
      -xXXX                            Values for required argument
      -y [YYY]                         Values for optional argument
  $ ruby explicit_hash_values.rb -x
  explicit_hash_values.rb:9:in `<main>': missing argument: -x (OptionParser::MissingArgument)
  $ ruby explicit_hash_values.rb -x foo
  ["-x", 0]
  $ ruby explicit_hash_values.rb -x f
  ["-x", 0]
  $ ruby explicit_hash_values.rb -x bar
  ["-x", 1]
  $ ruby explicit_hash_values.rb -x baz
  explicit_hash_values.rb:9:in `<main>': invalid argument: -x baz (OptionParser::InvalidArgument)
  $ ruby explicit_hash_values.rb -y
  ["-y", nil]
  $ ruby explicit_hash_values.rb -y baz
  ["-y", 2]
  $ ruby explicit_hash_values.rb -y bat
  ["-y", 3]
  $ ruby explicit_hash_values.rb -y ba
  explicit_hash_values.rb:9:in `<main>': ambiguous argument: -y ba (OptionParser::AmbiguousArgument)
  $ ruby explicit_hash_values.rb -y bam
  ["-y", nil]

==== Argument Value Patterns

You can restrict permissible argument values
by specifying a Regexp that the given argument must match.

File +matched_values.rb+ defines options with matched argument values.

  :include: ruby/matched_values.rb

Executions:

  $ ruby matched_values.rb --help
  Usage: matched_values [options]
          --xxx XXX                    Matched values
  $ ruby matched_values.rb --xxx foo
  ["--xxx", "foo"]
  $ ruby matched_values.rb --xxx FOO
  ["--xxx", "FOO"]
  $ ruby matched_values.rb --xxx bar
  matched_values.rb:6:in `<main>': invalid argument: --xxx bar (OptionParser::InvalidArgument)

=== Argument Converters

An option can specify that its argument is to be converted
from the default \String to an instance of another class.

There are a number of built-in converters.
You can also define custom converters.

See {Argument Converters}[./argument_converters.rdoc].

=== Descriptions

A description parameter is any string parameter
that is not recognized as an
{option name}[#label-Option+Names] or a
{terminator}[#label-Terminators];
in other words, it does not begin with a hypnen.

You may give any number of description parameters;
each becomes a line in the text generated by option <tt>--help</tt>.

File +descriptions.rb+ has six strings in its array +descriptions+.
These are all passed as parameters to OptionParser#on, so that they
all, line for line, become the option's description.

  :include: ruby/descriptions.rb

Executions:

  $ ruby descriptions.rb --help
  Usage: descriptions [options]
          --xxx                        Lorem ipsum dolor sit amet, consectetuer
                                       adipiscing elit. Aenean commodo ligula eget.
                                       Aenean massa. Cum sociis natoque penatibus
                                       et magnis dis parturient montes, nascetur
                                       ridiculus mus. Donec quam felis, ultricies
                                       nec, pellentesque eu, pretium quis, sem.
  $ ruby descriptions.rb --xxx
  ["--xxx", true]

=== Option Handlers

The handler for an option is an executable that will be called
when the option is encountered.  The handler may be:

- A block (this is most often seen).
- A proc.
- A method.

==== Handler Blocks

An option hadler may be a block.

File +block.rb+ defines an option that has a handler block.

  :include: ruby/block.rb

Executions:

  $ ruby block.rb --help
  Usage: block [options]
          --xxx                        Option with no argument
          --yyy YYY                    Option with required argument
  $ ruby block.rb --xxx
  ["Handler block for -xxx called with value:", true]
  $ ruby block.rb --yyy FOO
  ["Handler block for -yyy called with value:", "FOO"]

==== Handler Procs

An option handler may be a Proc.

File +proc.rb+ defines an option that has a handler proc.

  :include: ruby/proc.rb

Executions:

  $ ruby proc.rb --help
  Usage: proc [options]
          --xxx                        Option with no argument
          --yyy YYY                    Option with required argument
  $ ruby proc.rb --xxx
  ["Handler proc for -xxx called with value:", true]
  $ ruby proc.rb --yyy FOO
  ["Handler proc for -yyy called with value:", "FOO"]

==== Handler Methods

An option handler may be a Method.

File +proc.rb+ defines an option that has a handler method.

  :include: ruby/method.rb

Executions:

  $ ruby method.rb --help
  Usage: method [options]
          --xxx                        Option with no argument
          --yyy YYY                    Option with required argument
  $ ruby method.rb --xxx
  ["Handler method for -xxx called with value:", true]
  $ ruby method.rb --yyy FOO
  ["Handler method for -yyy called with value:", "FOO"]