Class Argvector
In: lib/more/facets/argvector.rb
Parent: Object

Argvector

Argvector provides a very simple means of parsing command line arguments.

Unlike other more complex libs this provides only the most basic and standard parsing functionality. In many cases that‘s all one really needs.

Usage is straight foward. Simply instantiate the class and query it for the particular "views" of the command line you want.

  cargs = Argvector.new("-a foo -b=2")

  cargs.parameters    #=> [['foo'],{'a'=>true,'b'=>'2'}]
  cargs.flags         #=> ['a']
  cargs.preoptions    #=> {'a'=>true}
  cargs.preflags      #=> ['a']
  cargs.subcommand    #=> ['foo', [], {'b'=>'2'}]

Methods

Attributes

argv  [R] 
arity  [R] 
line  [R] 

Public Class methods

Takes the command line string (or array) and options. Options have flags and end with a hash of option arity.

Public Instance methods

arguments()

Alias for operands

Parse flags takes the command line and transforms it such that flags (eg. -x and —x) are elemental associative arrays.

  line = "--foo hello --try=this"
  argv = Argvector.new(line)

  args = line.split(/\s/)
  argv.assoc_options(args)  #=> [ ["foo",true], "hello", ["try","this"] ]

Return flags, which are true options.

Format flag options. This converts the associative array of options/flags into a hash. Repeat options will be placed in arrays.

Split single letter option groupings into separate options. ie. -xyz => -x -y -z

Returns operand array.

Returns options hash.

Returns [operands, options], which is good for plugging directly into a method.

Like parameters but without allowing for duplicate options.

Basic parser partitions the command line into options and operands. Options are converted to a hash and the two parts are returned.

  line = "--trace stamp --file=VERSION"
  argv = Argvector.new(line)

  args, keys = *argv.parse

  args #=> ["stamp"]
  keys #=> {"trace"=>true, "file"=>"VERSION"}

Ensure arity is uniform.

First pass parser to split the command line into an array using Shellwords, if not already so divided.

Parse preoptions. A "preoption" is one that occurs before the first operans (if any).

Same as flags but only returns flags in the preoptions.

Returns a hash of options that occur before the first operand. This works well with subcommand to get the main command‘s options.

  line = "--trace stamp --file VERSION"
  cargs = Argvector.new(line)
  opts = cargs.preoptions
  opts #=> {"trace"=>true}
subcommand()

Assumes the first operand is a "subcommand" and returns it and the argments following it as another Arguments object.

TODO: This probably should be called ‘subcommand’.

Assumes the first operand is a "subcommand" and returns it and the argments following it as parameters.

[Validate]