root / kamaki / cli / __init__.py @ 16d7b9ff
History | View | Annotate | Download (17.9 kB)
1 |
# Copyright 2012-2013 GRNET S.A. All rights reserved.
|
---|---|
2 |
#
|
3 |
# Redistribution and use in source and binary forms, with or
|
4 |
# without modification, are permitted provided that the following
|
5 |
# conditions are met:
|
6 |
#
|
7 |
# 1. Redistributions of source code must retain the above
|
8 |
# copyright notice, this list of conditions and the following
|
9 |
# disclaimer.
|
10 |
#
|
11 |
# 2. Redistributions in binary form must reproduce the above
|
12 |
# copyright notice, this list of conditions and the following
|
13 |
# disclaimer in the documentation and/or other materials
|
14 |
# provided with the distribution.
|
15 |
#
|
16 |
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
|
17 |
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
18 |
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
19 |
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
|
20 |
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21 |
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22 |
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
23 |
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
24 |
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
25 |
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
26 |
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
27 |
# POSSIBILITY OF SUCH DAMAGE.
|
28 |
#
|
29 |
# The views and conclusions contained in the software and
|
30 |
# documentation are those of the authors and should not be
|
31 |
# interpreted as representing official policies, either expressed
|
32 |
# or implied, of GRNET S.A.command
|
33 |
|
34 |
import logging |
35 |
from sys import argv, exit, stdout, stderr |
36 |
from os.path import basename, exists |
37 |
from inspect import getargspec |
38 |
|
39 |
from kamaki.cli.argument import ArgumentParseManager |
40 |
from kamaki.cli.history import History |
41 |
from kamaki.cli.utils import print_dict, red, magenta, yellow |
42 |
from kamaki.cli.errors import CLIError, CLICmdSpecError |
43 |
from kamaki.cli import logger |
44 |
from kamaki.clients.astakos import AstakosClient as AuthCachedClient |
45 |
from kamaki.clients import ClientError |
46 |
|
47 |
_help = False
|
48 |
_debug = False
|
49 |
_verbose = False
|
50 |
_colors = False
|
51 |
kloger = None
|
52 |
filelog = None
|
53 |
|
54 |
# command auxiliary methods
|
55 |
|
56 |
_best_match = [] |
57 |
|
58 |
|
59 |
def _arg2syntax(arg): |
60 |
return arg.replace(
|
61 |
'____', '[:').replace( |
62 |
'___', ':').replace( |
63 |
'__', ']').replace( |
64 |
'_', ' ') |
65 |
|
66 |
|
67 |
def _construct_command_syntax(cls): |
68 |
spec = getargspec(cls.main.im_func) |
69 |
args = spec.args[1:]
|
70 |
n = len(args) - len(spec.defaults or ()) |
71 |
required = ' '.join(['<%s>' % _arg2syntax(x) for x in args[:n]]) |
72 |
optional = ' '.join(['[%s]' % _arg2syntax(x) for x in args[n:]]) |
73 |
cls.syntax = ' '.join(x for x in [required, optional] if x) |
74 |
if spec.varargs:
|
75 |
cls.syntax += ' <%s ...>' % spec.varargs
|
76 |
|
77 |
|
78 |
def _num_of_matching_terms(basic_list, attack_list): |
79 |
if not attack_list: |
80 |
return len(basic_list) |
81 |
|
82 |
matching_terms = 0
|
83 |
for i, term in enumerate(basic_list): |
84 |
try:
|
85 |
if term != attack_list[i]:
|
86 |
break
|
87 |
except IndexError: |
88 |
break
|
89 |
matching_terms += 1
|
90 |
return matching_terms
|
91 |
|
92 |
|
93 |
def _update_best_match(name_terms, prefix=[]): |
94 |
if prefix:
|
95 |
pref_list = prefix if isinstance(prefix, list) else prefix.split('_') |
96 |
else:
|
97 |
pref_list = [] |
98 |
|
99 |
num_of_matching_terms = _num_of_matching_terms(name_terms, pref_list) |
100 |
global _best_match
|
101 |
if not prefix: |
102 |
_best_match = [] |
103 |
|
104 |
if num_of_matching_terms and len(_best_match) <= num_of_matching_terms: |
105 |
if len(_best_match) < num_of_matching_terms: |
106 |
_best_match = name_terms[:num_of_matching_terms] |
107 |
return True |
108 |
return False |
109 |
|
110 |
|
111 |
def command(cmd_tree, prefix='', descedants_depth=1): |
112 |
"""Load a class as a command
|
113 |
e.g., spec_cmd0_cmd1 will be command spec cmd0
|
114 |
|
115 |
:param cmd_tree: is initialized in cmd_spec file and is the structure
|
116 |
where commands are loaded. Var name should be _commands
|
117 |
:param prefix: if given, load only commands prefixed with prefix,
|
118 |
:param descedants_depth: is the depth of the tree descedants of the
|
119 |
prefix command. It is used ONLY if prefix and if prefix is not
|
120 |
a terminal command
|
121 |
|
122 |
:returns: the specified class object
|
123 |
"""
|
124 |
|
125 |
def wrap(cls): |
126 |
global kloger
|
127 |
cls_name = cls.__name__ |
128 |
|
129 |
if not cmd_tree: |
130 |
if _debug:
|
131 |
kloger.warning('command %s found but not loaded' % cls_name)
|
132 |
return cls
|
133 |
|
134 |
name_terms = cls_name.split('_')
|
135 |
if not _update_best_match(name_terms, prefix): |
136 |
if _debug:
|
137 |
kloger.warning('%s failed to update_best_match' % cls_name)
|
138 |
return None |
139 |
|
140 |
global _best_match
|
141 |
max_len = len(_best_match) + descedants_depth
|
142 |
if len(name_terms) > max_len: |
143 |
partial = '_'.join(name_terms[:max_len])
|
144 |
if not cmd_tree.has_command(partial): # add partial path |
145 |
cmd_tree.add_command(partial) |
146 |
if _debug:
|
147 |
kloger.warning('%s failed max_len test' % cls_name)
|
148 |
return None |
149 |
|
150 |
try:
|
151 |
( |
152 |
cls.description, sep, cls.long_description |
153 |
) = cls.__doc__.partition('\n')
|
154 |
except AttributeError: |
155 |
raise CLICmdSpecError(
|
156 |
'No commend in %s (acts as cmd description)' % cls.__name__)
|
157 |
_construct_command_syntax(cls) |
158 |
|
159 |
cmd_tree.add_command( |
160 |
cls_name, cls.description, cls, cls.long_description) |
161 |
return cls
|
162 |
return wrap
|
163 |
|
164 |
|
165 |
cmd_spec_locations = [ |
166 |
'kamaki.cli.commands',
|
167 |
'kamaki.commands',
|
168 |
'kamaki.cli',
|
169 |
'kamaki',
|
170 |
'']
|
171 |
|
172 |
|
173 |
# Generic init auxiliary functions
|
174 |
|
175 |
|
176 |
def _setup_logging(silent=False, debug=False, verbose=False): |
177 |
"""handle logging for clients package"""
|
178 |
|
179 |
if silent:
|
180 |
logger.add_stream_logger(__name__, logging.CRITICAL) |
181 |
return
|
182 |
|
183 |
sfmt, rfmt = '> %(message)s', '< %(message)s' |
184 |
if debug:
|
185 |
print('Logging location: %s' % logger.get_log_filename())
|
186 |
logger.add_stream_logger('kamaki.clients.send', logging.DEBUG, sfmt)
|
187 |
logger.add_stream_logger('kamaki.clients.recv', logging.DEBUG, rfmt)
|
188 |
logger.add_stream_logger(__name__, logging.DEBUG) |
189 |
elif verbose:
|
190 |
logger.add_stream_logger('kamaki.clients.send', logging.INFO, sfmt)
|
191 |
logger.add_stream_logger('kamaki.clients.recv', logging.INFO, rfmt)
|
192 |
logger.add_stream_logger(__name__, logging.INFO) |
193 |
logger.add_stream_logger(__name__, logging.WARNING) |
194 |
global kloger
|
195 |
kloger = logger.get_logger(__name__) |
196 |
|
197 |
|
198 |
def _check_config_version(cnf): |
199 |
guess = cnf.guess_version() |
200 |
if exists(cnf.path) and guess < 0.9: |
201 |
print('Config file format version >= 9.0 is required')
|
202 |
print('Configuration file: %s' % cnf.path)
|
203 |
print('Attempting to fix this:')
|
204 |
print('Calculating changes while preserving information')
|
205 |
lost_terms = cnf.rescue_old_file() |
206 |
print('... DONE')
|
207 |
if lost_terms:
|
208 |
print 'The following information will NOT be preserved:' |
209 |
print '\t', '\n\t'.join(lost_terms) |
210 |
print('Kamaki is ready to convert the config file')
|
211 |
stdout.write('Create (overwrite) file %s ? [y/N] ' % cnf.path)
|
212 |
from sys import stdin |
213 |
reply = stdin.readline() |
214 |
if reply in ('Y\n', 'y\n'): |
215 |
cnf.write() |
216 |
print('... DONE')
|
217 |
else:
|
218 |
print('... ABORTING')
|
219 |
raise CLIError(
|
220 |
'Invalid format for config file %s' % cnf.path,
|
221 |
importance=3, details=[
|
222 |
'Please, update config file',
|
223 |
'For automatic conversion, rerun and say Y'])
|
224 |
|
225 |
|
226 |
def _init_session(arguments, is_non_API=False): |
227 |
"""
|
228 |
:returns: cloud name
|
229 |
"""
|
230 |
global _help
|
231 |
_help = arguments['help'].value
|
232 |
global _debug
|
233 |
_debug = arguments['debug'].value
|
234 |
global _verbose
|
235 |
_verbose = arguments['verbose'].value
|
236 |
_cnf = arguments['config']
|
237 |
|
238 |
_silent = arguments['silent'].value
|
239 |
_setup_logging(_silent, _debug, _verbose) |
240 |
|
241 |
if _help or is_non_API: |
242 |
return None |
243 |
|
244 |
_check_config_version(_cnf.value) |
245 |
|
246 |
global _colors
|
247 |
_colors = _cnf.value.get_global('colors')
|
248 |
if not (stdout.isatty() and _colors == 'on'): |
249 |
from kamaki.cli.utils import remove_colors |
250 |
remove_colors() |
251 |
|
252 |
cloud = arguments['cloud'].value or _cnf.value.get( |
253 |
'global', 'default_cloud') |
254 |
if not cloud: |
255 |
num_of_clouds = len(_cnf.value.keys('cloud')) |
256 |
if num_of_clouds == 1: |
257 |
cloud = _cnf.value.keys('cloud')[0] |
258 |
elif num_of_clouds > 1: |
259 |
raise CLIError(
|
260 |
'Found %s clouds but none of them is set as default' % (
|
261 |
num_of_clouds), |
262 |
importance=2, details=[
|
263 |
'Please, choose one of the following cloud names:',
|
264 |
', '.join(_cnf.value.keys('cloud')), |
265 |
'To see all cloud settings:',
|
266 |
' kamaki config get cloud.<cloud name>',
|
267 |
'To set a default cloud:',
|
268 |
' kamaki config set default_cloud <cloud name>',
|
269 |
'To pick a cloud for the current session, use --cloud:',
|
270 |
' kamaki --cloud=<cloud name> ...'])
|
271 |
if not cloud in _cnf.value.keys('cloud'): |
272 |
raise CLIError(
|
273 |
'No cloud%s is configured' % ((' "%s"' % cloud) if cloud else ''), |
274 |
importance=3, details=[
|
275 |
'To configure a new cloud "%s", find and set the' % (
|
276 |
cloud or '<cloud name>'), |
277 |
'single authentication URL and token:',
|
278 |
' kamaki config set cloud.%s.url <URL>' % (
|
279 |
cloud or '<cloud name>'), |
280 |
' kamaki config set cloud.%s.token <t0k3n>' % (
|
281 |
cloud or '<cloud name>')]) |
282 |
auth_args = dict()
|
283 |
for term in ('url', 'token'): |
284 |
try:
|
285 |
auth_args[term] = _cnf.get_cloud(cloud, term) |
286 |
except KeyError or IndexError: |
287 |
auth_args[term] = ''
|
288 |
if not auth_args[term]: |
289 |
raise CLIError(
|
290 |
'No authentication %s provided for cloud "%s"' % (
|
291 |
term.upper(), cloud), |
292 |
importance=3, details=[
|
293 |
'Set a %s for cloud %s:' % (term.upper(), cloud),
|
294 |
' kamaki config set cloud.%s.%s <%s>' % (
|
295 |
cloud, term, term.upper())]) |
296 |
return cloud
|
297 |
|
298 |
|
299 |
def init_cached_authenticator(url, tokens, config_module, logger): |
300 |
try:
|
301 |
auth_base = None
|
302 |
for token in reversed(tokens): |
303 |
try:
|
304 |
if auth_base:
|
305 |
auth_base.authenticate(token) |
306 |
else:
|
307 |
auth_base = AuthCachedClient(url, tokens) |
308 |
from kamaki.cli.commands import _command_init |
309 |
fake_cmd = _command_init(dict(config=config_module))
|
310 |
fake_cmd.client = auth_base |
311 |
fake_cmd._set_log_params() |
312 |
fake_cmd._update_max_threads() |
313 |
auth_base.authenticate(token) |
314 |
except ClientError as ce: |
315 |
if ce.status in (401, ): |
316 |
logger.warning( |
317 |
'WARNING: Failed to authenticate token %s' % token)
|
318 |
else:
|
319 |
raise
|
320 |
return auth_base
|
321 |
except AssertionError as ae: |
322 |
logger.warning('WARNING: Failed to load authenticator [%s]' % ae)
|
323 |
return None |
324 |
|
325 |
|
326 |
def _load_spec_module(spec, arguments, module): |
327 |
global kloger
|
328 |
if not spec: |
329 |
return None |
330 |
pkg = None
|
331 |
for location in cmd_spec_locations: |
332 |
location += spec if location == '' else '.%s' % spec |
333 |
try:
|
334 |
kloger.debug('Import %s from %s' % ([module], location))
|
335 |
pkg = __import__(location, fromlist=[module])
|
336 |
kloger.debug('\t...OK')
|
337 |
return pkg
|
338 |
except ImportError as ie: |
339 |
kloger.debug('\t...Failed')
|
340 |
continue
|
341 |
if not pkg: |
342 |
msg = 'Loading command group %s failed: %s' % (spec, ie)
|
343 |
msg += '\nHINT: use a text editor to remove all global.*_cli'
|
344 |
msg += '\n\tsettings from the configuration file'
|
345 |
kloger.debug(msg) |
346 |
return pkg
|
347 |
|
348 |
|
349 |
def _groups_help(arguments): |
350 |
global _debug
|
351 |
global kloger
|
352 |
descriptions = {} |
353 |
acceptable_groups = arguments['config'].groups
|
354 |
for cmd_group, spec in arguments['config'].cli_specs: |
355 |
pkg = _load_spec_module(spec, arguments, '_commands')
|
356 |
if pkg:
|
357 |
cmds = getattr(pkg, '_commands') |
358 |
try:
|
359 |
for cmd_tree in cmds: |
360 |
if cmd_tree.name in acceptable_groups: |
361 |
descriptions[cmd_tree.name] = cmd_tree.description |
362 |
except TypeError: |
363 |
if _debug:
|
364 |
kloger.warning( |
365 |
'No cmd description (help) for module %s' % cmd_group)
|
366 |
elif _debug:
|
367 |
kloger.warning('Loading of %s cmd spec failed' % cmd_group)
|
368 |
print('\nOptions:\n - - - -')
|
369 |
print_dict(descriptions) |
370 |
|
371 |
|
372 |
def _load_all_commands(cmd_tree, arguments): |
373 |
_cnf = arguments['config']
|
374 |
for cmd_group, spec in _cnf.cli_specs: |
375 |
try:
|
376 |
spec_module = _load_spec_module(spec, arguments, '_commands')
|
377 |
spec_commands = getattr(spec_module, '_commands') |
378 |
except AttributeError: |
379 |
if _debug:
|
380 |
global kloger
|
381 |
kloger.warning('No valid description for %s' % cmd_group)
|
382 |
continue
|
383 |
for spec_tree in spec_commands: |
384 |
if spec_tree.name == cmd_group:
|
385 |
cmd_tree.add_tree(spec_tree) |
386 |
break
|
387 |
|
388 |
|
389 |
# Methods to be used by CLI implementations
|
390 |
|
391 |
|
392 |
def print_subcommands_help(cmd): |
393 |
printout = {} |
394 |
for subcmd in cmd.subcommands.values(): |
395 |
spec, sep, print_path = subcmd.path.partition('_')
|
396 |
printout[print_path.replace('_', ' ')] = subcmd.help |
397 |
if printout:
|
398 |
print('\nOptions:\n - - - -')
|
399 |
print_dict(printout) |
400 |
|
401 |
|
402 |
def update_parser_help(parser, cmd): |
403 |
global _best_match
|
404 |
parser.syntax = parser.syntax.split('<')[0] |
405 |
parser.syntax += ' '.join(_best_match)
|
406 |
|
407 |
description = ''
|
408 |
if cmd.is_command:
|
409 |
cls = cmd.cmd_class |
410 |
parser.syntax += ' ' + cls.syntax
|
411 |
parser.update_arguments(cls().arguments) |
412 |
description = getattr(cls, 'long_description', '').strip() |
413 |
else:
|
414 |
parser.syntax += ' <...>'
|
415 |
parser.parser.description = ( |
416 |
cmd.help + ('\n' if description else '')) if cmd.help else description |
417 |
|
418 |
|
419 |
def print_error_message(cli_err, out=stderr): |
420 |
errmsg = '%s' % cli_err
|
421 |
if cli_err.importance == 1: |
422 |
errmsg = magenta(errmsg) |
423 |
elif cli_err.importance == 2: |
424 |
errmsg = yellow(errmsg) |
425 |
elif cli_err.importance > 2: |
426 |
errmsg = red(errmsg) |
427 |
out.write(errmsg) |
428 |
for errmsg in cli_err.details: |
429 |
out.write('| %s\n' % errmsg)
|
430 |
out.flush() |
431 |
|
432 |
|
433 |
def exec_cmd(instance, cmd_args, help_method): |
434 |
try:
|
435 |
return instance.main(*cmd_args)
|
436 |
except TypeError as err: |
437 |
if err.args and err.args[0].startswith('main()'): |
438 |
print(magenta('Syntax error'))
|
439 |
if _debug:
|
440 |
raise err
|
441 |
if _verbose:
|
442 |
print(unicode(err))
|
443 |
help_method() |
444 |
else:
|
445 |
raise
|
446 |
return 1 |
447 |
|
448 |
|
449 |
def get_command_group(unparsed, arguments): |
450 |
groups = arguments['config'].groups
|
451 |
for term in unparsed: |
452 |
if term.startswith('-'): |
453 |
continue
|
454 |
if term in groups: |
455 |
unparsed.remove(term) |
456 |
return term
|
457 |
return None |
458 |
return None |
459 |
|
460 |
|
461 |
def set_command_params(parameters): |
462 |
"""Add a parameters list to a command
|
463 |
|
464 |
:param paramters: (list of str) a list of parameters
|
465 |
"""
|
466 |
global command
|
467 |
def_params = list(command.func_defaults)
|
468 |
def_params[0] = parameters
|
469 |
command.func_defaults = tuple(def_params)
|
470 |
|
471 |
|
472 |
# CLI Choice:
|
473 |
|
474 |
def run_one_cmd(exe_string, parser, cloud): |
475 |
global _history
|
476 |
_history = History(parser.arguments['config'].get_global('history_file')) |
477 |
_history.add(' '.join([exe_string] + argv[1:])) |
478 |
from kamaki.cli import one_command |
479 |
one_command.run(cloud, parser, _help) |
480 |
|
481 |
|
482 |
def run_shell(exe_string, parser, cloud): |
483 |
from command_shell import _init_shell |
484 |
global kloger
|
485 |
_cnf = parser.arguments['config']
|
486 |
auth_base = init_cached_authenticator( |
487 |
_cnf.get_cloud(cloud, 'url'), _cnf.get_cloud(cloud, 'token').split(), |
488 |
_cnf, kloger) |
489 |
try:
|
490 |
username, userid = ( |
491 |
auth_base.user_term('name'), auth_base.user_term('id')) |
492 |
except Exception: |
493 |
username, userid = '', '' |
494 |
shell = _init_shell(exe_string, parser, username, userid) |
495 |
_load_all_commands(shell.cmd_tree, parser.arguments) |
496 |
shell.run(auth_base, cloud, parser) |
497 |
|
498 |
|
499 |
def is_non_API(parser): |
500 |
nonAPIs = ('history', 'config') |
501 |
for term in parser.unparsed: |
502 |
if not term.startswith('-'): |
503 |
if term in nonAPIs: |
504 |
return True |
505 |
return False |
506 |
return False |
507 |
|
508 |
|
509 |
def main(): |
510 |
try:
|
511 |
exe = basename(argv[0])
|
512 |
parser = ArgumentParseManager(exe) |
513 |
|
514 |
if parser.arguments['version'].value: |
515 |
exit(0) |
516 |
|
517 |
_cnf = parser.arguments['config']
|
518 |
log_file = _cnf.get_global('log_file')
|
519 |
if log_file:
|
520 |
logger.set_log_filename(log_file) |
521 |
global filelog
|
522 |
filelog = logger.add_file_logger(__name__.split('.')[0]) |
523 |
filelog.info('* Initial Call *\n%s\n- - -' % ' '.join(argv)) |
524 |
|
525 |
cloud = _init_session(parser.arguments, is_non_API(parser)) |
526 |
from kamaki.cli.utils import suggest_missing |
527 |
global _colors
|
528 |
exclude = ['ansicolors'] if not _colors == 'on' else [] |
529 |
suggest_missing(exclude=exclude) |
530 |
|
531 |
if parser.unparsed:
|
532 |
run_one_cmd(exe, parser, cloud) |
533 |
elif _help:
|
534 |
parser.parser.print_help() |
535 |
_groups_help(parser.arguments) |
536 |
else:
|
537 |
run_shell(exe, parser, cloud) |
538 |
except CLIError as err: |
539 |
print_error_message(err) |
540 |
if _debug:
|
541 |
raise err
|
542 |
exit(1) |
543 |
except Exception as er: |
544 |
print('Unknown Error: %s' % er)
|
545 |
if _debug:
|
546 |
raise
|
547 |
exit(1) |