Skip to content
exception.py 2.81 KiB
Newer Older
# -*- python -*-
# -*- coding: utf-8 -*-

Sébastien Luttringer's avatar
Sébastien Luttringer committed
# This file is part of Installsystems.
Sébastien Luttringer's avatar
Sébastien Luttringer committed
# Installsystems is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
Sébastien Luttringer's avatar
Sébastien Luttringer committed
# Installsystems is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Sébastien Luttringer's avatar
Sébastien Luttringer committed
# GNU Lesser General Public License for more details.
Sébastien Luttringer's avatar
Sébastien Luttringer committed
# You should have received a copy of the GNU Lesser General Public License
# along with Installsystems.  If not, see <http://www.gnu.org/licenses/>.

'''
InstallSystems Exceptions
'''

Sébastien Luttringer's avatar
Sébastien Luttringer committed
from traceback import print_tb, print_exc, format_exception_only
from sys import exc_info, stderr

class ISException(Exception):
    '''
    Base exception class
    '''
    def __init__(self, message=u"", exception=None):
Sébastien Luttringer's avatar
Sébastien Luttringer committed
        Exception.__init__(self)
        self.message = unicode(message)
Sébastien Luttringer's avatar
Sébastien Luttringer committed
        self.exception = None if exception is None else exc_info()

    def __str__(self):
        '''
        Return a description of exception
        '''
        if self.exception is not None:
            return u"%s: %s" % (self.message, self.exception[1])
        else:
            return self.message

Sébastien Luttringer's avatar
Sébastien Luttringer committed
    def print_sub_tb(self, fd=stderr):
        '''
        Print stored exception traceback and exception message
        '''
        # no exception, do nothing
        if self.exception is None:
            return
        # print traceback and exception separatly to avoid recursive print of
        # "Traceback (most recent call last)" from traceback.print_exception
Sébastien Luttringer's avatar
Sébastien Luttringer committed
        print_tb(self.exception[2], file=fd)
        fd.write("".join(format_exception_only(self.exception[0],
                                               self.exception[1])))
        # recursively call traceback print on ISException error
        if isinstance(self.exception[1], ISException):
            self.exception[1].print_sub_tb()

Sébastien Luttringer's avatar
Sébastien Luttringer committed
    def print_tb(self, fd=stderr):
        '''
        Print traceback from embeded exception or current one
        '''
        from installsystems.printer import out
        # coloring
        out("#l##B#", fd=fd, endl="")
Sébastien Luttringer's avatar
Sébastien Luttringer committed
        print_exc(file=fd)
        self.print_sub_tb(fd)
        # reset color
        out("#R#", fd=fd, endl="")

class ISError(ISException):
    '''
    Installsystems error; this exception will stop execution
    '''

class ISWarning(ISException):
    '''
    Installsystems warning; this exception do not stop execution
    '''


class InvalidSourceImage(ISError):
    '''
    Invalid source image errors
    '''

Sébastien Luttringer's avatar
Sébastien Luttringer committed
    def __init__(self, message=u"", exception=None):
        ISError.__init__(self, u"Invalid source image: " + message, exception)