Sha256: 12281281d7d04876e8e862b176cd270a88a29e5eff981607dc1c82c026db37b0

Contents?: true

Size: 1.99 KB

Versions: 15

Compression:

Stored size: 1.99 KB

Contents

# -*- coding: binary -*-
require 'shellwords'

module Rex
module Parser

###
#
# This class parses arguments in a getopt style format, kind of.
# Unfortunately, the default ruby getopt implementation will only
# work on ARGV, so we can't use it.
#
###
class Arguments

  #
  # Specifies that an option is expected to have an argument
  #
  HasArgument = (1 << 0)

  #
  # Initializes the format list with an array of formats like:
  #
  # Arguments.new(
  #    '-b' => [ false, "some text" ]
  # )
  #
  def initialize(fmt)
    self.fmt = fmt
    # I think reduce is a better name for this method, but it doesn't exist
    # before 1.8.7, so use the stupid inject instead.
    self.longest = fmt.keys.inject(0) { |max, str|
      max = ((max > str.length) ? max : str.length)
    }
  end

  #
  # Takes a string and converts it into an array of arguments.
  #
  def self.from_s(str)
    Shellwords.shellwords(str)
  end

  #
  # Parses the supplied arguments into a set of options.
  #
  def parse(args, &block)
    skip_next = false

    args.each_with_index { |arg, idx|
      if (skip_next == true)
        skip_next = false
        next
      end

      if (arg.match(/^-/))
        cfs = arg[0..2]

        fmt.each_pair { |fmtspec, val|
          next if (fmtspec != cfs)

          param = nil

          if (val[0])
            param = args[idx+1]
            skip_next = true
          end

          yield fmtspec, idx, param
        }
      else
        yield nil, idx, arg
      end
    }
  end

  #
  # Returns usage information for this parsing context.
  #
  def usage
    txt = "\nOPTIONS:\n\n"

    fmt.sort.each { |entry|
      fmtspec, val = entry

      txt << "    #{fmtspec.ljust(longest)}" + ((val[0] == true) ? " <opt>  " : "        ")
      txt << val[1] + "\n"
    }

    txt << "\n"

    return txt
  end
  def include?(search)
    return fmt.include?(search)
  end

  def arg_required?(opt)
    fmt[opt][0] if fmt[opt]
  end

  attr_accessor :fmt     # :nodoc:
  attr_accessor :longest # :nodoc:

end

end
end

Version data entries

15 entries across 15 versions & 3 rubygems

Version Path
rex-2.0.13 lib/rex/parser/arguments.rb
rex-2.0.12 lib/rex/parser/arguments.rb
rex-2.0.11 lib/rex/parser/arguments.rb
rex-2.0.10 lib/rex/parser/arguments.rb
rex-2.0.9 lib/rex/parser/arguments.rb
rex-2.0.8 lib/rex/parser/arguments.rb
rex-2.0.7 lib/rex/parser/arguments.rb
rex-2.0.5 lib/rex/parser/arguments.rb
rex-2.0.4 lib/rex/parser/arguments.rb
dstruct-0.0.1 lib/rex/parser/arguments.rb
rex-2.0.3 lib/rex/parser/arguments.rb
librex-0.0.999 lib/rex/parser/arguments.rb
rex-2.0.2 lib/rex/parser/arguments.rb
librex-0.0.71 lib/rex/parser/arguments.rb
librex-0.0.70 lib/rex/parser/arguments.rb