Statistics
| Branch: | Tag: | Revision:

root / kamaki / cli / command_shell.py @ f724cd35

History | View | Annotate | Download (12.1 kB)

1
# Copyright 2012 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.
33

    
34
from cmd import Cmd
35
from os import popen
36
from sys import stdout
37

    
38
from kamaki.cli import exec_cmd, print_error_message, print_subcommands_help
39
from kamaki.cli.argument import ArgumentParseManager
40
from kamaki.cli.utils import print_dict, split_input
41
from kamaki.cli.history import History
42
from kamaki.cli.errors import CLIError
43
from kamaki.clients import ClientError
44
from kamaki.cli.logger import add_file_logger
45

    
46
log = add_file_logger(__name__)
47

    
48

    
49
def _init_shell(exe_string, parser):
50
    parser.arguments.pop('version', None)
51
    shell = Shell()
52
    shell.set_prompt(exe_string)
53
    from kamaki import __version__ as version
54
    shell.greet(version)
55
    shell.do_EOF = shell.do_exit
56
    from kamaki.cli.command_tree import CommandTree
57
    shell.cmd_tree = CommandTree(
58
        'kamaki', 'A command line tool for poking clouds')
59
    return shell
60

    
61

    
62
class Shell(Cmd):
63
    """Kamaki interactive shell"""
64
    _prefix = '['
65
    _suffix = ']: '
66
    cmd_tree = None
67
    _history = None
68
    _context_stack = []
69
    _prompt_stack = []
70
    _parser = None
71
    auth_base = None
72

    
73
    undoc_header = 'interactive shell commands:'
74

    
75
    def postcmd(self, post, line):
76
        if self._context_stack:
77
            self._roll_command()
78
            self._restore(self._context_stack.pop())
79
            self.set_prompt(
80
                self._prompt_stack.pop()[len(self._prefix):-len(self._suffix)])
81

    
82
        return Cmd.postcmd(self, post, line)
83

    
84
    def precmd(self, line):
85
        if line.startswith('/'):
86
            start, end = len(self._prefix), -len(self._suffix)
87
            cur_cmd_path = self.prompt.replace(' ', '_')[start:end]
88
            if cur_cmd_path != self.cmd_tree.name:
89
                cur_cmd = self.cmd_tree.get_command(cur_cmd_path)
90
                self._context_stack.append(self._backup())
91
                self._prompt_stack.append(self.prompt)
92
                new_context = self
93
                self._roll_command(cur_cmd.path)
94
                new_context.set_prompt(self.cmd_tree.name)
95
                for grp_cmd in self.cmd_tree.get_subcommands():
96
                    self._register_command(grp_cmd.path)
97
            return line[1:]
98
        return line
99

    
100
    def greet(self, version):
101
        print('kamaki v%s - Interactive Shell\n' % version)
102
        print('\t/exit     \tterminate kamaki')
103
        print('\texit or ^D\texit context')
104
        print('\t? or help \tavailable commands')
105
        print('\t?command  \thelp on command')
106
        print('\t!<command>\texecute OS shell command')
107
        print('')
108

    
109
    def set_prompt(self, new_prompt):
110
        self.prompt = '%s%s%s' % (self._prefix, new_prompt, self._suffix)
111

    
112
    def cmdloop(self):
113
        while True:
114
            try:
115
                Cmd.cmdloop(self)
116
            except KeyboardInterrupt:
117
                print(' - interrupted')
118
                continue
119
            break
120

    
121
    def do_exit(self, line):
122
        print('')
123
        start, end = len(self._prefix), -len(self._suffix)
124
        if self.prompt[start:end] == self.cmd_tree.name:
125
            exit(0)
126
        return True
127

    
128
    def do_shell(self, line):
129
        output = popen(line).read()
130
        print(output)
131

    
132
    @property
133
    def path(self):
134
        if self._cmd:
135
            return self._cmd.path
136
        return ''
137

    
138
    @classmethod
139
    def _register_method(self, method, name):
140
        self.__dict__[name] = method
141

    
142
    @classmethod
143
    def _unregister_method(self, name):
144
        try:
145
            self.__dict__.pop(name)
146
        except KeyError:
147
            pass
148

    
149
    def _roll_command(self, cmd_path=None):
150
        for subname in self.cmd_tree.get_subnames(cmd_path):
151
            self._unregister_method('do_%s' % subname)
152
            self._unregister_method('complete_%s' % subname)
153
            self._unregister_method('help_%s' % subname)
154

    
155
    @classmethod
156
    def _backup(self):
157
        return dict(self.__dict__)
158

    
159
    @classmethod
160
    def _restore(self, oldcontext):
161
        self.__dict__ = oldcontext
162

    
163
    @staticmethod
164
    def _create_help_method(cmd_name, args, descr, syntax):
165
        tmp_args = dict(args)
166
        tmp_args.pop('options', None)
167
        tmp_args.pop('debug', None)
168
        tmp_args.pop('verbose', None)
169
        tmp_args.pop('include', None)
170
        tmp_args.pop('silent', None)
171
        tmp_args.pop('config', None)
172
        help_parser = ArgumentParseManager(cmd_name, tmp_args)
173
        help_parser.parser.description = descr
174
        help_parser.syntax = syntax
175
        return help_parser.parser.print_help
176

    
177
    def _register_command(self, cmd_path):
178
        cmd = self.cmd_tree.get_command(cmd_path)
179
        arguments = self._parser.arguments
180

    
181
        def do_method(new_context, line):
182
            """ Template for all cmd.Cmd methods of the form do_<cmd name>
183
                Parse cmd + args and decide to execute or change context
184
                <cmd> <term> <term> <args> is always parsed to most specific
185
                even if cmd_term_term is not a terminal path
186
            """
187
            subcmd, cmd_args = cmd.parse_out(split_input(line))
188
            self._history.add(' '.join([cmd.path.replace('_', ' '), line]))
189
            cmd_parser = ArgumentParseManager(
190
                cmd.name, dict(self._parser.arguments))
191
            cmd_parser.parser.description = subcmd.help
192

    
193
            # exec command or change context
194
            if subcmd.is_command:  # exec command
195
                try:
196
                    cls = subcmd.get_class()
197
                    ldescr = getattr(cls, 'long_description', '')
198
                    if subcmd.path == 'history_run':
199
                        instance = cls(
200
                            dict(cmd_parser.arguments),
201
                            cmd_tree=self.cmd_tree)
202
                    else:
203
                        instance = cls(
204
                            dict(cmd_parser.arguments), self.auth_base)
205
                    cmd_parser.update_arguments(instance.arguments)
206
                    cmd_parser.arguments = instance.arguments
207
                    cmd_parser.syntax = '%s %s' % (
208
                        subcmd.path.replace('_', ' '), cls.syntax)
209
                    help_method = self._create_help_method(
210
                        cmd.name, cmd_parser.arguments,
211
                        subcmd.help, cmd_parser.syntax)
212
                    if '-h' in cmd_args or '--help' in cmd_args:
213
                        help_method()
214
                        if ldescr.strip():
215
                            print('\nDetails:')
216
                            print('%s' % ldescr)
217
                        return
218
                    cmd_parser.parse(cmd_args)
219

    
220
                    for name, arg in instance.arguments.items():
221
                        arg.value = getattr(
222
                            cmd_parser.parsed,
223
                            name,
224
                            arg.default)
225

    
226
                    exec_cmd(instance, cmd_parser.unparsed, help_method)
227
                        #[term for term in cmd_parser.unparsed\
228
                        #    if not term.startswith('-')],
229
                except (ClientError, CLIError) as err:
230
                    print_error_message(err)
231
            elif ('-h' in cmd_args or '--help' in cmd_args) or len(cmd_args):
232
                # print options
233
                print('%s' % cmd.help)
234
                print_subcommands_help(cmd)
235
            else:  # change context
236
                #new_context = this
237
                backup_context = self._backup()
238
                old_prompt = self.prompt
239
                new_context._roll_command(cmd.parent_path)
240
                new_context.set_prompt(subcmd.path.replace('_', ' '))
241
                newcmds = [subcmd for subcmd in subcmd.get_subcommands()]
242
                for subcmd in newcmds:
243
                    new_context._register_command(subcmd.path)
244
                new_context.cmdloop()
245
                self.prompt = old_prompt
246
                #when new context is over, roll back to the old one
247
                self._restore(backup_context)
248
        self._register_method(do_method, 'do_%s' % cmd.name)
249

    
250
        def help_method(self):
251
            print('%s (%s -h for more options)' % (cmd.help, cmd.name))
252
            if cmd.is_command:
253
                cls = cmd.get_class()
254
                ldescr = getattr(cls, 'long_description', '')
255
                #_construct_command_syntax(cls)
256
                plist = self.prompt[len(self._prefix):-len(self._suffix)]
257
                plist = plist.split(' ')
258
                clist = cmd.path.split('_')
259
                upto = 0
260
                if ldescr:
261
                    print('%s' % ldescr)
262
                for i, term in enumerate(plist):
263
                    try:
264
                        if clist[i] == term:
265
                            upto += 1
266
                    except IndexError:
267
                        break
268
                print('Syntax: %s %s' % (' '.join(clist[upto:]), cls.syntax))
269
            if cmd.subcommands:
270
                print_subcommands_help(cmd)
271

    
272
        self._register_method(help_method, 'help_%s' % cmd.name)
273

    
274
        def complete_method(self, text, line, begidx, endidx):
275
            subcmd, cmd_args = cmd.parse_out(split_input(line)[1:])
276
            if subcmd.is_command:
277
                cls = subcmd.get_class()
278
                instance = cls(dict(arguments))
279
                empty, sep, subname = subcmd.path.partition(cmd.path)
280
                cmd_name = '%s %s' % (cmd.name, subname.replace('_', ' '))
281
                print('\n%s\nSyntax:\t%s %s' % (
282
                    cls.description,
283
                    cmd_name,
284
                    cls.syntax))
285
                cmd_args = {}
286
                for arg in instance.arguments.values():
287
                    cmd_args[','.join(arg.parsed_name)] = arg.help
288
                print_dict(cmd_args, ident=2)
289
                stdout.write('%s %s' % (self.prompt, line))
290
            return subcmd.get_subnames()
291
        self._register_method(complete_method, 'complete_%s' % cmd.name)
292

    
293
    @property
294
    def doc_header(self):
295
        tmp_partition = self.prompt.partition(self._prefix)
296
        tmp_partition = tmp_partition[2].partition(self._suffix)
297
        hdr = tmp_partition[0].strip()
298
        return '%s commands:' % hdr
299

    
300
    def run(self, auth_base, parser, path=''):
301
        self.auth_base = auth_base
302
        self._parser = parser
303
        self._history = History(
304
            parser.arguments['config'].get('history', 'file'))
305
        if path:
306
            cmd = self.cmd_tree.get_command(path)
307
            intro = cmd.path.replace('_', ' ')
308
        else:
309
            intro = self.cmd_tree.name
310

    
311
        for subcmd in self.cmd_tree.get_subcommands(path):
312
            self._register_command(subcmd.path)
313

    
314
        self.set_prompt(intro)
315

    
316
        try:
317
            self.cmdloop()
318
        except Exception as e:
319
            print('(%s)' % e)
320
            from traceback import print_stack
321
            print_stack()