Class: Eco::CLI::Config::OptionsSet
- Includes:
- Help
- Defined in:
- lib/eco/cli/config/options_set.rb
Defined Under Namespace
Classes: OptConfig
Instance Attribute Summary collapse
-
#core_config ⇒ Object
readonly
Returns the value of attribute core_config.
Instance Method Summary collapse
- #active_namespaces ⇒ Object
-
#active_options ⇒ Object
Options that have been invoked via CLI.
- #add(option, desc = nil, namespace: :general, &block) ⇒ Object
- #all_options ⇒ Object
- #any_non_general_space_active? ⇒ Boolean
-
#available(keys: false) ⇒ Object
Options that are known for active namespaces (CLI-present).
-
#help(refine: nil) ⇒ String
Summary of the options.
-
#initialize(core_config:) ⇒ OptionsSet
constructor
A new instance of OptionsSet.
- #namespaces ⇒ Object
-
#options_args(namespaces) ⇒ Array<String>
All the argument of the options in
namespaces
. - #process(io:) ⇒ Object
Constructor Details
#initialize(core_config:) ⇒ OptionsSet
Returns a new instance of OptionsSet.
11 12 13 14 |
# File 'lib/eco/cli/config/options_set.rb', line 11 def initialize(core_config:) @core_config = core_config @sets = {} end |
Instance Attribute Details
#core_config ⇒ Object (readonly)
Returns the value of attribute core_config.
7 8 9 |
# File 'lib/eco/cli/config/options_set.rb', line 7 def core_config @core_config end |
Instance Method Details
#active_namespaces ⇒ Object
117 118 119 120 121 122 123 |
# File 'lib/eco/cli/config/options_set.rb', line 117 def active_namespaces @active_namespaces ||= [].tap do |active| active << :general other = (namespaces - [:general]).select {|nm| SCR.arg?(nm)} active.concat(other) end end |
#active_options ⇒ Object
Options that have been invoked via CLI
90 91 92 93 94 95 96 97 98 |
# File 'lib/eco/cli/config/options_set.rb', line 90 def @active_options ||= sets.select do |namespace, _opts_set| active_namespace?(namespace) end.each_with_object([]) do |(namespace, opts_set), | opts_set.each do |arg, option| << option if active_option?(arg, namespace) end end end |
#add(option, desc = nil, namespace: :general, &block) ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/eco/cli/config/options_set.rb', line 62 def add(option, desc = nil, namespace: :general, &block) raise "Missing block to define the options builder" unless block_given? opts = [option].flatten.compact unless opts.empty? callback = block opts.each do |opt| msg = "Overriding CLI option '#{option}' in '#{namespace}' CLI case / namespace" puts msg if option_exists?(opt, namespace) (namespace)[opt] = OptConfig.new(opt, namespace, desc, callback) end end self end |
#all_options ⇒ Object
100 101 102 103 104 |
# File 'lib/eco/cli/config/options_set.rb', line 100 def sets.each_with_object([]) do |(_namespace, opts_set), | << opts_set.values end end |
#any_non_general_space_active? ⇒ Boolean
113 114 115 |
# File 'lib/eco/cli/config/options_set.rb', line 113 def any_non_general_space_active? (active_namespaces - [:general]).length.positive? end |
#available(keys: false) ⇒ Object
Options that are known for active namespaces (CLI-present)
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/eco/cli/config/options_set.rb', line 47 def available(keys: false) sets.select do |namespace, _opts_set| active_namespace?(namespace) end.each_value.with_object([]) do |opts_set, | .concat(opts_set.values) end.then do || next unless keys .map(&:name) end end |
#help(refine: nil) ⇒ String
Returns summary of the options.
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/eco/cli/config/options_set.rb', line 17 def help(refine: nil) indent = 2 spaces = any_non_general_space_active? ? active_namespaces : namespaces refinement = refine.is_a?(String)? " (containing: '#{refine}')" : "" ["The following are the available options#{refinement}:"].then do |lines| max_len = keys_max_len((spaces)) + indent spaces.each do |namespace| is_general = (namespace == :general) str_indent = is_general ? "" : " " * indent lines << help_line(namespace, "", max_len) unless is_general (namespace).select do |_arg, option| # rubocop:disable Style/HashEachMethods !refine.is_a?(String) || option.name.include?(refine) end.each do |_arg, option| lines << help_line("#{str_indent}#{option.name}", option.description, max_len) end end lines end.join("\n") end |
#namespaces ⇒ Object
106 107 108 109 110 111 |
# File 'lib/eco/cli/config/options_set.rb', line 106 def namespaces sets.keys.sort_by do |key| next 1 if key == :general 0 end end |
#options_args(namespaces) ⇒ Array<String>
Returns all the argument of the options in namespaces
.
40 41 42 43 44 |
# File 'lib/eco/cli/config/options_set.rb', line 40 def (namespaces) namespaces.each_with_object([]) do |space, args| args.concat((space).keys) end.uniq end |
#process(io:) ⇒ Object
78 79 80 81 82 83 84 85 86 87 |
# File 'lib/eco/cli/config/options_set.rb', line 78 def process(io:) msg = "You need to provide Eco::API::UseCases::BaseIO object. Given: #{io.class}" raise ArgumentError, msg unless io.is_a?(Eco::API::UseCases::BaseIO) .each do |option| option.callback.call(io., io.session) end io. end |