97 lines
3.0 KiB
Python
97 lines
3.0 KiB
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
# Copyright © 2008-2010 Chris Jones <tortoise@tortuga>
|
||
|
|
# Copyright © 2010 Francesco Fumanti <francesco.fumanti@gmx.net>
|
||
|
|
# Copyright © 2011-2014 marmuta <marmvta@gmail.com>
|
||
|
|
#
|
||
|
|
# This file is part of Onboard.
|
||
|
|
#
|
||
|
|
# Onboard is free software; you can redistribute it and/or modify
|
||
|
|
# it under the terms of the GNU General Public License as published by
|
||
|
|
# the Free Software Foundation; either version 3 of the License, or
|
||
|
|
# (at your option) any later version.
|
||
|
|
#
|
||
|
|
# Onboard 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
|
||
|
|
# GNU General Public License for more details.
|
||
|
|
#
|
||
|
|
# You should have received a copy of the GNU General Public License
|
||
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
|
||
|
|
from __future__ import division, print_function, unicode_literals
|
||
|
|
|
||
|
|
import sys
|
||
|
|
from Onboard.utils import unicode_str
|
||
|
|
|
||
|
|
class ChainableError(Exception):
|
||
|
|
"""
|
||
|
|
Base class for Onboard errors
|
||
|
|
|
||
|
|
We want Python to print the stacktrace of the first exception in the chain
|
||
|
|
so we store the last stacktrace if the previous exception in the chain
|
||
|
|
has not.
|
||
|
|
"""
|
||
|
|
|
||
|
|
_last_exception = None
|
||
|
|
|
||
|
|
def __init__(self, message, chained_exception = None):
|
||
|
|
self._message = message
|
||
|
|
self.chained_exception = chained_exception
|
||
|
|
|
||
|
|
if chained_exception:
|
||
|
|
if not (isinstance(chained_exception, ChainableError) \
|
||
|
|
and chained_exception.traceback):
|
||
|
|
|
||
|
|
# Store last traceback
|
||
|
|
self._last_exception = sys.exc_info()
|
||
|
|
|
||
|
|
|
||
|
|
def _get_traceback(self):
|
||
|
|
if self._last_exception:
|
||
|
|
return self._last_exception[2]
|
||
|
|
elif self.chained_exception \
|
||
|
|
and isinstance(self.chained_exception, ChainableError):
|
||
|
|
return self.chained_exception.traceback
|
||
|
|
else:
|
||
|
|
return None
|
||
|
|
|
||
|
|
traceback = property(_get_traceback)
|
||
|
|
|
||
|
|
def __str__(self):
|
||
|
|
message = unicode_str(self._message)
|
||
|
|
if self.chained_exception:
|
||
|
|
message += ", " + unicode_str(self.chained_exception)
|
||
|
|
return message
|
||
|
|
|
||
|
|
class SVGSyntaxError(ChainableError):
|
||
|
|
"""Error raised when Onboard can't comprehend SVG layout file."""
|
||
|
|
pass
|
||
|
|
|
||
|
|
class LayoutFileError(ChainableError):
|
||
|
|
"""Error raised when Onboard can't comprehend layout definition file."""
|
||
|
|
pass
|
||
|
|
|
||
|
|
class ThemeFileError(ChainableError):
|
||
|
|
"""Error raised when Onboard can't comprehend theme definition file."""
|
||
|
|
pass
|
||
|
|
|
||
|
|
class ColorSchemeFileError(ChainableError):
|
||
|
|
"""Error raised when Onboard can't comprehend color
|
||
|
|
scheme definition file."""
|
||
|
|
pass
|
||
|
|
|
||
|
|
class SchemaError(ChainableError):
|
||
|
|
"""Error raised when a gesettings schema does not exist """
|
||
|
|
pass
|
||
|
|
|
||
|
|
def chain_handler(type, value, traceback):
|
||
|
|
"""
|
||
|
|
Wrap the default handler so that we can get the traceback from chained
|
||
|
|
exceptions.
|
||
|
|
"""
|
||
|
|
if isinstance(value, ChainableError) and value.traceback:
|
||
|
|
traceback = value.traceback
|
||
|
|
|
||
|
|
sys.__excepthook__(type, value, traceback)
|