optparse: Arguments as Arguments Unexpectedness

B

Ben Woodcroft

Hi,

I am trying to use the standard optionparser to read in some arguments,
but one of those arguments is an argument itself. Is this a bug?

opt.rb:

require 'optparse'
OptionParser.new do |opts|
opts.on('-a','--args [ARGUMENTS]',String,"arguments") {|v| puts "Found:
#{v}"}
end.parse!

EXPECTED:
$ ruby opt.rb -a "-d me"
Found: -d me

ACTUAL:
$ ruby opt.rb -a "-d me"
Found:
/usr/lib/ruby/1.8/optparse.rb:1445:in `complete': invalid option: -d me
(OptionParser::InvalidOption)
from /usr/lib/ruby/1.8/optparse.rb:1443:in `catch'
from /usr/lib/ruby/1.8/optparse.rb:1443:in `complete'
from /usr/lib/ruby/1.8/optparse.rb:1282:in `parse_in_order'
from /usr/lib/ruby/1.8/optparse.rb:1249:in `catch'
from /usr/lib/ruby/1.8/optparse.rb:1249:in `parse_in_order'
from /usr/lib/ruby/1.8/optparse.rb:1243:in `order!'
from /usr/lib/ruby/1.8/optparse.rb:1334:in `permute!'
from /usr/lib/ruby/1.8/optparse.rb:1355:in `parse!'
from opt.rb:3
 
B

Brian Candler

Ben said:
I am trying to use the standard optionparser to read in some arguments,
but one of those arguments is an argument itself. Is this a bug?

I don't think so. I think it's an ambiguity because you have declared
your -a flag to take an *optional* argument.

Suppose your OptionParser also honoured the -d option. It would need to
choose between "-a" with argument "-d me", and "-a" with no argument
followed by option "-d" with argument "me". OptionParser is taking the
view that anything which starts with a dash in that case is intended to
be the next option on the line. Otherwise, the argument to the -a flag
would hardly be optional if it always consumed the next string.

If your -a option *always* takes an argument, then declare it as such,
without the square brackets:

require 'optparse'
OptionParser.new do |opts|
opts.on('-a','--args ARGUMENTS',String,"arguments") {|v| puts "Found:
#{v}"}
end.parse!

$ ruby opt.rb -a "-d me"
Found:
-d me

Otherwise, your original code works as long as you include the flag and
its argument in the same position.

$ ruby opt.rb "-a-d me"
Found:
-d me
 
B

Ben Woodcroft

Brian said:
If your -a option *always* takes an argument, then declare it as such,
without the square brackets:

Thanks for the quick, informative answer and sorry for the stupidity.
ben
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top