Class: HammerCLI::Options::OptionDefinition

Inherits:
Clamp::Option::Definition
  • Object
show all
Defined in:
lib/hammer_cli/options/option_definition.rb

Direct Known Subclasses

Apipie::OptionDefinition

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(switches, type, description, options = {}) ⇒ OptionDefinition

Returns a new instance of OptionDefinition.



25
26
27
28
29
30
# File 'lib/hammer_cli/options/option_definition.rb', line 25

def initialize(switches, type, description, options = {})
  self.value_formatter = options.delete(:format)
  self.context_target = options.delete(:context_target)
  self.deprecated_switches = options.delete(:deprecated)
  super
end

Instance Attribute Details

#context_targetObject

Returns the value of attribute context_target.



22
23
24
# File 'lib/hammer_cli/options/option_definition.rb', line 22

def context_target
  @context_target
end

#deprecated_switchesObject

Returns the value of attribute deprecated_switches.



23
24
25
# File 'lib/hammer_cli/options/option_definition.rb', line 23

def deprecated_switches
  @deprecated_switches
end

#value_formatterObject

Returns the value of attribute value_formatter.



21
22
23
# File 'lib/hammer_cli/options/option_definition.rb', line 21

def value_formatter
  @value_formatter
end

Instance Method Details

#complete(value) ⇒ Object



32
33
34
35
36
37
38
# File 'lib/hammer_cli/options/option_definition.rb', line 32

def complete(value)
  if value_formatter.nil?
    []
  else
    value_formatter.complete(value)
  end
end

#default_conversion_blockObject



106
107
108
109
110
111
112
# File 'lib/hammer_cli/options/option_definition.rb', line 106

def default_conversion_block
  if !value_formatter.nil?
    value_formatter.method(:format)
  elsif flag?
    Clamp.method(:truthy?)
  end
end

#default_valueObject



114
115
116
117
118
119
120
121
122
123
124
# File 'lib/hammer_cli/options/option_definition.rb', line 114

def default_value
  if defined?(@default_value)
    if value_formatter
      value_formatter.format(@default_value)
    else
      @default_value
    end
  elsif multivalued?
    []
  end
end

#deprecation_message(switch) ⇒ Object



65
66
67
68
69
70
71
# File 'lib/hammer_cli/options/option_definition.rb', line 65

def deprecation_message(switch)
  if deprecated_switches.class <= String && switches.include?(switch)
    deprecated_switches
  elsif deprecated_switches.class <= Hash && deprecated_switches.keys.include?(switch)
    deprecated_switches[switch]
  end
end

#descriptionObject



73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/hammer_cli/options/option_definition.rb', line 73

def description
  if deprecated_switches.class <= String
    format_deprecation_msg(super, _('Deprecated: %{deprecated_msg}') % { deprecated_msg: deprecated_switches })
  elsif deprecated_switches.class <= Hash
    full_msg = deprecated_switches.map do |flag, msg|
      _('%{flag} is deprecated: %{deprecated_msg}') % { flag: flag, deprecated_msg: msg }
    end.join(', ')
    format_deprecation_msg(super, full_msg)
  else
    super
  end
end

#format_descriptionObject



86
87
88
89
90
91
92
# File 'lib/hammer_cli/options/option_definition.rb', line 86

def format_description
  if value_formatter.nil?
    ""
  else
    value_formatter.description
  end
end

#handles?(switch) ⇒ Boolean

Returns:

  • (Boolean)


55
56
57
58
59
60
61
62
63
# File 'lib/hammer_cli/options/option_definition.rb', line 55

def handles?(switch)
  message = _("Warning: Option %{option} is deprecated. %{message}")
  if deprecated_switches.class <= String && switches.include?(switch)
    warn(message % { :option => switch, :message => deprecated_switches })
  elsif deprecated_switches.class <= Hash && deprecated_switches.keys.include?(switch)
    warn(message % { :option => switch, :message => deprecated_switches[switch] })
  end
  super(switch)
end

#help_lhsObject



40
41
42
# File 'lib/hammer_cli/options/option_definition.rb', line 40

def help_lhs
  super
end

#help_rhsObject



44
45
46
47
48
49
50
51
52
53
# File 'lib/hammer_cli/options/option_definition.rb', line 44

def help_rhs
  lines = [
    description.strip,
    format_description.strip,
    value_description.strip
  ]

  rhs = lines.reject(&:empty?).join("\n")
  rhs.empty? ? " " : rhs
end

#value_descriptionObject



94
95
96
97
98
99
100
101
102
103
104
# File 'lib/hammer_cli/options/option_definition.rb', line 94

def value_description
  default_sources = [
    ("$#{@environment_variable}" if defined?(@environment_variable)),
    (@default_value.inspect if defined?(@default_value))
  ].compact

  str = ""
  str += _("Can be specified multiple times. ") if multivalued?
  str += _("Default: ") + default_sources.join(_(", or ")) unless default_sources.empty?
  str
end