Class: Puppet::Util::CommandLine::PuppetOptionParser
- Defined in:
- lib/puppet/util/command_line/puppet_option_parser.rb
Overview
This is a command line option parser. It is intended to have an API that is very similar to
the ruby stdlib 'OptionParser' API, for ease of integration into our existing code... however,
However, we've removed the OptionParser-based implementation and are only maintaining the
it's implemented based on the third-party "trollop" library. This was done because there
are places where the stdlib OptionParser is not flexible enough to meet our needs.
Instance Attribute Summary collapse
-
#ignore_invalid_options ⇒ Object
This parameter, if set, will tell the underlying option parser not to throw an exception if we pass it options that weren’t explicitly registered.
Instance Method Summary collapse
-
#initialize(usage_msg = nil) ⇒ PuppetOptionParser
constructor
A new instance of PuppetOptionParser.
- #on(*args, &block) ⇒ Object
- #parse(*args) ⇒ Object
Constructor Details
#initialize(usage_msg = nil) ⇒ PuppetOptionParser
Returns a new instance of PuppetOptionParser.
20 21 22 23 24 25 26 27 28 |
# File 'lib/puppet/util/command_line/puppet_option_parser.rb', line 20 def initialize(usage_msg = nil) require_relative '../../../puppet/util/command_line/trollop' @create_default_short_options = false @parser = Trollop::Parser.new do usage_msg end end |
Instance Attribute Details
#ignore_invalid_options ⇒ Object
This parameter, if set, will tell the underlying option parser not to throw an
exception if we pass it options that weren't explicitly registered. We need this
capability because we need to be able to pass all of the command-line options before
we know which application/face they are going to be running, but the app/face
may specify additional command-line arguments that are valid for that app/face.
35 36 37 |
# File 'lib/puppet/util/command_line/puppet_option_parser.rb', line 35 def @ignore_invalid_options end |
Instance Method Details
#on(*args, &block) ⇒ Object
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 |
# File 'lib/puppet/util/command_line/puppet_option_parser.rb', line 41 def on(*args, &block) # The 2nd element is an optional "short" representation. case args.length when 3 long, desc, type = args when 4 long, short, desc, type = args else raise ArgumentError, _("this method only takes 3 or 4 arguments. Given: %{args}") % { args: args.inspect } end = { :long => long, :short => short, :required => false, :callback => pass_only_last_value_on_to(block), :multi => true, } case type when :REQUIRED [:type] = :string when :NONE [:type] = :flag else raise PuppetOptionError, _("Unsupported type: '%{type}'") % { type: type } end @parser.opt long.sub("^--", "").intern, desc, end |
#parse(*args) ⇒ Object
72 73 74 75 76 77 78 79 80 |
# File 'lib/puppet/util/command_line/puppet_option_parser.rb', line 72 def parse(*args) args = args[0] if args.size == 1 and args[0].is_a?(Array) args_copy = args.dup begin @parser.parse args_copy rescue Puppet::Util::CommandLine::Trollop::CommandlineError => err raise PuppetOptionError.new(_("Error parsing arguments"), err) end end |