Statistics
| Branch: | Tag: | Revision:

root / kamaki / cli / __init__.py @ 6a2a28bd

History | View | Annotate | Download (17.4 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
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
_include = False
50
_verbose = False
51
_colors = False
52
kloger = None
53
filelog = None
54

    
55
#  command auxiliary methods
56

    
57
_best_match = []
58

    
59

    
60
def _arg2syntax(arg):
61
    return arg.replace(
62
        '____', '[:').replace(
63
            '___', ':').replace(
64
                '__', ']').replace(
65
                    '_', ' ')
66

    
67

    
68
def _construct_command_syntax(cls):
69
        spec = getargspec(cls.main.im_func)
70
        args = spec.args[1:]
71
        n = len(args) - len(spec.defaults or ())
72
        required = ' '.join(['<%s>' % _arg2syntax(x) for x in args[:n]])
73
        optional = ' '.join(['[%s]' % _arg2syntax(x) for x in args[n:]])
74
        cls.syntax = ' '.join(x for x in [required, optional] if x)
75
        if spec.varargs:
76
            cls.syntax += ' <%s ...>' % spec.varargs
77

    
78

    
79
def _num_of_matching_terms(basic_list, attack_list):
80
    if not attack_list:
81
        return len(basic_list)
82

    
83
    matching_terms = 0
84
    for i, term in enumerate(basic_list):
85
        try:
86
            if term != attack_list[i]:
87
                break
88
        except IndexError:
89
            break
90
        matching_terms += 1
91
    return matching_terms
92

    
93

    
94
def _update_best_match(name_terms, prefix=[]):
95
    if prefix:
96
        pref_list = prefix if isinstance(prefix, list) else prefix.split('_')
97
    else:
98
        pref_list = []
99

    
100
    num_of_matching_terms = _num_of_matching_terms(name_terms, pref_list)
101
    global _best_match
102
    if not prefix:
103
        _best_match = []
104

    
105
    if num_of_matching_terms and len(_best_match) <= num_of_matching_terms:
106
        if len(_best_match) < num_of_matching_terms:
107
            _best_match = name_terms[:num_of_matching_terms]
108
        return True
109
    return False
110

    
111

    
112
def command(cmd_tree, prefix='', descedants_depth=1):
113
    """Load a class as a command
114
        e.g. spec_cmd0_cmd1 will be command spec cmd0
115

116
        :param cmd_tree: is initialized in cmd_spec file and is the structure
117
            where commands are loaded. Var name should be _commands
118
        :param prefix: if given, load only commands prefixed with prefix,
119
        :param descedants_depth: is the depth of the tree descedants of the
120
            prefix command. It is used ONLY if prefix and if prefix is not
121
            a terminal command
122

123
        :returns: the specified class object
124
    """
125

    
126
    def wrap(cls):
127
        global kloger
128
        cls_name = cls.__name__
129

    
130
        if not cmd_tree:
131
            if _debug:
132
                kloger.warning('command %s found but not loaded' % cls_name)
133
            return cls
134

    
135
        name_terms = cls_name.split('_')
136
        if not _update_best_match(name_terms, prefix):
137
            if _debug:
138
                kloger.warning('%s failed to update_best_match' % cls_name)
139
            return None
140

    
141
        global _best_match
142
        max_len = len(_best_match) + descedants_depth
143
        if len(name_terms) > max_len:
144
            partial = '_'.join(name_terms[:max_len])
145
            if not cmd_tree.has_command(partial):  # add partial path
146
                cmd_tree.add_command(partial)
147
            if _debug:
148
                kloger.warning('%s failed max_len test' % cls_name)
149
            return None
150

    
151
        try:
152
            (
153
                cls.description, sep, cls.long_description
154
            ) = cls.__doc__.partition('\n')
155
        except AttributeError:
156
            raise CLICmdSpecError(
157
                'No commend in %s (acts as cmd description)' % cls.__name__)
158
        _construct_command_syntax(cls)
159

    
160
        cmd_tree.add_command(cls_name, cls.description, cls)
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, include=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
    if include:
194
        logger.add_stream_logger('kamaki.clients.send', logging.INFO, sfmt)
195
        logger.add_stream_logger('kamaki.clients.recv', logging.INFO, rfmt)
196
    logger.add_stream_logger(__name__, logging.WARNING)
197
    global kloger
198
    kloger = logger.get_logger(__name__)
199

    
200

    
201
def _check_config_version(cnf):
202
    guess = cnf.guess_version()
203
    if exists(cnf.path) and guess < 0.9:
204
        print('Config file format version >= 9.0 is required')
205
        print('Configuration file: %s' % cnf.path)
206
        print('Attempting to fix this:')
207
        print('Calculating changes while preserving information')
208
        lost_terms = cnf.rescue_old_file()
209
        print('... DONE')
210
        if lost_terms:
211
            print 'The following information will NOT be preserved:'
212
            print '\t', '\n\t'.join(lost_terms)
213
        print('Kamaki is ready to convert the config file')
214
        stdout.write('Create (overwrite) file %s ? [y/N] ' % cnf.path)
215
        from sys import stdin
216
        reply = stdin.readline()
217
        if reply in ('Y\n', 'y\n'):
218
            cnf.write()
219
            print('... DONE')
220
        else:
221
            print('... ABORTING')
222
            raise CLIError(
223
                'Invalid format for config file %s' % cnf.path,
224
                importance=3, details=[
225
                    'Please, update config file',
226
                    'For automatic conversion, rerun and say Y'])
227

    
228

    
229
def _init_session(arguments, is_non_API=False):
230
    """
231
    :returns: (AuthCachedClient, str) authenticator and cloud name
232
    """
233
    global _help
234
    _help = arguments['help'].value
235
    global _debug
236
    _debug = arguments['debug'].value
237
    global _include
238
    _include = arguments['include'].value
239
    global _verbose
240
    _verbose = arguments['verbose'].value
241
    _cnf = arguments['config']
242

    
243
    if _help or is_non_API:
244
        return None, None
245

    
246
    _check_config_version(_cnf.value)
247

    
248
    global _colors
249
    _colors = _cnf.value.get_global('colors')
250
    if not (stdout.isatty() and _colors == 'on'):
251
        from kamaki.cli.utils import remove_colors
252
        remove_colors()
253
    _silent = arguments['silent'].value
254
    _setup_logging(_silent, _debug, _verbose, _include)
255

    
256
    cloud = arguments['cloud'].value or _cnf.value.get(
257
        'global', 'default_cloud')
258
    if not cloud:
259
        num_of_clouds = len(_cnf.value.keys('cloud'))
260
        if num_of_clouds == 1:
261
            cloud = _cnf.value.keys('cloud')[0]
262
        elif num_of_clouds > 1:
263
            raise CLIError(
264
                'Found %s clouds but none of them is set as default' % (
265
                    num_of_clouds),
266
                importance=2, details=[
267
                    'Please, choose one of the following cloud names:',
268
                    ', '.join(_cnf.value.keys('cloud')),
269
                    'To see all cloud settings:',
270
                    '  kamaki config get cloud.<cloud name>',
271
                    'To set a default cloud:',
272
                    '  kamaki config set default_cloud <cloud name>',
273
                    'To pick a cloud for the current session, use --cloud:',
274
                    '  kamaki --cloud=<cloud name> ...'])
275
    if not cloud in _cnf.value.keys('cloud'):
276
        raise CLIError(
277
            'No cloud%s is configured' % ((' "%s"' % cloud) if cloud else ''),
278
            importance=3, details=[
279
                'To configure a new cloud "%s", find and set the' % (
280
                    cloud or '<cloud name>'),
281
                'single authentication URL and token:',
282
                '  kamaki config set cloud.%s.url <URL>' % (
283
                    cloud or '<cloud name>'),
284
                '  kamaki config set cloud.%s.token <t0k3n>' % (
285
                    cloud or '<cloud name>')])
286
    auth_args = dict()
287
    for term in ('url', 'token'):
288
        try:
289
            auth_args[term] = _cnf.get_cloud(cloud, term)
290
        except KeyError or IndexError:
291
            auth_args[term] = ''
292
        if not auth_args[term]:
293
            raise CLIError(
294
                'No authentication %s provided for cloud "%s"' % (
295
                    term.upper(), cloud),
296
                importance=3, details=[
297
                    'Set a %s for cloud %s:' % (term.upper(), cloud),
298
                    '  kamaki config set cloud.%s.%s <%s>' % (
299
                        cloud, term, term.upper())])
300

    
301
    try:
302
        auth_base = None
303
        for token in reversed(auth_args['token'].split()):
304
            try:
305
                if auth_base:
306
                    auth_base.authenticate(token)
307
                else:
308
                    auth_base = AuthCachedClient(
309
                        auth_args['url'], auth_args['token'])
310
                    auth_base.authenticate(token)
311
            except ClientError as ce:
312
                if ce.status in (401, ):
313
                    kloger.warning(
314
                        'WARNING: Failed to authorize token %s' % token)
315
                else:
316
                    raise
317
        return auth_base, cloud
318
    except AssertionError as ae:
319
        kloger.warning('WARNING: Failed to load authenticator [%s]' % ae)
320
        return None, cloud
321

    
322

    
323
def _load_spec_module(spec, arguments, module):
324
    if not spec:
325
        return None
326
    pkg = None
327
    for location in cmd_spec_locations:
328
        location += spec if location == '' else '.%s' % spec
329
        try:
330
            pkg = __import__(location, fromlist=[module])
331
            return pkg
332
        except ImportError as ie:
333
            continue
334
    if not pkg:
335
        kloger.debug('Loading cmd grp %s failed: %s' % (spec, ie))
336
    return pkg
337

    
338

    
339
def _groups_help(arguments):
340
    global _debug
341
    global kloger
342
    descriptions = {}
343
    for cmd_group, spec in arguments['config'].get_cli_specs():
344
        pkg = _load_spec_module(spec, arguments, '_commands')
345
        if pkg:
346
            cmds = getattr(pkg, '_commands')
347
            try:
348
                for cmd in cmds:
349
                    descriptions[cmd.name] = cmd.description
350
            except TypeError:
351
                if _debug:
352
                    kloger.warning(
353
                        'No cmd description for module %s' % cmd_group)
354
        elif _debug:
355
            kloger.warning('Loading of %s cmd spec failed' % cmd_group)
356
    print('\nOptions:\n - - - -')
357
    print_dict(descriptions)
358

    
359

    
360
def _load_all_commands(cmd_tree, arguments):
361
    _cnf = arguments['config']
362
    for cmd_group, spec in _cnf.get_cli_specs():
363
        try:
364
            spec_module = _load_spec_module(spec, arguments, '_commands')
365
            spec_commands = getattr(spec_module, '_commands')
366
        except AttributeError:
367
            if _debug:
368
                global kloger
369
                kloger.warning('No valid description for %s' % cmd_group)
370
            continue
371
        for spec_tree in spec_commands:
372
            if spec_tree.name == cmd_group:
373
                cmd_tree.add_tree(spec_tree)
374
                break
375

    
376

    
377
#  Methods to be used by CLI implementations
378

    
379

    
380
def print_subcommands_help(cmd):
381
    printout = {}
382
    for subcmd in cmd.get_subcommands():
383
        spec, sep, print_path = subcmd.path.partition('_')
384
        printout[print_path.replace('_', ' ')] = subcmd.description
385
    if printout:
386
        print('\nOptions:\n - - - -')
387
        print_dict(printout)
388

    
389

    
390
def update_parser_help(parser, cmd):
391
    global _best_match
392
    parser.syntax = parser.syntax.split('<')[0]
393
    parser.syntax += ' '.join(_best_match)
394

    
395
    description = ''
396
    if cmd.is_command:
397
        cls = cmd.get_class()
398
        parser.syntax += ' ' + cls.syntax
399
        parser.update_arguments(cls().arguments)
400
        description = getattr(cls, 'long_description', '')
401
        description = description.strip()
402
    else:
403
        parser.syntax += ' <...>'
404
    if cmd.has_description:
405
        parser.parser.description = cmd.help + (
406
            ('\n%s' % description) if description else '')
407
    else:
408
        parser.parser.description = description
409

    
410

    
411
def print_error_message(cli_err):
412
    errmsg = '%s' % cli_err
413
    if cli_err.importance == 1:
414
        errmsg = magenta(errmsg)
415
    elif cli_err.importance == 2:
416
        errmsg = yellow(errmsg)
417
    elif cli_err.importance > 2:
418
        errmsg = red(errmsg)
419
    stdout.write(errmsg)
420
    for errmsg in cli_err.details:
421
        print('|  %s' % errmsg)
422

    
423

    
424
def exec_cmd(instance, cmd_args, help_method):
425
    try:
426
        return instance.main(*cmd_args)
427
    except TypeError as err:
428
        if err.args and err.args[0].startswith('main()'):
429
            print(magenta('Syntax error'))
430
            if _debug:
431
                raise err
432
            if _verbose:
433
                print(unicode(err))
434
            help_method()
435
        else:
436
            raise
437
    return 1
438

    
439

    
440
def get_command_group(unparsed, arguments):
441
    groups = arguments['config'].get_groups()
442
    for term in unparsed:
443
        if term.startswith('-'):
444
            continue
445
        if term in groups:
446
            unparsed.remove(term)
447
            return term
448
        return None
449
    return None
450

    
451

    
452
def set_command_params(parameters):
453
    """Add a parameters list to a command
454

455
    :param paramters: (list of str) a list of parameters
456
    """
457
    global command
458
    def_params = list(command.func_defaults)
459
    def_params[0] = parameters
460
    command.func_defaults = tuple(def_params)
461

    
462

    
463
#  CLI Choice:
464

    
465
def run_one_cmd(exe_string, parser, auth_base, cloud):
466
    global _history
467
    _history = History(
468
        parser.arguments['config'].get_global('history_file'))
469
    _history.add(' '.join([exe_string] + argv[1:]))
470
    from kamaki.cli import one_command
471
    one_command.run(auth_base, cloud, parser, _help)
472

    
473

    
474
def run_shell(exe_string, parser, auth_base, cloud):
475
    from command_shell import _init_shell
476
    try:
477
        username, userid = (
478
            auth_base.user_term('name'), auth_base.user_term('id'))
479
    except Exception:
480
        username, userid = '', ''
481
    shell = _init_shell(exe_string, parser, username, userid)
482
    _load_all_commands(shell.cmd_tree, parser.arguments)
483
    shell.run(auth_base, cloud, parser)
484

    
485

    
486
def is_non_API(parser):
487
    nonAPIs = ('history', 'config')
488
    for term in parser.unparsed:
489
        if not term.startswith('-'):
490
            if term in nonAPIs:
491
                return True
492
            return False
493
    return False
494

    
495

    
496
def main():
497
    try:
498
        exe = basename(argv[0])
499
        parser = ArgumentParseManager(exe)
500

    
501
        if parser.arguments['version'].value:
502
            exit(0)
503

    
504
        log_file = parser.arguments['config'].get_global('log_file')
505
        if log_file:
506
            logger.set_log_filename(log_file)
507
        global filelog
508
        filelog = logger.add_file_logger(__name__.split('.')[0])
509
        filelog.info('* Initial Call *\n%s\n- - -' % ' '.join(argv))
510

    
511
        auth_base, cloud = _init_session(parser.arguments, is_non_API(parser))
512

    
513
        from kamaki.cli.utils import suggest_missing
514
        global _colors
515
        exclude = ['ansicolors'] if not _colors == 'on' else []
516
        suggest_missing(exclude=exclude)
517

    
518
        if parser.unparsed:
519
            run_one_cmd(exe, parser, auth_base, cloud)
520
        elif _help:
521
            parser.parser.print_help()
522
            _groups_help(parser.arguments)
523
        else:
524
            run_shell(exe, parser, auth_base, cloud)
525
    except CLIError as err:
526
        print_error_message(err)
527
        if _debug:
528
            raise err
529
        exit(1)
530
    except Exception as er:
531
        print('Unknown Error: %s' % er)
532
        if _debug:
533
            raise
534
        exit(1)