Files
git/git_remote_helpers/fastimport/errors.py
2013-01-31 23:46:51 +00:00

183 lines
5.4 KiB
Python

# Copyright (C) 2008 Canonical Ltd
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Exception classes for fastimport"""
class FastImportError(StandardError):
"""The base exception class for all import processing exceptions."""
_fmt = "Unknown Import Error"
def __str__(self):
return self._fmt % self.__dict__
class ParsingError(FastImportError):
"""The base exception class for all import processing exceptions."""
_fmt = "Unknown Import Parsing Error"
def __init__(self, filename, lineno):
FastImportError.__init__(self)
self.filename = filename
self.lineno = lineno
def __str__(self):
result = []
if self.filename:
result.append(self.filename)
result.append(", ")
result.append("line ")
result.append(str(self.lineno))
result.append(": ")
result.append(FastImportError.__str__(self))
return "".join(result)
class MissingBytes(ParsingError):
"""Raised when EOF encountered while expecting to find more bytes."""
_fmt = ("Unexpected EOF - expected %(expected)d bytes,"
" found %(found)d")
def __init__(self, filename, lineno, expected, found):
ParsingError.__init__(self, filename, lineno)
self.expected = expected
self.found = found
class MissingTerminator(ParsingError):
"""Raised when EOF encountered while expecting to find a terminator."""
_fmt = "Unexpected EOF - expected '%(terminator)s' terminator"
def __init__(self, filename, lineno, terminator):
ParsingError.__init__(self, filename, lineno)
self.terminator = terminator
class InvalidCommand(ParsingError):
"""Raised when an unknown command found."""
_fmt = ("Invalid command '%(cmd)s'")
def __init__(self, filename, lineno, cmd):
ParsingError.__init__(self, filename, lineno)
self.cmd = cmd
class MissingSection(ParsingError):
"""Raised when a section is required in a command but not present."""
_fmt = ("Command %(cmd)s is missing section %(section)s")
def __init__(self, filename, lineno, cmd, section):
ParsingError.__init__(self, filename, lineno)
self.cmd = cmd
self.section = section
class BadFormat(ParsingError):
"""Raised when a section is formatted incorrectly."""
_fmt = ("Bad format for section %(section)s in "
"command %(cmd)s: found '%(text)s'")
def __init__(self, filename, lineno, cmd, section, text):
ParsingError.__init__(self, filename, lineno)
self.cmd = cmd
self.section = section
self.text = text
class InvalidTimezone(ParsingError):
"""Raised when converting a string timezone to a seconds offset."""
_fmt = "Timezone %(timezone)r could not be converted.%(reason)s"
def __init__(self, filename, lineno, timezone, reason=None):
ParsingError.__init__(self, filename, lineno)
self.timezone = timezone
if reason:
self.reason = ' ' + reason
else:
self.reason = ''
class UnknownDateFormat(FastImportError):
"""Raised when an unknown date format is given."""
_fmt = ("Unknown date format '%(format)s'")
def __init__(self, format):
FastImportError.__init__(self)
self.format = format
class MissingHandler(FastImportError):
"""Raised when a processor can't handle a command."""
_fmt = ("Missing handler for command %(cmd)s")
def __init__(self, cmd):
FastImportError.__init__(self)
self.cmd = cmd
class UnknownParameter(FastImportError):
"""Raised when an unknown parameter is passed to a processor."""
_fmt = ("Unknown parameter - '%(param)s' not in %(knowns)s")
def __init__(self, param, knowns):
FastImportError.__init__(self)
self.param = param
self.knowns = knowns
class BadRepositorySize(FastImportError):
"""Raised when the repository has an incorrect number of revisions."""
_fmt = ("Bad repository size - %(found)d revisions found, "
"%(expected)d expected")
def __init__(self, expected, found):
FastImportError.__init__(self)
self.expected = expected
self.found = found
class BadRestart(FastImportError):
"""Raised when the import stream and id-map do not match up."""
_fmt = ("Bad restart - attempted to skip commit %(commit_id)s "
"but matching revision-id is unknown")
def __init__(self, commit_id):
FastImportError.__init__(self)
self.commit_id = commit_id
class UnknownFeature(FastImportError):
"""Raised when an unknown feature is given in the input stream."""
_fmt = ("Unknown feature '%(feature)s' - try a later importer or "
"an earlier data format")
def __init__(self, feature):
FastImportError.__init__(self)
self.feature = feature