Class: VMC::Cli::Runner

Inherits:
Object show all
Defined in:
lib/cli/usage.rb,
lib/cli/runner.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = []) ⇒ Runner

Returns a new instance of Runner.



17
18
19
20
21
# File 'lib/cli/runner.rb', line 17

def initialize(args=[])
  @args = args
  @options = { :colorize => true }
  @exit_status = true
end

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action.



9
10
11
# File 'lib/cli/runner.rb', line 9

def action
  @action
end

#argsObject (readonly)

Returns the value of attribute args.



10
11
12
# File 'lib/cli/runner.rb', line 10

def args
  @args
end

#namespaceObject (readonly)

Returns the value of attribute namespace.



8
9
10
# File 'lib/cli/runner.rb', line 8

def namespace
  @namespace
end

#optionsObject (readonly)

Returns the value of attribute options.



11
12
13
# File 'lib/cli/runner.rb', line 11

def options
  @options
end

Class Method Details

.run(args) ⇒ Object



13
14
15
# File 'lib/cli/runner.rb', line 13

def self.run(args)
  new(args).run
end

Instance Method Details

#basic_usageObject



3
4
5
6
# File 'lib/cli/usage.rb', line 3

def basic_usage
  "Usage: vmc [options] command [<args>] [command_options]\n" +
  "Try 'vmc help [command]' or 'vmc help options' for more information."
end

#command_usageObject



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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
86
87
88
89
90
91
92
93
# File 'lib/cli/usage.rb', line 20

def command_usage
  "\n\#{basic_usage}\n\nCurrently available vmc commands are:\n\nGetting Started\ntarget [url]                                 Reports current target or sets a new target\nlogin  [email] [--email, --passwd]           Login\ninfo                                         System and account information\n\nApplications\napps                                         List deployed applications\n\nApplication Creation\npush [appname]                               Create, push, map, and start a new application\npush [appname] --path                        Push application from specified path\npush [appname] --url                         Set the url for the application\npush [appname] --instances <N>               Set the expected number <N> of instances\npush [appname] --mem M                       Set the memory reservation for the application\npush [appname] --no-start                    Do not auto-start the application\n\nApplication Operations\nstart <appname>                              Start the application\nstop  <appname>                              Stop the application\nrestart <appname>                            Restart the application\ndelete <appname>                             Delete the application\nrename <appname> <newname>                   Rename the application\n\nApplication Updates\nupdate <appname> [--path]                    Update the application bits\nmem <appname> [memsize]                      Update the memory reservation for an application\nmap <appname> <url>                          Register the application to the url\nunmap <appname> <url>                        Unregister the application from the url\ninstances <appname> <num|delta>              Scale the application instances up or down\n\nApplication Information\ncrashes <appname>                            List recent application crashes\ncrashlogs <appname>                          Display log information for crashed applications\nlogs <appname> [--all]                       Display log information for the application\nfiles <appname> [path] [--all]               Display directory listing or file download for [path]\nstats <appname>                              Display resource usage for the application\ninstances <appname>                          List application instances\n\nServices\nservices                                     Lists of services available and provisioned\ncreate-service <service> [--name,--bind]     Create a provisioned service\ncreate-service <service> <name>              Create a provisioned service and assign it <name>\ncreate-service <service> <name> <app>        Create a provisioned service and assign it <name>, and bind to <app>\ndelete-service [servicename]                 Delete a provisioned service\nbind-service <servicename> <appname>         Bind a service to an application\nunbind-service <servicename> <appname>       Unbind service from the application\nclone-services <src-app> <dest-app>          Clone service bindings from <src-app> application to <dest-app>\n\nAdministration\nuser                                         Display user account information\npasswd                                       Change the password for the current user\nlogout                                       Logs current user out of the target system\nadd-user [--email, --passwd]                 Register a new user (requires admin privileges)\ndelete-user <user>                           Delete a user and all apps and services (requires admin privileges)\n\nMisc\naliases                                      List aliases\nalias <alias[=]command>                      Create an alias for a command\nunalias <alias>                              Remove an alias\ntargets                                      List known targets and associated authorization tokens\n\nHelp\nhelp [command]                               Get general help or help on a specific command\nhelp options                                 Get help on available options\n"

end

#convert_options!Object



94
95
96
97
98
# File 'lib/cli/runner.rb', line 94

def convert_options!
  # make sure certain options are valid and in correct form.
  @options[:instances] = Integer(@options[:instances]) if @options[:instances]
  @options[:instance] = Integer(@options[:instance]) if @options[:instance]
end

#display_helpObject



89
90
91
92
# File 'lib/cli/runner.rb', line 89

def display_help
  puts command_usage
  exit
end

#display_usageObject



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/cli/usage.rb', line 8

def display_usage
  if @usage
    say @usage_error if @usage_error
    say "Usage: #{@usage}"
    return
  elsif @verb_usage
    say @verb_usage
    return
  end
  say command_usage
end

#parse_command!Object



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
# File 'lib/cli/runner.rb', line 119

def parse_command!
  # just return if already set, happends with -v, -h
  return if @namespace && @action

  verb = @args.shift
  case verb

  when 'version'
    usage('vmc version')
    set_cmd(:misc, :version)

  when 'target'
    usage('vmc target [url] [--url]')
    if @args.size == 1
      set_cmd(:misc, :set_target, 1)
    else
      set_cmd(:misc, :target)
    end

  when 'targets'
    usage('vmc targets')
    set_cmd(:misc, :targets)

  when 'tokens'
    usage('vmc tokens')
    set_cmd(:misc, :tokens)

  when 'info'
    usage('vmc info')
    set_cmd(:misc, :info)

  when 'user'
    usage('vmc user')
    set_cmd(:user, :info)

  when 'login'
    usage('vmc login [email] [--email EMAIL] [--passwd PASS]')
    if @args.size == 1
      set_cmd(:user, :login, 1)
    else
      set_cmd(:user, :login)
    end

  when 'logout'
    usage('vmc logout')
    set_cmd(:user, :logout)

  when 'passwd'
    usage('vmc passwd')
    if @args.size == 1
      set_cmd(:user, :change_password, 1)
    else
      set_cmd(:user, :change_password)
    end

  when 'add-user', 'add_user', 'create_user', 'create-user', 'register'
    usage('vmc add-user [user] [--email EMAIL] [--passwd PASS]')
    if @args.size == 1
      set_cmd(:admin, :add_user, 1)
    else
      set_cmd(:admin, :add_user)
    end

  when 'delete-user', 'delete_user', 'unregister'
    usage('vmc delete-user <user>')
    set_cmd(:admin, :delete_user, 1)

  when 'apps'
    usage('vmc apps')
    set_cmd(:apps, :apps)

  when 'list'
    usage('vmc list')
    set_cmd(:apps, :list)

  when 'start'
    usage('vmc start <appname>')
    set_cmd(:apps, :start, 1)

  when 'stop'
    usage('vmc stop <appname>')
    set_cmd(:apps, :stop, 1)

  when 'restart'
    usage('vmc restart <appname>')
    set_cmd(:apps, :restart, 1)

  when 'rename'
    usage('vmc rename <appname> <newname>')
    set_cmd(:apps, :rename, 2)

  when 'mem'
    usage('vmc mem <appname> [memsize]')
    if @args.size == 2
      set_cmd(:apps, :mem, 2)
    else
      set_cmd(:apps, :mem, 1)
    end

  when 'stats'
    usage('vmc stats <appname>')
    set_cmd(:apps, :stats, 1)

  when 'map'
    usage('vmc map <appname> <url>')
    set_cmd(:apps, :map, 2)

  when 'unmap'
    usage('vmc unmap <appname> <url>')
    set_cmd(:apps, :unmap, 2)

  when 'delete'
    usage('vmc delete <appname>')
    if @options[:all] && @args.size == 0
      set_cmd(:apps, :delete)
    else
      set_cmd(:apps, :delete, 1)
    end

  when 'files'
    usage('vmc files <appname> [path] [--instance N] [--all] [--prefix]')
    if @args.size == 1
      set_cmd(:apps, :files, 1)
    else
      set_cmd(:apps, :files, 2)
    end

  when 'logs'
    usage('vmc logs <appname> [--instance N] [--all] [--prefix]')
    set_cmd(:apps, :logs, 1)

  when 'instances', 'scale'
    if @args.size == 1
      usage('vmc instances <appname>')
      set_cmd(:apps, :instances, 1)
    else
      usage('vmc instances <appname> <num|delta>')
      set_cmd(:apps, :instances, 2)
    end

  when 'crashes'
    usage('vmc crashes <appname>')
    set_cmd(:apps, :crashes, 1)

  when 'crashlogs'
    usage('vmc crashlogs <appname>')
    set_cmd(:apps, :crashlogs, 1)

  when 'push'
    usage('vmc push [appname] [--path PATH] [--url URL] [--instances N] [--mem] [--no-start]')
    if @args.size == 1
      set_cmd(:apps, :push, 1)
    else
      set_cmd(:apps, :push, 0)
    end

  when 'update'
    usage('vmc update <appname> [--path PATH]')
    set_cmd(:apps, :update, 1)

  when 'services'
    usage('vmc services')
    set_cmd(:services, :services)

  when 'create-service', 'create_service'
    usage('vmc create-service [service] [servicename] [appname] [--name servicename] [--bind appname]')
    set_cmd(:services, :create_service) if @args.size == 0
    set_cmd(:services, :create_service, 1) if @args.size == 1
    set_cmd(:services, :create_service, 2) if @args.size == 2
    set_cmd(:services, :create_service, 3) if @args.size == 3

  when 'delete-service', 'delete_service'
    usage('vmc delete-service <service>')
    if @args.size == 1
      set_cmd(:services, :delete_service, 1)
    else
      set_cmd(:services, :delete_service)
    end

  when 'bind-service', 'bind_service'
    usage('vmc bind-service <servicename> <appname>')
    set_cmd(:services, :bind_service, 2)

  when 'unbind-service', 'unbind_service'
    usage('vmc unbind-service <servicename> <appname>')
    set_cmd(:services, :unbind_service, 2)

  when 'clone-services'
    usage('vmc clone-services <src-app> <dest-app>')
    set_cmd(:services, :clone_services, 2)

  when 'aliases'
    usage('vmc aliases')
    set_cmd(:misc, :aliases)

  when 'alias'
    usage('vmc alias <alias[=]command>')
    if @args.size == 1
      set_cmd(:misc, :alias, 1)
    elsif @args.size == 2
      set_cmd(:misc, :alias, 2)
    end

  when 'unalias'
    usage('vmc unalias <alias>')
    set_cmd(:misc, :unalias, 1)

  when 'help'
    display_help if @args.size == 0
    @help_only = true
    parse_command!

  when 'usage'
    display basic_usage
    exit(true)

  when 'options'
    # Simulate --options
    @args = @args.unshift('--options')
    parse_options!

  else
    if verb
      display "vmc: Unknown command [#{verb}]"
      display basic_usage
      exit(false)
    end
  end
end

#parse_options!Object

Collect all the available options for all commands Some duplicates exists to capture all scenarios



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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
86
87
# File 'lib/cli/runner.rb', line 25

def parse_options!
  opts_parser = OptionParser.new do |opts|
    opts.banner = "\nAvailable options:\n\n"

    opts.on('--email EMAIL')     { |email| @options[:email] = email }
    opts.on('--user EMAIL')      { |email| @options[:email] = email }
    opts.on('--passwd PASS')     { |pass|  @options[:password] = pass }
    opts.on('--pass PASS')       { |pass|  @options[:password] = pass }
    opts.on('--password PASS')   { |pass|  @options[:password] = pass }
    opts.on('--app NAME')        { |name|  @options[:name] = name }
    opts.on('--name NAME')       { |name|  @options[:name] = name }
    opts.on('--bind BIND')       { |bind|  @options[:bind] = bind }
    opts.on('--instance INST')   { |inst|  @options[:instance] = inst }
    opts.on('--instances INST')  { |inst|  @options[:instances] = inst }
    opts.on('--url URL')         { |url|   @options[:url] = url }
    opts.on('--mem MEM')         { |mem|   @options[:mem] = mem }
    opts.on('--path PATH')       { |path|  @options[:path] = path }
    opts.on('--no-start')        {         @options[:nostart] = true }
    opts.on('--nostart')         {         @options[:nostart] = true }
    opts.on('--force')           {         @options[:force] = true }
    opts.on('--all')             {         @options[:all] = true }

    # generic tracing and debugging
    opts.on('-t', '--trace')     {         @options[:trace] = true }
    opts.on('-q', '--quiet')     {         @options[:quiet] = true }

    # Don't use builtin zip
    opts.on('--no-zip')          {         @options[:nozip] = true }
    opts.on('--nozip')           {         @options[:nozip] = true }

    opts.on('--no-resources')    {         @options[:noresources] = true }
    opts.on('--noresources')     {         @options[:noresources] = true }

    opts.on('--no-color')        {         @options[:colorize] = false }
    opts.on('--verbose')         {         @options[:verbose] = true }

    opts.on('-n','--no-prompt')  {         @options[:noprompts] = true }
    opts.on('--noprompt')        {         @options[:noprompts] = true }
    opts.on('--non-interactive') {         @options[:noprompts] = true }

    opts.on('--prefix')          {         @options[:prefixlogs] = true }
    opts.on('--prefix-logs')     {         @options[:prefixlogs] = true }
    opts.on('--prefixlogs')      {         @options[:prefixlogs] = true }

    opts.on('--json')            {         @options[:json] = true }

    opts.on('-v', '--version')   {         set_cmd(:misc, :version) }
    opts.on('-h', '--help')      {         puts "#{command_usage}\n"; exit }

    # deprecated
    opts.on('--exec EXEC')       { |exec|  @options[:exec] = exec }
    opts.on('--noframework')     {         @options[:noframework] = true }
    opts.on('--canary')          {         @options[:canary] = true }

    # Proxying for another user, requires admin privileges
    opts.on('-u PROXY')          { |proxy| @options[:proxy] = proxy }

    opts.on_tail('--options')    {          puts "#{opts}\n"; exit }
  end
  @args = opts_parser.parse!(@args)
  convert_options!
  self
end

#process_aliases!Object



349
350
351
352
353
354
355
356
# File 'lib/cli/runner.rb', line 349

def process_aliases!
  return if @args.empty?
  aliases = VMC::Cli::Config.aliases
  if key = aliases.values.grep(@args[0]).first
    display "[#{@args[0]} aliased to #{aliases.invert[key]}]" if @options[:verbose]
    @args[0] = aliases.invert[key]
  end
end

#runObject



368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
# File 'lib/cli/runner.rb', line 368

def run
  trap('TERM') { print "\nInterupted\n"; exit(false)}
  trap("INT")  { print "\nInterupted\n"; exit(false)}

  parse_options!

  @options[:colorize] = false unless STDOUT.tty?

  VMC::Cli::Config.colorize   = @options.delete(:colorize)
  VMC::Cli::Config.trace      = @options.delete(:trace)
  VMC::Cli::Config.nozip      = @options.delete(:nozip)
  VMC::Cli::Config.output   ||= STDOUT unless @options[:quiet]

  process_aliases!
  parse_command!

  if @namespace && @action
    eval("VMC::Cli::Command::#{@namespace.to_s.capitalize}").new(@options).send(@action.to_sym, *@args)
  elsif @help_only || @usage
    display_usage
  else
    display basic_usage
    exit(false)
  end

rescue OptionParser::InvalidOption => e
rescue OptionParser::AmbiguousOption => e
  puts(e.message.red)
  puts("\n")
  puts(basic_usage)
  @exit_status = false
rescue VMC::Client::AuthError => e
  if VMC::Cli::Config.auth_token.nil?
    puts "Login Required".red
  else
    puts "Not Authorized".red
  end
  @exit_status = false
rescue VMC::Client::TargetError, VMC::Client::NotFound, VMC::Client::BadTarget  => e
  puts e.message.red
  @exit_status = false
rescue VMC::Cli::GracefulExit => e
  # Redirected commands end up generating this exception (kind of goto)
rescue VMC::Cli::CliExit => e
  puts e.message.red
  @exit_status = false
rescue VMC::Cli::CliError => e
  say("Error #{e.error_code}: #{e.message}".red)
  @exit_status = false
rescue SystemExit => e
  @exit_status = e.success?
rescue => e
  puts e.message.red
  puts e.backtrace
  @exit_status = false
ensure
  say("\n")
  @exit_status == true if @exit_status.nil?
  if @options[:verbose]
    if @exit_status
      puts "[#{@namespace}:#{@action}] SUCCEEDED".green
    else
      puts "[#{@namespace}:#{@action}] FAILED".red
    end
    say("\n")
  end
  exit(@exit_status)
end

#set_cmd(namespace, action, args_range = 0) ⇒ Object



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/cli/runner.rb', line 100

def set_cmd(namespace, action, args_range=0)
  return if @help_only
  unless args_range == "*" || args_range.is_a?(Range)
    args_range = (args_range.to_i..args_range.to_i)
  end

  if args_range == "*" || args_range.include?(@args.size)
    @namespace = namespace
    @action    = action
  else
    @exit_status = false
    if @args.size > args_range.last
      usage_error("Too many arguments for [#{action}]: %s" % [ @args[args_range.last..-1].map{|a| "'#{a}'"}.join(', ') ])
    else
      usage_error("Not enough arguments for [#{action}]")
    end
  end
end

#usage(msg = nil) ⇒ Object



358
359
360
361
# File 'lib/cli/runner.rb', line 358

def usage(msg = nil)
  @usage = msg if msg
  @usage
end

#usage_error(msg = nil) ⇒ Object



363
364
365
366
# File 'lib/cli/runner.rb', line 363

def usage_error(msg = nil)
  @usage_error = msg if msg
  @usage_error
end