Statistics
| Branch: | Tag: | Revision:

root / kamaki / cli / errors.py @ 5a745d8a

History | View | Annotate | Download (4.8 kB)

1 c9e706b2 Stavros Sachtouris
# Copyright 2011 GRNET S.A. All rights reserved.
2 c9e706b2 Stavros Sachtouris
#
3 c9e706b2 Stavros Sachtouris
# Redistribution and use in source and binary forms, with or
4 c9e706b2 Stavros Sachtouris
# without modification, are permitted provided that the following
5 c9e706b2 Stavros Sachtouris
# conditions are met:
6 c9e706b2 Stavros Sachtouris
#
7 c9e706b2 Stavros Sachtouris
#   1. Redistributions of source code must retain the above
8 c9e706b2 Stavros Sachtouris
#      copyright notice, this list of conditions and the following
9 c9e706b2 Stavros Sachtouris
#      disclaimer.
10 c9e706b2 Stavros Sachtouris
#
11 c9e706b2 Stavros Sachtouris
#   2. Redistributions in binary form must reproduce the above
12 c9e706b2 Stavros Sachtouris
#      copyright notice, this list of conditions and the following
13 c9e706b2 Stavros Sachtouris
#      disclaimer in the documentation and/or other materials
14 c9e706b2 Stavros Sachtouris
#      provided with the distribution.
15 c9e706b2 Stavros Sachtouris
#
16 c9e706b2 Stavros Sachtouris
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 c9e706b2 Stavros Sachtouris
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 c9e706b2 Stavros Sachtouris
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 c9e706b2 Stavros Sachtouris
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 c9e706b2 Stavros Sachtouris
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 c9e706b2 Stavros Sachtouris
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 c9e706b2 Stavros Sachtouris
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 c9e706b2 Stavros Sachtouris
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 c9e706b2 Stavros Sachtouris
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 c9e706b2 Stavros Sachtouris
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 c9e706b2 Stavros Sachtouris
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 c9e706b2 Stavros Sachtouris
# POSSIBILITY OF SUCH DAMAGE.
28 c9e706b2 Stavros Sachtouris
#
29 c9e706b2 Stavros Sachtouris
# The views and conclusions contained in the software and
30 c9e706b2 Stavros Sachtouris
# documentation are those of the authors and should not be
31 c9e706b2 Stavros Sachtouris
# interpreted as representing official policies, either expressed
32 c9e706b2 Stavros Sachtouris
# or implied, of GRNET S.A.
33 c9e706b2 Stavros Sachtouris
34 6069b53b Stavros Sachtouris
import logging
35 6069b53b Stavros Sachtouris
36 6069b53b Stavros Sachtouris
sendlog = logging.getLogger('clients.send')
37 6069b53b Stavros Sachtouris
recvlog = logging.getLogger('clients.recv')
38 de4f08ef Stavros Sachtouris
39 fd5db045 Stavros Sachtouris
40 c9e706b2 Stavros Sachtouris
class CLIError(Exception):
41 c1558584 Stavros Sachtouris
42 0238c167 Stavros Sachtouris
    def __init__(self, message, details=[], importance=0):
43 c9e706b2 Stavros Sachtouris
        """
44 0238c167 Stavros Sachtouris
        @message is the main message of the Error
45 0238c167 Stavros Sachtouris
        @detauls is a list of previous errors
46 0238c167 Stavros Sachtouris
        @importance of the output for the user
47 0238c167 Stavros Sachtouris
            Suggested values: 0, 1, 2, 3
48 0238c167 Stavros Sachtouris
        """
49 6069b53b Stavros Sachtouris
        message += '' if message and message[-1] == '\n' else '\n'
50 0238c167 Stavros Sachtouris
        super(CLIError, self).__init__(message)
51 c1558584 Stavros Sachtouris
        self.details = list(details) if isinstance(details, list)\
52 0238c167 Stavros Sachtouris
            else [] if details is None else ['%s' % details]
53 0238c167 Stavros Sachtouris
        try:
54 0238c167 Stavros Sachtouris
            self.importance = int(importance)
55 0238c167 Stavros Sachtouris
        except ValueError:
56 0238c167 Stavros Sachtouris
            self.importance = 0
57 c9e706b2 Stavros Sachtouris
58 fd5db045 Stavros Sachtouris
59 c9e706b2 Stavros Sachtouris
class CLISyntaxError(CLIError):
60 0238c167 Stavros Sachtouris
    def __init__(self, message='Syntax Error', details=[], importance=1):
61 0238c167 Stavros Sachtouris
        super(CLISyntaxError, self).__init__(message, details, importance)
62 fd5db045 Stavros Sachtouris
63 c9e706b2 Stavros Sachtouris
64 c9e706b2 Stavros Sachtouris
class CLIUnknownCommand(CLIError):
65 0238c167 Stavros Sachtouris
    def __init__(self, message='Unknown Command', details=[], importance=1):
66 0238c167 Stavros Sachtouris
        super(CLIUnknownCommand, self).__init__(message, details, importance)
67 fd5db045 Stavros Sachtouris
68 c9e706b2 Stavros Sachtouris
69 926d6863 Stavros Sachtouris
class CLICmdSpecError(CLIError):
70 de73876b Stavros Sachtouris
    def __init__(
71 24ff0a35 Stavros Sachtouris
            self, message='Command Specification Error',
72 24ff0a35 Stavros Sachtouris
            details=[], importance=0):
73 0238c167 Stavros Sachtouris
        super(CLICmdSpecError, self).__init__(message, details, importance)
74 fd5db045 Stavros Sachtouris
75 c9e706b2 Stavros Sachtouris
76 017d37ce Stavros Sachtouris
class CLICmdIncompleteError(CLICmdSpecError):
77 de73876b Stavros Sachtouris
    def __init__(
78 24ff0a35 Stavros Sachtouris
            self, message='Incomplete Command Error',
79 24ff0a35 Stavros Sachtouris
            details=[], importance=1):
80 0238c167 Stavros Sachtouris
        super(CLICmdSpecError, self).__init__(message, details, importance)
81 fd5db045 Stavros Sachtouris
82 017d37ce Stavros Sachtouris
83 6069b53b Stavros Sachtouris
def raiseCLIError(err, message='', importance=0, details=[]):
84 83ba5545 Stavros Sachtouris
    """
85 83ba5545 Stavros Sachtouris
    :param err: (Exception) the original error message, if None, a new
86 83ba5545 Stavros Sachtouris
        CLIError is born which is conceptually bind to raiser
87 83ba5545 Stavros Sachtouris

88 83ba5545 Stavros Sachtouris
    :param message: (str) a custom error message that overrides err's
89 83ba5545 Stavros Sachtouris

90 83ba5545 Stavros Sachtouris
    :param importance: (int) instruction to called application (e.g. for
91 83ba5545 Stavros Sachtouris
        coloring printed error messages)
92 83ba5545 Stavros Sachtouris

93 83ba5545 Stavros Sachtouris
    :param details: (list) various information on the error
94 83ba5545 Stavros Sachtouris

95 83ba5545 Stavros Sachtouris
    :raises CLIError: it is the purpose of this method
96 83ba5545 Stavros Sachtouris
    """
97 6069b53b Stavros Sachtouris
    from traceback import format_stack
98 c1558584 Stavros Sachtouris
99 83ba5545 Stavros Sachtouris
    stack = ['%s' % type(err)] if err else ['<kamaki.cli.errors.CLIError>']
100 3667e969 Stavros Sachtouris
    stack += format_stack()
101 3667e969 Stavros Sachtouris
    try:
102 3667e969 Stavros Sachtouris
        stack = [e for e in stack if e != stack[1]]
103 3667e969 Stavros Sachtouris
    except KeyError:
104 3667e969 Stavros Sachtouris
        recvlog.debug('\n   < '.join(stack))
105 83ba5545 Stavros Sachtouris
106 3e0f2e53 Stavros Sachtouris
    details = ['%s' % details] if not isinstance(details, list)\
107 3e0f2e53 Stavros Sachtouris
        else list(details)
108 c1558584 Stavros Sachtouris
    details += getattr(err, 'details', [])
109 6069b53b Stavros Sachtouris
110 83ba5545 Stavros Sachtouris
    if err:
111 83ba5545 Stavros Sachtouris
        origerr = '%s' % err
112 83ba5545 Stavros Sachtouris
        origerr = origerr if origerr else '%s' % type(err)
113 83ba5545 Stavros Sachtouris
    else:
114 3667e969 Stavros Sachtouris
        origerr = stack[0]
115 6069b53b Stavros Sachtouris
116 a517ff50 Stavros Sachtouris
    message = '%s' % (message if message else origerr)
117 6069b53b Stavros Sachtouris
118 6069b53b Stavros Sachtouris
    try:
119 dc6fc88e Stavros Sachtouris
        status = err.status or err.errno
120 6069b53b Stavros Sachtouris
    except AttributeError:
121 6069b53b Stavros Sachtouris
        status = None
122 6069b53b Stavros Sachtouris
123 3667e969 Stavros Sachtouris
    if origerr not in details + [message]:
124 3667e969 Stavros Sachtouris
        details.append(origerr)
125 6069b53b Stavros Sachtouris
126 3667e969 Stavros Sachtouris
    message += '' if message and message[-1] == '\n' else '\n'
127 6069b53b Stavros Sachtouris
    if status:
128 6069b53b Stavros Sachtouris
        message = '(%s) %s' % (err.status, message)
129 0238c167 Stavros Sachtouris
        try:
130 0238c167 Stavros Sachtouris
            status = int(err.status)
131 0238c167 Stavros Sachtouris
        except ValueError:
132 6069b53b Stavros Sachtouris
            raise CLIError(message, details, importance)
133 a03ade9e Stavros Sachtouris
        importance = importance if importance else status // 100
134 c1558584 Stavros Sachtouris
    importance = getattr(err, 'importance', importance)
135 6069b53b Stavros Sachtouris
    raise CLIError(message, details, importance)