class MiGA::Cli

MiGA Command Line Interface API.

Attributes

action[RW]

Action to launch, an object inheriting from MiGA::Cli::Action

argv[RW]

The unparsed CLI parameters (except the task), an Array of String

data[R]

Parsed values as a Hash

defaults[RW]

Default values as a Hash

expect_files[RW]

If files are expected after the parameters, a boolean

expect_operation[RW]

If an operation verb preceding all other arguments is to be expected

files[RW]

Files passed after all other options, if +#expect_files = true+

interactive[RW]

Interactivity with the user is expected

operation[RW]

Operation preceding all other options, if +#expect_operation = true+

opt_common[W]

Include common options, a boolean (true by default)

original_argv[RW]

The original ARGV passed to the CLI, an Array of String

task[RW]

Task to execute, a symbol

Public Class Methods

EXECS() click to toggle source
# File lib/miga/cli/base.rb, line 113
def EXECS
  @@EXECS
end
FILE_REGEXP(paired = false) click to toggle source
# File lib/miga/cli/base.rb, line 117
def FILE_REGEXP(paired = false)
  paired ? @@PAIRED_FILE_REGEXP : @@FILE_REGEXP
end
TASK_ALIAS() click to toggle source
# File lib/miga/cli/base.rb, line 109
def TASK_ALIAS
  @@TASK_ALIAS
end
TASK_DESC() click to toggle source
# File lib/miga/cli/base.rb, line 105
def TASK_DESC
  @@TASK_DESC
end
new(argv) click to toggle source
# File lib/miga/cli.rb, line 65
def initialize(argv)
  @data = {}
  @defaults = { verbose: false, tabular: false }
  @opt_common = true
  @original_argv = argv.dup
  @objects = {}
  if argv[0].nil? or argv[0].to_s[0] == '-'
    @task = :generic
  else
    @task = argv.shift.to_sym
    @task = @@TASK_ALIAS[task] unless @@TASK_ALIAS[task].nil?
  end
  @argv = argv
  reset_action
end

Public Instance Methods

[](k) click to toggle source

Access parsed data

# File lib/miga/cli.rb, line 153
def [](k)
  k = k.to_sym
  @data[k].nil? ? @defaults[k] : @data[k]
end
[]=(k, v) click to toggle source

Set parsed data

# File lib/miga/cli.rb, line 160
def []=(k, v)
  @data[k.to_sym] = v
end
advance(*par) click to toggle source

Same as MiGA::MiGA#advance, but checks if the CLI is verbose

Calls superclass method MiGA::MiGA#advance
# File lib/miga/cli.rb, line 119
def advance(*par)
  super(*par) if self[:verbose]
end
ask_user(question, default = nil, answers = nil, force = false) click to toggle source

Ask a question question to the user (requires +#interactive = true+) The default is used if the answer is empty The answers are supported values, unless nil If –auto, all questions are anwered with default unless force

# File lib/miga/cli.rb, line 128
def ask_user(question, default = nil, answers = nil, force = false)
  ans = " (#{answers.join(' / ')})" unless answers.nil?
  dft = " [#{default}]" unless default.nil?
  print "#{question}#{ans}#{dft} > "
  if self[:auto] && !force
    puts ''
  else
    y = gets.chomp
  end
  y = default.to_s if y.nil? or y.empty?
  unless answers.nil? or answers.map(&:to_s).include?(y)
    warn "Answer not recognized: '#{y}'"
    return ask_user(question, default, answers, force)
  end
  y
end
defaults=(hsh) click to toggle source

Set default values in the Hash hsh

# File lib/miga/cli.rb, line 147
def defaults=(hsh)
  hsh.each { |k, v| @defaults[k] = v }
end
ensure_par(req, msg = '%s is mandatory: please provide %s') click to toggle source

Ensure that these parameters have been passed to the CLI, as defined by par, a Hash with object names as keys and parameter flag as values. If missing, raise an error with message msg

# File lib/miga/cli.rb, line 212
def ensure_par(req, msg = '%<name>s is mandatory: please provide %<flag>s')
  req.each do |k, v|
    raise (msg % { name: k, flag: v }) if self[k].nil?
  end
end
ensure_type(klass) click to toggle source

Ensure that “type” is passed and valid for the given klass

# File lib/miga/cli.rb, line 220
def ensure_type(klass)
  ensure_par(type: '-t')
  if klass.KNOWN_TYPES[self[:type]].nil?
    raise "Unrecognized type: #{self[:type]}"
  end
end
launch(abort_on_error = false) click to toggle source

Perform the task requested (see task); if abort_on_error, abort on error

# File lib/miga/cli.rb, line 178
def launch(abort_on_error = false)
  begin
    raise "See `miga -h`" if action.nil?

    action.launch
  rescue => err
    $stderr.puts "Exception: #{err}"
    $stderr.puts ''
    err.backtrace.each { |l| $stderr.puts "DEBUG: #{l}" }
    abort if abort_on_error
    err
  end
end
parse(&fun) click to toggle source

Parse the argv parameters

# File lib/miga/cli.rb, line 194
def parse(&fun)
  if expect_operation
    @operation = @argv.shift unless argv.first =~ /^-/
  end
  OptionParser.new do |opt|
    banner(opt)
    fun[opt]
    opt_common(opt)
  end.parse!(@argv)
  if expect_files
    @files = argv
  end
end
print(*par) click to toggle source

Print par. If the first parameter is IO, the output is sent there, otherwise it's sent to +$stdout+

puts(*par) click to toggle source

Print par, ensuring new line at the end. If the first parameter is IO, the output is sent there, otherwise it's sent to +$stdout+

# File lib/miga/cli.rb, line 85
def puts(*par)
  io = par.first.is_a?(IO) ? par.shift : $stdout
  io.puts(*par)
end
reset_action() click to toggle source

Redefine action based on task

# File lib/miga/cli.rb, line 166
def reset_action
  @action = nil
  if @@EXECS.include? task
    @action = Action.load(task, self)
  else
    warn "No action set for #{task}"
  end
end
say(*par) click to toggle source

Print par ensuring new line at the end, iff –verbose. Date/time each line. If the first parameter is IO, the output is sent there, otherwise it's sent to +$stderr+

Calls superclass method MiGA::MiGA#say
# File lib/miga/cli.rb, line 111
def say(*par)
  return unless self[:verbose]

  super(*par)
end
table(header, values, io = $stdout) click to toggle source

Display a table with headers header and contents values, both Array. The output is printed to io

# File lib/miga/cli.rb, line 102
def table(header, values, io = $stdout)
  self.puts(io, MiGA.tabulate(header, values, self[:tabular]))
end
task_description() click to toggle source

Task description

# File lib/miga/cli.rb, line 229
def task_description
  @@TASK_DESC[task]
end