Class: ChefCLI::CLI
- Inherits:
-
Object
show all
- Includes:
- Chef::Mixin::ShellOut, Helpers, Mixlib::CLI
- Defined in:
- lib/chef-cli/cli.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods included from Helpers
#err, #git_bin_dir, #git_windows_bin_dir, #msg, #omnibus_bin_dir, #omnibus_embedded_bin_dir, #omnibus_env, #omnibus_install?, #omnibus_root, #package_home, #stderr, #stdout, #system_command, #usr_bin_path, #usr_bin_prefix
Constructor Details
#initialize(argv) ⇒ CLI
Returns a new instance of CLI.
56
57
58
59
|
# File 'lib/chef-cli/cli.rb', line 56
def initialize(argv)
@argv = argv
super() end
|
Instance Attribute Details
#argv ⇒ Object
Returns the value of attribute argv.
54
55
56
|
# File 'lib/chef-cli/cli.rb', line 54
def argv
@argv
end
|
Instance Method Details
#exit(n) ⇒ Object
147
148
149
|
# File 'lib/chef-cli/cli.rb', line 147
def exit(n)
Kernel.exit(n)
end
|
#handle_options ⇒ Object
If no subcommand is given, then this class is handling the CLI request.
88
89
90
91
92
93
94
95
96
|
# File 'lib/chef-cli/cli.rb', line 88
def handle_options
parse_options(argv)
if config[:version]
show_version
else
show_help
end
exit 0
end
|
#have_command?(name) ⇒ Boolean
155
156
157
|
# File 'lib/chef-cli/cli.rb', line 155
def have_command?(name)
commands_map.have_command?(name)
end
|
#instantiate_subcommand(name) ⇒ Object
171
172
173
|
# File 'lib/chef-cli/cli.rb', line 171
def instantiate_subcommand(name)
commands_map.instantiate(name)
end
|
#option?(param) ⇒ Boolean
167
168
169
|
# File 'lib/chef-cli/cli.rb', line 167
def option?(param)
param =~ /^-/
end
|
#run(enforce_license: false) ⇒ Object
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# File 'lib/chef-cli/cli.rb', line 61
def run(enforce_license: false)
sanity_check!
subcommand_name, *subcommand_params = argv
if subcommand_name.nil? || option?(subcommand_name)
handle_options
elsif have_command?(subcommand_name)
subcommand = instantiate_subcommand(subcommand_name)
exit_code = subcommand.run_with_default_options(enforce_license, subcommand_params)
exit normalized_exit_code(exit_code)
else
err "Unknown command `#{subcommand_name}'."
show_help
exit 1
end
rescue OptionParser::InvalidOption => e
err(e.message)
show_help
exit 1
end
|
#show_help ⇒ Object
135
136
137
138
139
140
141
142
143
144
145
|
# File 'lib/chef-cli/cli.rb', line 135
def show_help
msg(banner)
msg("\nAvailable Commands:")
justify_length = subcommands.map(&:length).max + 2
subcommand_specs.each do |name, spec|
next if spec.hidden
msg(" #{"#{name}".ljust(justify_length)}#{spec.description}")
end
end
|
#show_version ⇒ Object
98
99
100
101
102
103
104
|
# File 'lib/chef-cli/cli.rb', line 98
def show_version
if omnibus_install?
show_version_via_version_manifest
else
show_version_via_shell_out
end
end
|
#show_version_via_shell_out ⇒ Object
#show_version_via_version_manifest ⇒ Object
#subcommand_specs ⇒ Object
163
164
165
|
# File 'lib/chef-cli/cli.rb', line 163
def subcommand_specs
commands_map.command_specs
end
|
#subcommands ⇒ Object
159
160
161
|
# File 'lib/chef-cli/cli.rb', line 159
def subcommands
commands_map.command_names
end
|