Guest User

errors.py

a guest
Jul 27th, 2012
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 89.99 KB | None | 0 0
  1. # Copyright (C) 2005-2011 Canonical Ltd
  2. #
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software
  15. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  16.  
  17. """Exceptions for bzr, and reporting of them.
  18. """
  19.  
  20. from __future__ import absolute_import
  21.  
  22. # TODO: is there any value in providing the .args field used by standard
  23. # python exceptions?   A list of values with no names seems less useful
  24. # to me.
  25.  
  26. # TODO: Perhaps convert the exception to a string at the moment it's
  27. # constructed to make sure it will succeed.  But that says nothing about
  28. # exceptions that are never raised.
  29.  
  30. # TODO: selftest assertRaises should probably also check that every error
  31. # raised can be formatted as a string successfully, and without giving
  32. # 'unprintable'.
  33.  
  34.  
  35. # return codes from the bzr program
  36. EXIT_OK = 0
  37. EXIT_ERROR = 3
  38. EXIT_INTERNAL_ERROR = 4
  39.  
  40.  
  41. class BzrError(StandardError):
  42.     """
  43.    Base class for errors raised by bzrlib.
  44.  
  45.    :cvar internal_error: if True this was probably caused by a bzr bug and
  46.        should be displayed with a traceback; if False (or absent) this was
  47.        probably a user or environment error and they don't need the gory
  48.        details.  (That can be overridden by -Derror on the command line.)
  49.  
  50.    :cvar _fmt: Format string to display the error; this is expanded
  51.        by the instance's dict.
  52.    """
  53.  
  54.     internal_error = False
  55.  
  56.     def __init__(self, msg=None, **kwds):
  57.         """Construct a new BzrError.
  58.  
  59.        There are two alternative forms for constructing these objects.
  60.        Either a preformatted string may be passed, or a set of named
  61.        arguments can be given.  The first is for generic "user" errors which
  62.        are not intended to be caught and so do not need a specific subclass.
  63.        The second case is for use with subclasses that provide a _fmt format
  64.        string to print the arguments.
  65.  
  66.        Keyword arguments are taken as parameters to the error, which can
  67.        be inserted into the format string template.  It's recommended
  68.        that subclasses override the __init__ method to require specific
  69.        parameters.
  70.  
  71.        :param msg: If given, this is the literal complete text for the error,
  72.           not subject to expansion. 'msg' is used instead of 'message' because
  73.           python evolved and, in 2.6, forbids the use of 'message'.
  74.        """
  75.         StandardError.__init__(self)
  76.         if msg is not None:
  77.             # I was going to deprecate this, but it actually turns out to be
  78.             # quite handy - mbp 20061103.
  79.             self._preformatted_string = msg
  80.         else:
  81.             self._preformatted_string = None
  82.             for key, value in kwds.items():
  83.                 setattr(self, key, value)
  84.  
  85.     def _format(self):
  86.         s = getattr(self, '_preformatted_string', None)
  87.         if s is not None:
  88.             # contains a preformatted message
  89.             return s
  90.         try:
  91.             fmt = self._get_format_string()
  92.             if fmt:
  93.                 d = dict(self.__dict__)
  94.                 s = fmt % d
  95.                 # __str__() should always return a 'str' object
  96.                 # never a 'unicode' object.
  97.                 return s
  98.         except Exception, e:
  99.             pass # just bind to 'e' for formatting below
  100.         else:
  101.             e = None
  102.         return 'Unprintable exception %s: dict=%r, fmt=%r, error=%r' \
  103.             % (self.__class__.__name__,
  104.                self.__dict__,
  105.                getattr(self, '_fmt', None),
  106.                e)
  107.  
  108.     def __unicode__(self):
  109.         u = self._format()
  110.         if isinstance(u, str):
  111.             # Try decoding the str using the default encoding.
  112.             u = unicode(u)
  113.         elif not isinstance(u, unicode):
  114.             # Try to make a unicode object from it, because __unicode__ must
  115.             # return a unicode object.
  116.             u = unicode(u)
  117.         return u
  118.  
  119.     def __str__(self):
  120.         s = self._format()
  121.         if isinstance(s, unicode):
  122.             s = s.encode('utf8')
  123.         else:
  124.             # __str__ must return a str.
  125.             s = str(s)
  126.         return s
  127.  
  128.     def __repr__(self):
  129.         return '%s(%s)' % (self.__class__.__name__, str(self))
  130.  
  131.     def _get_format_string(self):
  132.         """Return format string for this exception or None"""
  133.         fmt = getattr(self, '_fmt', None)
  134.         if fmt is not None:
  135.             from bzrlib.i18n import gettext
  136.             return gettext(unicode(fmt)) # _fmt strings should be ascii
  137.  
  138.     def __eq__(self, other):
  139.         if self.__class__ is not other.__class__:
  140.             return NotImplemented
  141.         return self.__dict__ == other.__dict__
  142.  
  143.  
  144. class InternalBzrError(BzrError):
  145.     """Base class for errors that are internal in nature.
  146.  
  147.    This is a convenience class for errors that are internal. The
  148.    internal_error attribute can still be altered in subclasses, if needed.
  149.    Using this class is simply an easy way to get internal errors.
  150.    """
  151.  
  152.     internal_error = True
  153.  
  154.  
  155. class AlreadyBuilding(BzrError):
  156.  
  157.     _fmt = "The tree builder is already building a tree."
  158.  
  159.  
  160. class BranchError(BzrError):
  161.     """Base class for concrete 'errors about a branch'."""
  162.  
  163.     def __init__(self, branch):
  164.         BzrError.__init__(self, branch=branch)
  165.  
  166.  
  167. class BzrCheckError(InternalBzrError):
  168.  
  169.     _fmt = "Internal check failed: %(msg)s"
  170.  
  171.     def __init__(self, msg):
  172.         BzrError.__init__(self)
  173.         self.msg = msg
  174.  
  175.  
  176. class DirstateCorrupt(BzrError):
  177.  
  178.     _fmt = "The dirstate file (%(state)s) appears to be corrupt: %(msg)s"
  179.  
  180.     def __init__(self, state, msg):
  181.         BzrError.__init__(self)
  182.         self.state = state
  183.         self.msg = msg
  184.  
  185.  
  186. class DisabledMethod(InternalBzrError):
  187.  
  188.     _fmt = "The smart server method '%(class_name)s' is disabled."
  189.  
  190.     def __init__(self, class_name):
  191.         BzrError.__init__(self)
  192.         self.class_name = class_name
  193.  
  194.  
  195. class IncompatibleAPI(BzrError):
  196.  
  197.     _fmt = 'The API for "%(api)s" is not compatible with "%(wanted)s". '\
  198.         'It supports versions "%(minimum)s" to "%(current)s".'
  199.  
  200.     def __init__(self, api, wanted, minimum, current):
  201.         self.api = api
  202.         self.wanted = wanted
  203.         self.minimum = minimum
  204.         self.current = current
  205.  
  206.  
  207. class InProcessTransport(BzrError):
  208.  
  209.     _fmt = "The transport '%(transport)s' is only accessible within this " \
  210.         "process."
  211.  
  212.     def __init__(self, transport):
  213.         self.transport = transport
  214.  
  215.  
  216. class InvalidEntryName(InternalBzrError):
  217.  
  218.     _fmt = "Invalid entry name: %(name)s"
  219.  
  220.     def __init__(self, name):
  221.         BzrError.__init__(self)
  222.         self.name = name
  223.  
  224.  
  225. class InvalidRevisionNumber(BzrError):
  226.  
  227.     _fmt = "Invalid revision number %(revno)s"
  228.  
  229.     def __init__(self, revno):
  230.         BzrError.__init__(self)
  231.         self.revno = revno
  232.  
  233.  
  234. class InvalidRevisionId(BzrError):
  235.  
  236.     _fmt = "Invalid revision-id {%(revision_id)s} in %(branch)s"
  237.  
  238.     def __init__(self, revision_id, branch):
  239.         # branch can be any string or object with __str__ defined
  240.         BzrError.__init__(self)
  241.         self.revision_id = revision_id
  242.         self.branch = branch
  243.  
  244.  
  245. class ReservedId(BzrError):
  246.  
  247.     _fmt = "Reserved revision-id {%(revision_id)s}"
  248.  
  249.     def __init__(self, revision_id):
  250.         self.revision_id = revision_id
  251.  
  252.  
  253. class RootMissing(InternalBzrError):
  254.  
  255.     _fmt = ("The root entry of a tree must be the first entry supplied to "
  256.         "the commit builder.")
  257.  
  258.  
  259. class NoPublicBranch(BzrError):
  260.  
  261.     _fmt = 'There is no public branch set for "%(branch_url)s".'
  262.  
  263.     def __init__(self, branch):
  264.         import bzrlib.urlutils as urlutils
  265.         public_location = urlutils.unescape_for_display(branch.base, 'ascii')
  266.         BzrError.__init__(self, branch_url=public_location)
  267.  
  268.  
  269. class NoHelpTopic(BzrError):
  270.  
  271.     _fmt = ("No help could be found for '%(topic)s'. "
  272.         "Please use 'bzr help topics' to obtain a list of topics.")
  273.  
  274.     def __init__(self, topic):
  275.         self.topic = topic
  276.  
  277.  
  278. class NoSuchId(BzrError):
  279.  
  280.     _fmt = 'The file id "%(file_id)s" is not present in the tree %(tree)s.'
  281.  
  282.     def __init__(self, tree, file_id):
  283.         BzrError.__init__(self)
  284.         self.file_id = file_id
  285.         self.tree = tree
  286.  
  287.  
  288. class NoSuchIdInRepository(NoSuchId):
  289.  
  290.     _fmt = ('The file id "%(file_id)s" is not present in the repository'
  291.             ' %(repository)r')
  292.  
  293.     def __init__(self, repository, file_id):
  294.         BzrError.__init__(self, repository=repository, file_id=file_id)
  295.  
  296.  
  297. class NotStacked(BranchError):
  298.  
  299.     _fmt = "The branch '%(branch)s' is not stacked."
  300.  
  301.  
  302. class InventoryModified(InternalBzrError):
  303.  
  304.     _fmt = ("The current inventory for the tree %(tree)r has been modified,"
  305.             " so a clean inventory cannot be read without data loss.")
  306.  
  307.     def __init__(self, tree):
  308.         self.tree = tree
  309.  
  310.  
  311. class NoWorkingTree(BzrError):
  312.  
  313.     _fmt = 'No WorkingTree exists for "%(base)s".'
  314.  
  315.     def __init__(self, base):
  316.         BzrError.__init__(self)
  317.         self.base = base
  318.  
  319.  
  320. class NotBuilding(BzrError):
  321.  
  322.     _fmt = "Not currently building a tree."
  323.  
  324.  
  325. class NotLocalUrl(BzrError):
  326.  
  327.     _fmt = "%(url)s is not a local path."
  328.  
  329.     def __init__(self, url):
  330.         self.url = url
  331.  
  332.  
  333. class WorkingTreeAlreadyPopulated(InternalBzrError):
  334.  
  335.     _fmt = 'Working tree already populated in "%(base)s"'
  336.  
  337.     def __init__(self, base):
  338.         self.base = base
  339.  
  340.  
  341. class BzrCommandError(BzrError):
  342.     """Error from user command"""
  343.  
  344.     # Error from malformed user command; please avoid raising this as a
  345.     # generic exception not caused by user input.
  346.     #
  347.     # I think it's a waste of effort to differentiate between errors that
  348.     # are not intended to be caught anyway.  UI code need not subclass
  349.     # BzrCommandError, and non-UI code should not throw a subclass of
  350.     # BzrCommandError.  ADHB 20051211
  351.  
  352.  
  353. class NotWriteLocked(BzrError):
  354.  
  355.     _fmt = """%(not_locked)r is not write locked but needs to be."""
  356.  
  357.     def __init__(self, not_locked):
  358.         self.not_locked = not_locked
  359.  
  360.  
  361. class BzrOptionError(BzrCommandError):
  362.  
  363.     _fmt = "Error in command line options"
  364.  
  365.  
  366. class BadIndexFormatSignature(BzrError):
  367.  
  368.     _fmt = "%(value)s is not an index of type %(_type)s."
  369.  
  370.     def __init__(self, value, _type):
  371.         BzrError.__init__(self)
  372.         self.value = value
  373.         self._type = _type
  374.  
  375.  
  376. class BadIndexData(BzrError):
  377.  
  378.     _fmt = "Error in data for index %(value)s."
  379.  
  380.     def __init__(self, value):
  381.         BzrError.__init__(self)
  382.         self.value = value
  383.  
  384.  
  385. class BadIndexDuplicateKey(BzrError):
  386.  
  387.     _fmt = "The key '%(key)s' is already in index '%(index)s'."
  388.  
  389.     def __init__(self, key, index):
  390.         BzrError.__init__(self)
  391.         self.key = key
  392.         self.index = index
  393.  
  394.  
  395. class BadIndexKey(BzrError):
  396.  
  397.     _fmt = "The key '%(key)s' is not a valid key."
  398.  
  399.     def __init__(self, key):
  400.         BzrError.__init__(self)
  401.         self.key = key
  402.  
  403.  
  404. class BadIndexOptions(BzrError):
  405.  
  406.     _fmt = "Could not parse options for index %(value)s."
  407.  
  408.     def __init__(self, value):
  409.         BzrError.__init__(self)
  410.         self.value = value
  411.  
  412.  
  413. class BadIndexValue(BzrError):
  414.  
  415.     _fmt = "The value '%(value)s' is not a valid value."
  416.  
  417.     def __init__(self, value):
  418.         BzrError.__init__(self)
  419.         self.value = value
  420.  
  421.  
  422. class BadOptionValue(BzrError):
  423.  
  424.     _fmt = """Bad value "%(value)s" for option "%(name)s"."""
  425.  
  426.     def __init__(self, name, value):
  427.         BzrError.__init__(self, name=name, value=value)
  428.  
  429.  
  430. class StrictCommitFailed(BzrError):
  431.  
  432.     _fmt = "Commit refused because there are unknown files in the tree"
  433.  
  434.  
  435. # XXX: Should be unified with TransportError; they seem to represent the
  436. # same thing
  437. # RBC 20060929: I think that unifiying with TransportError would be a mistake
  438. # - this is finer than a TransportError - and more useful as such. It
  439. # differentiates between 'transport has failed' and 'operation on a transport
  440. # has failed.'
  441. class PathError(BzrError):
  442.  
  443.     _fmt = "Generic path error: %(path)r%(extra)s)"
  444.  
  445.     def __init__(self, path, extra=None):
  446.         BzrError.__init__(self)
  447.         self.path = path
  448.         if extra:
  449.             self.extra = ': ' + str(extra)
  450.         else:
  451.             self.extra = ''
  452.  
  453.  
  454. class NoSuchFile(PathError):
  455.  
  456.     _fmt = "No such file: %(path)r%(extra)s"
  457.  
  458.  
  459. class FileExists(PathError):
  460.  
  461.     _fmt = "File exists: %(path)r%(extra)s"
  462.  
  463.  
  464. class RenameFailedFilesExist(BzrError):
  465.     """Used when renaming and both source and dest exist."""
  466.  
  467.     _fmt = ("Could not rename %(source)s => %(dest)s because both files exist."
  468.             " (Use --after to tell bzr about a rename that has already"
  469.             " happened)%(extra)s")
  470.  
  471.     def __init__(self, source, dest, extra=None):
  472.         BzrError.__init__(self)
  473.         self.source = str(source)
  474.         self.dest = str(dest)
  475.         if extra:
  476.             self.extra = ' ' + str(extra)
  477.         else:
  478.             self.extra = ''
  479.  
  480.  
  481. class NotADirectory(PathError):
  482.  
  483.     _fmt = '"%(path)s" is not a directory %(extra)s'
  484.  
  485.  
  486. class NotInWorkingDirectory(PathError):
  487.  
  488.     _fmt = '"%(path)s" is not in the working directory %(extra)s'
  489.  
  490.  
  491. class DirectoryNotEmpty(PathError):
  492.  
  493.     _fmt = 'Directory not empty: "%(path)s"%(extra)s'
  494.  
  495.  
  496. class HardLinkNotSupported(PathError):
  497.  
  498.     _fmt = 'Hard-linking "%(path)s" is not supported'
  499.  
  500.  
  501. class ReadingCompleted(InternalBzrError):
  502.  
  503.     _fmt = ("The MediumRequest '%(request)s' has already had finish_reading "
  504.             "called upon it - the request has been completed and no more "
  505.             "data may be read.")
  506.  
  507.     def __init__(self, request):
  508.         self.request = request
  509.  
  510.  
  511. class ResourceBusy(PathError):
  512.  
  513.     _fmt = 'Device or resource busy: "%(path)s"%(extra)s'
  514.  
  515.  
  516. class PermissionDenied(PathError):
  517.  
  518.     _fmt = 'Permission denied: "%(path)s"%(extra)s'
  519.  
  520.  
  521. class InvalidURL(PathError):
  522.  
  523.     _fmt = 'Invalid url supplied to transport: "%(path)s"%(extra)s'
  524.  
  525.  
  526. class InvalidURLJoin(PathError):
  527.  
  528.     _fmt = "Invalid URL join request: %(reason)s: %(base)r + %(join_args)r"
  529.  
  530.     def __init__(self, reason, base, join_args):
  531.         self.reason = reason
  532.         self.base = base
  533.         self.join_args = join_args
  534.         PathError.__init__(self, base, reason)
  535.  
  536.  
  537. class InvalidRebaseURLs(PathError):
  538.  
  539.     _fmt = "URLs differ by more than path: %(from_)r and %(to)r"
  540.  
  541.     def __init__(self, from_, to):
  542.         self.from_ = from_
  543.         self.to = to
  544.         PathError.__init__(self, from_, 'URLs differ by more than path.')
  545.  
  546.  
  547. class UnavailableRepresentation(InternalBzrError):
  548.  
  549.     _fmt = ("The encoding '%(wanted)s' is not available for key %(key)s which "
  550.         "is encoded as '%(native)s'.")
  551.  
  552.     def __init__(self, key, wanted, native):
  553.         InternalBzrError.__init__(self)
  554.         self.wanted = wanted
  555.         self.native = native
  556.         self.key = key
  557.  
  558.  
  559. class UnknownHook(BzrError):
  560.  
  561.     _fmt = "The %(type)s hook '%(hook)s' is unknown in this version of bzrlib."
  562.  
  563.     def __init__(self, hook_type, hook_name):
  564.         BzrError.__init__(self)
  565.         self.type = hook_type
  566.         self.hook = hook_name
  567.  
  568.  
  569. class UnsupportedProtocol(PathError):
  570.  
  571.     _fmt = 'Unsupported protocol for url "%(path)s"%(extra)s'
  572.  
  573.     def __init__(self, url, extra=""):
  574.         PathError.__init__(self, url, extra=extra)
  575.  
  576.  
  577. class UnstackableBranchFormat(BzrError):
  578.  
  579.     _fmt = ("The branch '%(url)s'(%(format)s) is not a stackable format. "
  580.         "You will need to upgrade the branch to permit branch stacking.")
  581.  
  582.     def __init__(self, format, url):
  583.         BzrError.__init__(self)
  584.         self.format = format
  585.         self.url = url
  586.  
  587.  
  588. class UnstackableLocationError(BzrError):
  589.  
  590.     _fmt = "The branch '%(branch_url)s' cannot be stacked on '%(target_url)s'."
  591.  
  592.     def __init__(self, branch_url, target_url):
  593.         BzrError.__init__(self)
  594.         self.branch_url = branch_url
  595.         self.target_url = target_url
  596.  
  597.  
  598. class UnstackableRepositoryFormat(BzrError):
  599.  
  600.     _fmt = ("The repository '%(url)s'(%(format)s) is not a stackable format. "
  601.         "You will need to upgrade the repository to permit branch stacking.")
  602.  
  603.     def __init__(self, format, url):
  604.         BzrError.__init__(self)
  605.         self.format = format
  606.         self.url = url
  607.  
  608.  
  609. class ReadError(PathError):
  610.  
  611.     _fmt = """Error reading from %(path)r."""
  612.  
  613.  
  614. class ShortReadvError(PathError):
  615.  
  616.     _fmt = ('readv() read %(actual)s bytes rather than %(length)s bytes'
  617.             ' at %(offset)s for "%(path)s"%(extra)s')
  618.  
  619.     internal_error = True
  620.  
  621.     def __init__(self, path, offset, length, actual, extra=None):
  622.         PathError.__init__(self, path, extra=extra)
  623.         self.offset = offset
  624.         self.length = length
  625.         self.actual = actual
  626.  
  627.  
  628. class PathNotChild(PathError):
  629.  
  630.     _fmt = 'Path "%(path)s" is not a child of path "%(base)s"%(extra)s'
  631.  
  632.     internal_error = False
  633.  
  634.     def __init__(self, path, base, extra=None):
  635.         BzrError.__init__(self)
  636.         self.path = path
  637.         self.base = base
  638.         if extra:
  639.             self.extra = ': ' + str(extra)
  640.         else:
  641.             self.extra = ''
  642.  
  643.  
  644. class InvalidNormalization(PathError):
  645.  
  646.     _fmt = 'Path "%(path)s" is not unicode normalized'
  647.  
  648.  
  649. # TODO: This is given a URL; we try to unescape it but doing that from inside
  650. # the exception object is a bit undesirable.
  651. # TODO: Probably this behavior of should be a common superclass
  652. class NotBranchError(PathError):
  653.  
  654.     _fmt = 'Not a branch: "%(path)s"%(detail)s.'
  655.  
  656.     def __init__(self, path, detail=None, bzrdir=None):
  657.        import bzrlib.urlutils as urlutils
  658.        path = urlutils.unescape_for_display(path, 'ascii')
  659.        if detail is not None:
  660.            detail = ': ' + detail
  661.        self.detail = detail
  662.        self.bzrdir = bzrdir
  663.        PathError.__init__(self, path=path)
  664.  
  665.     def __repr__(self):
  666.         return '<%s %r>' % (self.__class__.__name__, self.__dict__)
  667.  
  668.     def _format(self):
  669.         # XXX: Ideally self.detail would be a property, but Exceptions in
  670.         # Python 2.4 have to be old-style classes so properties don't work.
  671.         # Instead we override _format.
  672.         if self.detail is None:
  673.             if self.bzrdir is not None:
  674.                 try:
  675.                     self.bzrdir.open_repository()
  676.                 except NoRepositoryPresent:
  677.                     self.detail = ''
  678.                 except Exception:
  679.                     # Just ignore unexpected errors.  Raising arbitrary errors
  680.                     # during str(err) can provoke strange bugs.  Concretely
  681.                     # Launchpad's codehosting managed to raise NotBranchError
  682.                     # here, and then get stuck in an infinite loop/recursion
  683.                     # trying to str() that error.  All this error really cares
  684.                     # about that there's no working repository there, and if
  685.                     # open_repository() fails, there probably isn't.
  686.                     self.detail = ''
  687.                 else:
  688.                     self.detail = ': location is a repository'
  689.             else:
  690.                 self.detail = ''
  691.         return PathError._format(self)
  692.  
  693.  
  694. class NoSubmitBranch(PathError):
  695.  
  696.     _fmt = 'No submit branch available for branch "%(path)s"'
  697.  
  698.     def __init__(self, branch):
  699.        import bzrlib.urlutils as urlutils
  700.        self.path = urlutils.unescape_for_display(branch.base, 'ascii')
  701.  
  702.  
  703. class AlreadyControlDirError(PathError):
  704.  
  705.     _fmt = 'A control directory already exists: "%(path)s".'
  706.  
  707.  
  708. class AlreadyBranchError(PathError):
  709.  
  710.     _fmt = 'Already a branch: "%(path)s".'
  711.  
  712.  
  713. class InvalidBranchName(PathError):
  714.  
  715.     _fmt = "Invalid branch name: %(name)s"
  716.  
  717.     def __init__(self, name):
  718.         BzrError.__init__(self)
  719.         self.name = name
  720.  
  721.  
  722. class ParentBranchExists(AlreadyBranchError):
  723.  
  724.     _fmt = 'Parent branch already exists: "%(path)s".'
  725.  
  726.  
  727. class BranchExistsWithoutWorkingTree(PathError):
  728.  
  729.     _fmt = 'Directory contains a branch, but no working tree \
  730. (use bzr checkout if you wish to build a working tree): "%(path)s"'
  731.  
  732.  
  733. class AtomicFileAlreadyClosed(PathError):
  734.  
  735.     _fmt = ('"%(function)s" called on an AtomicFile after it was closed:'
  736.             ' "%(path)s"')
  737.  
  738.     def __init__(self, path, function):
  739.         PathError.__init__(self, path=path, extra=None)
  740.         self.function = function
  741.  
  742.  
  743. class InaccessibleParent(PathError):
  744.  
  745.     _fmt = ('Parent not accessible given base "%(base)s" and'
  746.             ' relative path "%(path)s"')
  747.  
  748.     def __init__(self, path, base):
  749.         PathError.__init__(self, path)
  750.         self.base = base
  751.  
  752.  
  753. class NoRepositoryPresent(BzrError):
  754.  
  755.     _fmt = 'No repository present: "%(path)s"'
  756.     def __init__(self, bzrdir):
  757.         BzrError.__init__(self)
  758.         self.path = bzrdir.transport.clone('..').base
  759.  
  760.  
  761. class UnsupportedFormatError(BzrError):
  762.  
  763.     _fmt = "Unsupported branch format: %(format)s\nPlease run 'bzr upgrade'"
  764.  
  765.  
  766. class UnknownFormatError(BzrError):
  767.  
  768.     _fmt = "Unknown %(kind)s format: %(format)r"
  769.  
  770.     def __init__(self, format, kind='branch'):
  771.         self.kind = kind
  772.         self.format = format
  773.  
  774.  
  775. class IncompatibleFormat(BzrError):
  776.  
  777.     _fmt = "Format %(format)s is not compatible with .bzr version %(bzrdir)s."
  778.  
  779.     def __init__(self, format, bzrdir_format):
  780.         BzrError.__init__(self)
  781.         self.format = format
  782.         self.bzrdir = bzrdir_format
  783.  
  784.  
  785. class ParseFormatError(BzrError):
  786.  
  787.     _fmt = "Parse error on line %(lineno)d of %(format)s format: %(line)s"
  788.  
  789.     def __init__(self, format, lineno, line, text):
  790.         BzrError.__init__(self)
  791.         self.format = format
  792.         self.lineno = lineno
  793.         self.line = line
  794.         self.text = text
  795.  
  796.  
  797. class IncompatibleRepositories(BzrError):
  798.     """Report an error that two repositories are not compatible.
  799.  
  800.    Note that the source and target repositories are permitted to be strings:
  801.    this exception is thrown from the smart server and may refer to a
  802.    repository the client hasn't opened.
  803.    """
  804.  
  805.     _fmt = "%(target)s\n" \
  806.             "is not compatible with\n" \
  807.             "%(source)s\n" \
  808.             "%(details)s"
  809.  
  810.     def __init__(self, source, target, details=None):
  811.         if details is None:
  812.             details = "(no details)"
  813.         BzrError.__init__(self, target=target, source=source, details=details)
  814.  
  815.  
  816. class IncompatibleRevision(BzrError):
  817.  
  818.     _fmt = "Revision is not compatible with %(repo_format)s"
  819.  
  820.     def __init__(self, repo_format):
  821.         BzrError.__init__(self)
  822.         self.repo_format = repo_format
  823.  
  824.  
  825. class AlreadyVersionedError(BzrError):
  826.     """Used when a path is expected not to be versioned, but it is."""
  827.  
  828.     _fmt = "%(context_info)s%(path)s is already versioned."
  829.  
  830.     def __init__(self, path, context_info=None):
  831.         """Construct a new AlreadyVersionedError.
  832.  
  833.        :param path: This is the path which is versioned,
  834.            which should be in a user friendly form.
  835.        :param context_info: If given, this is information about the context,
  836.            which could explain why this is expected to not be versioned.
  837.        """
  838.         BzrError.__init__(self)
  839.         self.path = path
  840.         if context_info is None:
  841.             self.context_info = ''
  842.         else:
  843.             self.context_info = context_info + ". "
  844.  
  845.  
  846. class NotVersionedError(BzrError):
  847.     """Used when a path is expected to be versioned, but it is not."""
  848.  
  849.     _fmt = "%(context_info)s%(path)s is not versioned."
  850.  
  851.     def __init__(self, path, context_info=None):
  852.         """Construct a new NotVersionedError.
  853.  
  854.        :param path: This is the path which is not versioned,
  855.            which should be in a user friendly form.
  856.        :param context_info: If given, this is information about the context,
  857.            which could explain why this is expected to be versioned.
  858.        """
  859.         BzrError.__init__(self)
  860.         self.path = path
  861.         if context_info is None:
  862.             self.context_info = ''
  863.         else:
  864.             self.context_info = context_info + ". "
  865.  
  866.  
  867. class PathsNotVersionedError(BzrError):
  868.     """Used when reporting several paths which are not versioned"""
  869.  
  870.     _fmt = "Path(s) are not versioned: %(paths_as_string)s"
  871.  
  872.     def __init__(self, paths):
  873.         from bzrlib.osutils import quotefn
  874.         BzrError.__init__(self)
  875.         self.paths = paths
  876.         self.paths_as_string = ' '.join([quotefn(p) for p in paths])
  877.  
  878.  
  879. class PathsDoNotExist(BzrError):
  880.  
  881.     _fmt = "Path(s) do not exist: %(paths_as_string)s%(extra)s"
  882.  
  883.     # used when reporting that paths are neither versioned nor in the working
  884.     # tree
  885.  
  886.     def __init__(self, paths, extra=None):
  887.         # circular import
  888.         from bzrlib.osutils import quotefn
  889.         BzrError.__init__(self)
  890.         self.paths = paths
  891.         self.paths_as_string = ' '.join([quotefn(p) for p in paths])
  892.         if extra:
  893.             self.extra = ': ' + str(extra)
  894.         else:
  895.             self.extra = ''
  896.  
  897.  
  898. class BadFileKindError(BzrError):
  899.  
  900.     _fmt = 'Cannot operate on "%(filename)s" of unsupported kind "%(kind)s"'
  901.  
  902.     def __init__(self, filename, kind):
  903.         BzrError.__init__(self, filename=filename, kind=kind)
  904.  
  905.  
  906. class BadFilenameEncoding(BzrError):
  907.  
  908.     _fmt = ('Filename %(filename)r is not valid in your current filesystem'
  909.             ' encoding %(fs_encoding)s')
  910.  
  911.     def __init__(self, filename, fs_encoding):
  912.         BzrError.__init__(self)
  913.         self.filename = filename
  914.         self.fs_encoding = fs_encoding
  915.  
  916.  
  917. class ForbiddenControlFileError(BzrError):
  918.  
  919.     _fmt = 'Cannot operate on "%(filename)s" because it is a control file'
  920.  
  921.  
  922. class LockError(InternalBzrError):
  923.  
  924.     _fmt = "Lock error: %(msg)s"
  925.  
  926.     # All exceptions from the lock/unlock functions should be from
  927.     # this exception class.  They will be translated as necessary. The
  928.     # original exception is available as e.original_error
  929.     #
  930.     # New code should prefer to raise specific subclasses
  931.     def __init__(self, msg):
  932.         self.msg = msg
  933.  
  934.  
  935. class LockActive(LockError):
  936.  
  937.     _fmt = "The lock for '%(lock_description)s' is in use and cannot be broken."
  938.  
  939.     internal_error = False
  940.  
  941.     def __init__(self, lock_description):
  942.         self.lock_description = lock_description
  943.  
  944.  
  945. class CommitNotPossible(LockError):
  946.  
  947.     _fmt = "A commit was attempted but we do not have a write lock open."
  948.  
  949.     def __init__(self):
  950.         pass
  951.  
  952.  
  953. class AlreadyCommitted(LockError):
  954.  
  955.     _fmt = "A rollback was requested, but is not able to be accomplished."
  956.  
  957.     def __init__(self):
  958.         pass
  959.  
  960.  
  961. class ReadOnlyError(LockError):
  962.  
  963.     _fmt = "A write attempt was made in a read only transaction on %(obj)s"
  964.  
  965.     # TODO: There should also be an error indicating that you need a write
  966.     # lock and don't have any lock at all... mbp 20070226
  967.  
  968.     def __init__(self, obj):
  969.         self.obj = obj
  970.  
  971.  
  972. class LockFailed(LockError):
  973.  
  974.     internal_error = False
  975.  
  976.     _fmt = "Cannot lock %(lock)s: %(why)s"
  977.  
  978.     def __init__(self, lock, why):
  979.         LockError.__init__(self, '')
  980.         self.lock = lock
  981.         self.why = why
  982.  
  983.  
  984. class OutSideTransaction(BzrError):
  985.  
  986.     _fmt = ("A transaction related operation was attempted after"
  987.             " the transaction finished.")
  988.  
  989.  
  990. class ObjectNotLocked(LockError):
  991.  
  992.     _fmt = "%(obj)r is not locked"
  993.  
  994.     # this can indicate that any particular object is not locked; see also
  995.     # LockNotHeld which means that a particular *lock* object is not held by
  996.     # the caller -- perhaps they should be unified.
  997.     def __init__(self, obj):
  998.         self.obj = obj
  999.  
  1000.  
  1001. class ReadOnlyObjectDirtiedError(ReadOnlyError):
  1002.  
  1003.     _fmt = "Cannot change object %(obj)r in read only transaction"
  1004.  
  1005.     def __init__(self, obj):
  1006.         self.obj = obj
  1007.  
  1008.  
  1009. class UnlockableTransport(LockError):
  1010.  
  1011.     internal_error = False
  1012.  
  1013.     _fmt = "Cannot lock: transport is read only: %(transport)s"
  1014.  
  1015.     def __init__(self, transport):
  1016.         self.transport = transport
  1017.  
  1018.  
  1019. class LockContention(LockError):
  1020.  
  1021.     _fmt = 'Could not acquire lock "%(lock)s": %(msg)s'
  1022.  
  1023.     internal_error = False
  1024.  
  1025.     def __init__(self, lock, msg=''):
  1026.         self.lock = lock
  1027.         self.msg = msg
  1028.  
  1029.  
  1030. class LockBroken(LockError):
  1031.  
  1032.     _fmt = ("Lock was broken while still open: %(lock)s"
  1033.             " - check storage consistency!")
  1034.  
  1035.     internal_error = False
  1036.  
  1037.     def __init__(self, lock):
  1038.         self.lock = lock
  1039.  
  1040.  
  1041. class LockBreakMismatch(LockError):
  1042.  
  1043.     _fmt = ("Lock was released and re-acquired before being broken:"
  1044.             " %(lock)s: held by %(holder)r, wanted to break %(target)r")
  1045.  
  1046.     internal_error = False
  1047.  
  1048.     def __init__(self, lock, holder, target):
  1049.         self.lock = lock
  1050.         self.holder = holder
  1051.         self.target = target
  1052.  
  1053.  
  1054. class LockCorrupt(LockError):
  1055.  
  1056.     _fmt = ("Lock is apparently held, but corrupted: %(corruption_info)s\n"
  1057.             "Use 'bzr break-lock' to clear it")
  1058.  
  1059.     internal_error = False
  1060.  
  1061.     def __init__(self, corruption_info, file_data=None):
  1062.         self.corruption_info = corruption_info
  1063.         self.file_data = file_data
  1064.  
  1065.  
  1066. class LockNotHeld(LockError):
  1067.  
  1068.     _fmt = "Lock not held: %(lock)s"
  1069.  
  1070.     internal_error = False
  1071.  
  1072.     def __init__(self, lock):
  1073.         self.lock = lock
  1074.  
  1075.  
  1076. class TokenLockingNotSupported(LockError):
  1077.  
  1078.     _fmt = "The object %(obj)s does not support token specifying a token when locking."
  1079.  
  1080.     def __init__(self, obj):
  1081.         self.obj = obj
  1082.  
  1083.  
  1084. class TokenMismatch(LockBroken):
  1085.  
  1086.     _fmt = "The lock token %(given_token)r does not match lock token %(lock_token)r."
  1087.  
  1088.     internal_error = True
  1089.  
  1090.     def __init__(self, given_token, lock_token):
  1091.         self.given_token = given_token
  1092.         self.lock_token = lock_token
  1093.  
  1094.  
  1095. class PointlessCommit(BzrError):
  1096.  
  1097.     _fmt = "No changes to commit"
  1098.  
  1099.  
  1100. class CannotCommitSelectedFileMerge(BzrError):
  1101.  
  1102.     _fmt = 'Selected-file commit of merges is not supported yet:'\
  1103.         ' files %(files_str)s'
  1104.  
  1105.     def __init__(self, files):
  1106.         files_str = ', '.join(files)
  1107.         BzrError.__init__(self, files=files, files_str=files_str)
  1108.  
  1109.  
  1110. class ExcludesUnsupported(BzrError):
  1111.  
  1112.     _fmt = ('Excluding paths during commit is not supported by '
  1113.             'repository at %(repository)r.')
  1114.  
  1115.     def __init__(self, repository):
  1116.         BzrError.__init__(self, repository=repository)
  1117.  
  1118.  
  1119. class BadCommitMessageEncoding(BzrError):
  1120.  
  1121.     _fmt = 'The specified commit message contains characters unsupported by '\
  1122.         'the current encoding.'
  1123.  
  1124.  
  1125. class UpgradeReadonly(BzrError):
  1126.  
  1127.     _fmt = "Upgrade URL cannot work with readonly URLs."
  1128.  
  1129.  
  1130. class UpToDateFormat(BzrError):
  1131.  
  1132.     _fmt = "The branch format %(format)s is already at the most recent format."
  1133.  
  1134.     def __init__(self, format):
  1135.         BzrError.__init__(self)
  1136.         self.format = format
  1137.  
  1138.  
  1139. class StrictCommitFailed(Exception):
  1140.  
  1141.     _fmt = "Commit refused because there are unknowns in the tree."
  1142.  
  1143.  
  1144. class NoSuchRevision(InternalBzrError):
  1145.  
  1146.     _fmt = "%(branch)s has no revision %(revision)s"
  1147.  
  1148.     def __init__(self, branch, revision):
  1149.         # 'branch' may sometimes be an internal object like a KnitRevisionStore
  1150.         BzrError.__init__(self, branch=branch, revision=revision)
  1151.  
  1152.  
  1153. class RangeInChangeOption(BzrError):
  1154.  
  1155.     _fmt = "Option --change does not accept revision ranges"
  1156.  
  1157.  
  1158. class NoSuchRevisionSpec(BzrError):
  1159.  
  1160.     _fmt = "No namespace registered for string: %(spec)r"
  1161.  
  1162.     def __init__(self, spec):
  1163.         BzrError.__init__(self, spec=spec)
  1164.  
  1165.  
  1166. class NoSuchRevisionInTree(NoSuchRevision):
  1167.     """When using Tree.revision_tree, and the revision is not accessible."""
  1168.  
  1169.     _fmt = "The revision id {%(revision_id)s} is not present in the tree %(tree)s."
  1170.  
  1171.     def __init__(self, tree, revision_id):
  1172.         BzrError.__init__(self)
  1173.         self.tree = tree
  1174.         self.revision_id = revision_id
  1175.  
  1176.  
  1177. class InvalidRevisionSpec(BzrError):
  1178.  
  1179.     _fmt = ("Requested revision: '%(spec)s' does not exist in branch:"
  1180.             " %(branch_url)s%(extra)s")
  1181.  
  1182.     def __init__(self, spec, branch, extra=None):
  1183.         BzrError.__init__(self, branch=branch, spec=spec)
  1184.         self.branch_url = getattr(branch, 'user_url', str(branch))
  1185.         if extra:
  1186.             self.extra = '\n' + str(extra)
  1187.         else:
  1188.             self.extra = ''
  1189.  
  1190.  
  1191. class AppendRevisionsOnlyViolation(BzrError):
  1192.  
  1193.     _fmt = ('Operation denied because it would change the main history,'
  1194.            ' which is not permitted by the append_revisions_only setting on'
  1195.            ' branch "%(location)s".')
  1196.  
  1197.     def __init__(self, location):
  1198.        import bzrlib.urlutils as urlutils
  1199.        location = urlutils.unescape_for_display(location, 'ascii')
  1200.        BzrError.__init__(self, location=location)
  1201.  
  1202.  
  1203. class DivergedBranches(BzrError):
  1204.  
  1205.     _fmt = ("These branches have diverged."
  1206.             " Use the missing command to see how.\n"
  1207.             "Use the merge command to reconcile them.")
  1208.  
  1209.     def __init__(self, branch1, branch2):
  1210.         self.branch1 = branch1
  1211.         self.branch2 = branch2
  1212.  
  1213.  
  1214. class NotLefthandHistory(InternalBzrError):
  1215.  
  1216.     _fmt = "Supplied history does not follow left-hand parents"
  1217.  
  1218.     def __init__(self, history):
  1219.         BzrError.__init__(self, history=history)
  1220.  
  1221.  
  1222. class UnrelatedBranches(BzrError):
  1223.  
  1224.     _fmt = ("Branches have no common ancestor, and"
  1225.             " no merge base revision was specified.")
  1226.  
  1227.  
  1228. class CannotReverseCherrypick(BzrError):
  1229.  
  1230.     _fmt = ('Selected merge cannot perform reverse cherrypicks.  Try merge3'
  1231.             ' or diff3.')
  1232.  
  1233.  
  1234. class NoCommonAncestor(BzrError):
  1235.  
  1236.     _fmt = "Revisions have no common ancestor: %(revision_a)s %(revision_b)s"
  1237.  
  1238.     def __init__(self, revision_a, revision_b):
  1239.         self.revision_a = revision_a
  1240.         self.revision_b = revision_b
  1241.  
  1242.  
  1243. class NoCommonRoot(BzrError):
  1244.  
  1245.     _fmt = ("Revisions are not derived from the same root: "
  1246.            "%(revision_a)s %(revision_b)s.")
  1247.  
  1248.     def __init__(self, revision_a, revision_b):
  1249.         BzrError.__init__(self, revision_a=revision_a, revision_b=revision_b)
  1250.  
  1251.  
  1252. class NotAncestor(BzrError):
  1253.  
  1254.     _fmt = "Revision %(rev_id)s is not an ancestor of %(not_ancestor_id)s"
  1255.  
  1256.     def __init__(self, rev_id, not_ancestor_id):
  1257.         BzrError.__init__(self, rev_id=rev_id,
  1258.             not_ancestor_id=not_ancestor_id)
  1259.  
  1260.  
  1261. class NoCommits(BranchError):
  1262.  
  1263.     _fmt = "Branch %(branch)s has no commits."
  1264.  
  1265.  
  1266. class UnlistableStore(BzrError):
  1267.  
  1268.     def __init__(self, store):
  1269.         BzrError.__init__(self, "Store %s is not listable" % store)
  1270.  
  1271.  
  1272.  
  1273. class UnlistableBranch(BzrError):
  1274.  
  1275.     def __init__(self, br):
  1276.         BzrError.__init__(self, "Stores for branch %s are not listable" % br)
  1277.  
  1278.  
  1279. class BoundBranchOutOfDate(BzrError):
  1280.  
  1281.     _fmt = ("Bound branch %(branch)s is out of date with master branch"
  1282.             " %(master)s.%(extra_help)s")
  1283.  
  1284.     def __init__(self, branch, master):
  1285.         BzrError.__init__(self)
  1286.         self.branch = branch
  1287.         self.master = master
  1288.         self.extra_help = ''
  1289.  
  1290.  
  1291. class CommitToDoubleBoundBranch(BzrError):
  1292.  
  1293.     _fmt = ("Cannot commit to branch %(branch)s."
  1294.             " It is bound to %(master)s, which is bound to %(remote)s.")
  1295.  
  1296.     def __init__(self, branch, master, remote):
  1297.         BzrError.__init__(self)
  1298.         self.branch = branch
  1299.         self.master = master
  1300.         self.remote = remote
  1301.  
  1302.  
  1303. class OverwriteBoundBranch(BzrError):
  1304.  
  1305.     _fmt = "Cannot pull --overwrite to a branch which is bound %(branch)s"
  1306.  
  1307.     def __init__(self, branch):
  1308.         BzrError.__init__(self)
  1309.         self.branch = branch
  1310.  
  1311.  
  1312. class BoundBranchConnectionFailure(BzrError):
  1313.  
  1314.     _fmt = ("Unable to connect to target of bound branch %(branch)s"
  1315.             " => %(target)s: %(error)s")
  1316.  
  1317.     def __init__(self, branch, target, error):
  1318.         BzrError.__init__(self)
  1319.         self.branch = branch
  1320.         self.target = target
  1321.         self.error = error
  1322.  
  1323.  
  1324. class WeaveError(BzrError):
  1325.  
  1326.     _fmt = "Error in processing weave: %(msg)s"
  1327.  
  1328.     def __init__(self, msg=None):
  1329.         BzrError.__init__(self)
  1330.         self.msg = msg
  1331.  
  1332.  
  1333. class WeaveRevisionAlreadyPresent(WeaveError):
  1334.  
  1335.     _fmt = "Revision {%(revision_id)s} already present in %(weave)s"
  1336.  
  1337.     def __init__(self, revision_id, weave):
  1338.  
  1339.         WeaveError.__init__(self)
  1340.         self.revision_id = revision_id
  1341.         self.weave = weave
  1342.  
  1343.  
  1344. class WeaveRevisionNotPresent(WeaveError):
  1345.  
  1346.     _fmt = "Revision {%(revision_id)s} not present in %(weave)s"
  1347.  
  1348.     def __init__(self, revision_id, weave):
  1349.         WeaveError.__init__(self)
  1350.         self.revision_id = revision_id
  1351.         self.weave = weave
  1352.  
  1353.  
  1354. class WeaveFormatError(WeaveError):
  1355.  
  1356.     _fmt = "Weave invariant violated: %(what)s"
  1357.  
  1358.     def __init__(self, what):
  1359.         WeaveError.__init__(self)
  1360.         self.what = what
  1361.  
  1362.  
  1363. class WeaveParentMismatch(WeaveError):
  1364.  
  1365.     _fmt = "Parents are mismatched between two revisions. %(msg)s"
  1366.  
  1367.  
  1368. class WeaveInvalidChecksum(WeaveError):
  1369.  
  1370.     _fmt = "Text did not match its checksum: %(msg)s"
  1371.  
  1372.  
  1373. class WeaveTextDiffers(WeaveError):
  1374.  
  1375.     _fmt = ("Weaves differ on text content. Revision:"
  1376.             " {%(revision_id)s}, %(weave_a)s, %(weave_b)s")
  1377.  
  1378.     def __init__(self, revision_id, weave_a, weave_b):
  1379.         WeaveError.__init__(self)
  1380.         self.revision_id = revision_id
  1381.         self.weave_a = weave_a
  1382.         self.weave_b = weave_b
  1383.  
  1384.  
  1385. class WeaveTextDiffers(WeaveError):
  1386.  
  1387.     _fmt = ("Weaves differ on text content. Revision:"
  1388.             " {%(revision_id)s}, %(weave_a)s, %(weave_b)s")
  1389.  
  1390.     def __init__(self, revision_id, weave_a, weave_b):
  1391.         WeaveError.__init__(self)
  1392.         self.revision_id = revision_id
  1393.         self.weave_a = weave_a
  1394.         self.weave_b = weave_b
  1395.  
  1396.  
  1397. class VersionedFileError(BzrError):
  1398.  
  1399.     _fmt = "Versioned file error"
  1400.  
  1401.  
  1402. class RevisionNotPresent(VersionedFileError):
  1403.  
  1404.     _fmt = 'Revision {%(revision_id)s} not present in "%(file_id)s".'
  1405.  
  1406.     def __init__(self, revision_id, file_id):
  1407.         VersionedFileError.__init__(self)
  1408.         self.revision_id = revision_id
  1409.         self.file_id = file_id
  1410.  
  1411.  
  1412. class RevisionAlreadyPresent(VersionedFileError):
  1413.  
  1414.     _fmt = 'Revision {%(revision_id)s} already present in "%(file_id)s".'
  1415.  
  1416.     def __init__(self, revision_id, file_id):
  1417.         VersionedFileError.__init__(self)
  1418.         self.revision_id = revision_id
  1419.         self.file_id = file_id
  1420.  
  1421.  
  1422. class VersionedFileInvalidChecksum(VersionedFileError):
  1423.  
  1424.     _fmt = "Text did not match its checksum: %(msg)s"
  1425.  
  1426.  
  1427. class KnitError(InternalBzrError):
  1428.  
  1429.     _fmt = "Knit error"
  1430.  
  1431.  
  1432. class KnitCorrupt(KnitError):
  1433.  
  1434.     _fmt = "Knit %(filename)s corrupt: %(how)s"
  1435.  
  1436.     def __init__(self, filename, how):
  1437.         KnitError.__init__(self)
  1438.         self.filename = filename
  1439.         self.how = how
  1440.  
  1441.  
  1442. class SHA1KnitCorrupt(KnitCorrupt):
  1443.  
  1444.     _fmt = ("Knit %(filename)s corrupt: sha-1 of reconstructed text does not "
  1445.         "match expected sha-1. key %(key)s expected sha %(expected)s actual "
  1446.         "sha %(actual)s")
  1447.  
  1448.     def __init__(self, filename, actual, expected, key, content):
  1449.         KnitError.__init__(self)
  1450.         self.filename = filename
  1451.         self.actual = actual
  1452.         self.expected = expected
  1453.         self.key = key
  1454.         self.content = content
  1455.  
  1456.  
  1457. class KnitDataStreamIncompatible(KnitError):
  1458.     # Not raised anymore, as we can convert data streams.  In future we may
  1459.     # need it again for more exotic cases, so we're keeping it around for now.
  1460.  
  1461.     _fmt = "Cannot insert knit data stream of format \"%(stream_format)s\" into knit of format \"%(target_format)s\"."
  1462.  
  1463.     def __init__(self, stream_format, target_format):
  1464.         self.stream_format = stream_format
  1465.         self.target_format = target_format
  1466.  
  1467.  
  1468. class KnitDataStreamUnknown(KnitError):
  1469.     # Indicates a data stream we don't know how to handle.
  1470.  
  1471.     _fmt = "Cannot parse knit data stream of format \"%(stream_format)s\"."
  1472.  
  1473.     def __init__(self, stream_format):
  1474.         self.stream_format = stream_format
  1475.  
  1476.  
  1477. class KnitHeaderError(KnitError):
  1478.  
  1479.     _fmt = 'Knit header error: %(badline)r unexpected for file "%(filename)s".'
  1480.  
  1481.     def __init__(self, badline, filename):
  1482.         KnitError.__init__(self)
  1483.         self.badline = badline
  1484.         self.filename = filename
  1485.  
  1486. class KnitIndexUnknownMethod(KnitError):
  1487.     """Raised when we don't understand the storage method.
  1488.  
  1489.    Currently only 'fulltext' and 'line-delta' are supported.
  1490.    """
  1491.  
  1492.     _fmt = ("Knit index %(filename)s does not have a known method"
  1493.             " in options: %(options)r")
  1494.  
  1495.     def __init__(self, filename, options):
  1496.         KnitError.__init__(self)
  1497.         self.filename = filename
  1498.         self.options = options
  1499.  
  1500.  
  1501. class RetryWithNewPacks(BzrError):
  1502.     """Raised when we realize that the packs on disk have changed.
  1503.  
  1504.    This is meant as more of a signaling exception, to trap between where a
  1505.    local error occurred and the code that can actually handle the error and
  1506.    code that can retry appropriately.
  1507.    """
  1508.  
  1509.     internal_error = True
  1510.  
  1511.     _fmt = ("Pack files have changed, reload and retry. context: %(context)s"
  1512.             " %(orig_error)s")
  1513.  
  1514.     def __init__(self, context, reload_occurred, exc_info):
  1515.         """create a new RetryWithNewPacks error.
  1516.  
  1517.        :param reload_occurred: Set to True if we know that the packs have
  1518.            already been reloaded, and we are failing because of an in-memory
  1519.            cache miss. If set to True then we will ignore if a reload says
  1520.            nothing has changed, because we assume it has already reloaded. If
  1521.            False, then a reload with nothing changed will force an error.
  1522.        :param exc_info: The original exception traceback, so if there is a
  1523.            problem we can raise the original error (value from sys.exc_info())
  1524.        """
  1525.         BzrError.__init__(self)
  1526.         self.context = context
  1527.         self.reload_occurred = reload_occurred
  1528.         self.exc_info = exc_info
  1529.         self.orig_error = exc_info[1]
  1530.         # TODO: The global error handler should probably treat this by
  1531.         #       raising/printing the original exception with a bit about
  1532.         #       RetryWithNewPacks also not being caught
  1533.  
  1534.  
  1535. class RetryAutopack(RetryWithNewPacks):
  1536.     """Raised when we are autopacking and we find a missing file.
  1537.  
  1538.    Meant as a signaling exception, to tell the autopack code it should try
  1539.    again.
  1540.    """
  1541.  
  1542.     internal_error = True
  1543.  
  1544.     _fmt = ("Pack files have changed, reload and try autopack again."
  1545.             " context: %(context)s %(orig_error)s")
  1546.  
  1547.  
  1548. class NoSuchExportFormat(BzrError):
  1549.  
  1550.     _fmt = "Export format %(format)r not supported"
  1551.  
  1552.     def __init__(self, format):
  1553.         BzrError.__init__(self)
  1554.         self.format = format
  1555.  
  1556.  
  1557. class TransportError(BzrError):
  1558.  
  1559.     _fmt = "Transport error: %(msg)s %(orig_error)s"
  1560.  
  1561.     def __init__(self, msg=None, orig_error=None):
  1562.         if msg is None and orig_error is not None:
  1563.             msg = str(orig_error)
  1564.         if orig_error is None:
  1565.             orig_error = ''
  1566.         if msg is None:
  1567.             msg =  ''
  1568.         self.msg = msg
  1569.         self.orig_error = orig_error
  1570.         BzrError.__init__(self)
  1571.  
  1572.  
  1573. class TooManyConcurrentRequests(InternalBzrError):
  1574.  
  1575.     _fmt = ("The medium '%(medium)s' has reached its concurrent request limit."
  1576.             " Be sure to finish_writing and finish_reading on the"
  1577.             " currently open request.")
  1578.  
  1579.     def __init__(self, medium):
  1580.         self.medium = medium
  1581.  
  1582.  
  1583. class SmartProtocolError(TransportError):
  1584.  
  1585.     _fmt = "Generic bzr smart protocol error: %(details)s"
  1586.  
  1587.     def __init__(self, details):
  1588.         self.details = details
  1589.  
  1590.  
  1591. class UnexpectedProtocolVersionMarker(TransportError):
  1592.  
  1593.     _fmt = "Received bad protocol version marker: %(marker)r"
  1594.  
  1595.     def __init__(self, marker):
  1596.         self.marker = marker
  1597.  
  1598.  
  1599. class UnknownSmartMethod(InternalBzrError):
  1600.  
  1601.     _fmt = "The server does not recognise the '%(verb)s' request."
  1602.  
  1603.     def __init__(self, verb):
  1604.         self.verb = verb
  1605.  
  1606.  
  1607. class SmartMessageHandlerError(InternalBzrError):
  1608.  
  1609.     _fmt = ("The message handler raised an exception:\n"
  1610.             "%(traceback_text)s")
  1611.  
  1612.     def __init__(self, exc_info):
  1613.         import traceback
  1614.         # GZ 2010-08-10: Cycle with exc_tb/exc_info affects at least one test
  1615.         self.exc_type, self.exc_value, self.exc_tb = exc_info
  1616.         self.exc_info = exc_info
  1617.         traceback_strings = traceback.format_exception(
  1618.                 self.exc_type, self.exc_value, self.exc_tb)
  1619.         self.traceback_text = ''.join(traceback_strings)
  1620.  
  1621. class TransportOperationNotSupported(TransportError):
  1622.  
  1623.     _fmt = "Transport operation is not supported: %(operation)s%(msg)s"
  1624.  
  1625.     def __init__(self, operation, msg=None):
  1626.         if msg != None:
  1627.             self.msg = "\n" + msg
  1628.         self.operation = operation
  1629.  
  1630. # A set of semi-meaningful errors which can be thrown
  1631. class TransportNotPossible(TransportError):
  1632.  
  1633.     _fmt = "Transport operation not possible: %(msg)s %(orig_error)s"
  1634.  
  1635.  
  1636. class ConnectionError(TransportError):
  1637.  
  1638.     _fmt = "Connection error: %(msg)s %(orig_error)s"
  1639.  
  1640.  
  1641. class SocketConnectionError(ConnectionError):
  1642.  
  1643.     _fmt = "%(msg)s %(host)s%(port)s%(orig_error)s"
  1644.  
  1645.     def __init__(self, host, port=None, msg=None, orig_error=None):
  1646.         if msg is None:
  1647.             msg = 'Failed to connect to'
  1648.         if orig_error is None:
  1649.             orig_error = ''
  1650.         else:
  1651.             orig_error = '; ' + str(orig_error)
  1652.         ConnectionError.__init__(self, msg=msg, orig_error=orig_error)
  1653.         self.host = host
  1654.         if port is None:
  1655.             self.port = ''
  1656.         else:
  1657.             self.port = ':%s' % port
  1658.  
  1659.  
  1660. # XXX: This is also used for unexpected end of file, which is different at the
  1661. # TCP level from "connection reset".
  1662. class ConnectionReset(TransportError):
  1663.  
  1664.     _fmt = "Connection closed: %(msg)s %(orig_error)s"
  1665.  
  1666.  
  1667. class ConnectionTimeout(ConnectionError):
  1668.  
  1669.     _fmt = "Connection Timeout: %(msg)s%(orig_error)s"
  1670.  
  1671.  
  1672. class InvalidRange(TransportError):
  1673.  
  1674.     _fmt = "Invalid range access in %(path)s at %(offset)s: %(msg)s"
  1675.  
  1676.     def __init__(self, path, offset, msg=None):
  1677.         TransportError.__init__(self, msg)
  1678.         self.path = path
  1679.         self.offset = offset
  1680.  
  1681.  
  1682. class InvalidHttpResponse(TransportError):
  1683.  
  1684.     _fmt = "Invalid http response for %(path)s: %(msg)s%(orig_error)s"
  1685.  
  1686.     def __init__(self, path, msg, orig_error=None):
  1687.         self.path = path
  1688.         if orig_error is None:
  1689.             orig_error = ''
  1690.         else:
  1691.             # This is reached for obscure and unusual errors so we want to
  1692.             # preserve as much info as possible to ease debug.
  1693.             orig_error = ': %r' % (orig_error,)
  1694.         TransportError.__init__(self, msg, orig_error=orig_error)
  1695.  
  1696.  
  1697. class CertificateError(TransportError):
  1698.  
  1699.     _fmt = "Certificate error: %(error)s"
  1700.  
  1701.     def __init__(self, error):
  1702.         self.error = error
  1703.  
  1704.  
  1705. class InvalidHttpRange(InvalidHttpResponse):
  1706.  
  1707.     _fmt = "Invalid http range %(range)r for %(path)s: %(msg)s"
  1708.  
  1709.     def __init__(self, path, range, msg):
  1710.         self.range = range
  1711.         InvalidHttpResponse.__init__(self, path, msg)
  1712.  
  1713.  
  1714. class HttpBoundaryMissing(InvalidHttpResponse):
  1715.     """A multipart response ends with no boundary marker.
  1716.  
  1717.    This is a special case caused by buggy proxies, described in
  1718.    <https://bugs.launchpad.net/bzr/+bug/198646>.
  1719.    """
  1720.  
  1721.     _fmt = "HTTP MIME Boundary missing for %(path)s: %(msg)s"
  1722.  
  1723.     def __init__(self, path, msg):
  1724.         InvalidHttpResponse.__init__(self, path, msg)
  1725.  
  1726.  
  1727. class InvalidHttpContentType(InvalidHttpResponse):
  1728.  
  1729.     _fmt = 'Invalid http Content-type "%(ctype)s" for %(path)s: %(msg)s'
  1730.  
  1731.     def __init__(self, path, ctype, msg):
  1732.         self.ctype = ctype
  1733.         InvalidHttpResponse.__init__(self, path, msg)
  1734.  
  1735.  
  1736. class RedirectRequested(TransportError):
  1737.  
  1738.     _fmt = '%(source)s is%(permanently)s redirected to %(target)s'
  1739.  
  1740.     def __init__(self, source, target, is_permanent=False):
  1741.         self.source = source
  1742.         self.target = target
  1743.         if is_permanent:
  1744.             self.permanently = ' permanently'
  1745.         else:
  1746.             self.permanently = ''
  1747.         TransportError.__init__(self)
  1748.  
  1749.  
  1750. class TooManyRedirections(TransportError):
  1751.  
  1752.     _fmt = "Too many redirections"
  1753.  
  1754.  
  1755. class ConflictsInTree(BzrError):
  1756.  
  1757.     _fmt = "Working tree has conflicts."
  1758.  
  1759.  
  1760. class ConfigContentError(BzrError):
  1761.  
  1762.     _fmt = "Config file %(filename)s is not UTF-8 encoded\n"
  1763.  
  1764.     def __init__(self, filename):
  1765.         BzrError.__init__(self)
  1766.         self.filename = filename
  1767.  
  1768.  
  1769. class ParseConfigError(BzrError):
  1770.  
  1771.     _fmt = "Error(s) parsing config file %(filename)s:\n%(errors)s"
  1772.  
  1773.     def __init__(self, errors, filename):
  1774.         BzrError.__init__(self)
  1775.         self.filename = filename
  1776.         self.errors = '\n'.join(e.msg for e in errors)
  1777.  
  1778.  
  1779. class ConfigOptionValueError(BzrError):
  1780.  
  1781.     _fmt = ('Bad value "%(value)s" for option "%(name)s".\n'
  1782.             'See ``bzr help %(name)s``')
  1783.  
  1784.     def __init__(self, name, value):
  1785.         BzrError.__init__(self, name=name, value=value)
  1786.  
  1787.  
  1788. class NoEmailInUsername(BzrError):
  1789.  
  1790.     _fmt = "%(username)r does not seem to contain a reasonable email address"
  1791.  
  1792.     def __init__(self, username):
  1793.         BzrError.__init__(self)
  1794.         self.username = username
  1795.  
  1796.  
  1797. class SigningFailed(BzrError):
  1798.  
  1799.     _fmt = 'Failed to GPG sign data with command "%(command_line)s"'
  1800.  
  1801.     def __init__(self, command_line):
  1802.         BzrError.__init__(self, command_line=command_line)
  1803.  
  1804.  
  1805. class SignatureVerificationFailed(BzrError):
  1806.  
  1807.     _fmt = 'Failed to verify GPG signature data with error "%(error)s"'
  1808.  
  1809.     def __init__(self, error):
  1810.         BzrError.__init__(self, error=error)
  1811.  
  1812.  
  1813. class DependencyNotPresent(BzrError):
  1814.  
  1815.     _fmt = 'Unable to import library "%(library)s": %(error)s'
  1816.  
  1817.     def __init__(self, library, error):
  1818.         BzrError.__init__(self, library=library, error=error)
  1819.  
  1820.  
  1821. class GpgmeNotInstalled(DependencyNotPresent):
  1822.  
  1823.     _fmt = 'python-gpgme is not installed, it is needed to verify signatures'
  1824.  
  1825.     def __init__(self, error):
  1826.         DependencyNotPresent.__init__(self, 'gpgme', error)
  1827.  
  1828.  
  1829. class WorkingTreeNotRevision(BzrError):
  1830.  
  1831.     _fmt = ("The working tree for %(basedir)s has changed since"
  1832.             " the last commit, but weave merge requires that it be"
  1833.             " unchanged")
  1834.  
  1835.     def __init__(self, tree):
  1836.         BzrError.__init__(self, basedir=tree.basedir)
  1837.  
  1838.  
  1839. class CantReprocessAndShowBase(BzrError):
  1840.  
  1841.     _fmt = ("Can't reprocess and show base, because reprocessing obscures "
  1842.            "the relationship of conflicting lines to the base")
  1843.  
  1844.  
  1845. class GraphCycleError(BzrError):
  1846.  
  1847.     _fmt = "Cycle in graph %(graph)r"
  1848.  
  1849.     def __init__(self, graph):
  1850.         BzrError.__init__(self)
  1851.         self.graph = graph
  1852.  
  1853.  
  1854. class WritingCompleted(InternalBzrError):
  1855.  
  1856.     _fmt = ("The MediumRequest '%(request)s' has already had finish_writing "
  1857.             "called upon it - accept bytes may not be called anymore.")
  1858.  
  1859.     def __init__(self, request):
  1860.         self.request = request
  1861.  
  1862.  
  1863. class WritingNotComplete(InternalBzrError):
  1864.  
  1865.     _fmt = ("The MediumRequest '%(request)s' has not has finish_writing "
  1866.             "called upon it - until the write phase is complete no "
  1867.             "data may be read.")
  1868.  
  1869.     def __init__(self, request):
  1870.         self.request = request
  1871.  
  1872.  
  1873. class NotConflicted(BzrError):
  1874.  
  1875.     _fmt = "File %(filename)s is not conflicted."
  1876.  
  1877.     def __init__(self, filename):
  1878.         BzrError.__init__(self)
  1879.         self.filename = filename
  1880.  
  1881.  
  1882. class MediumNotConnected(InternalBzrError):
  1883.  
  1884.     _fmt = """The medium '%(medium)s' is not connected."""
  1885.  
  1886.     def __init__(self, medium):
  1887.         self.medium = medium
  1888.  
  1889.  
  1890. class MustUseDecorated(Exception):
  1891.  
  1892.     _fmt = "A decorating function has requested its original command be used."
  1893.  
  1894.  
  1895. class NoBundleFound(BzrError):
  1896.  
  1897.     _fmt = 'No bundle was found in "%(filename)s".'
  1898.  
  1899.     def __init__(self, filename):
  1900.         BzrError.__init__(self)
  1901.         self.filename = filename
  1902.  
  1903.  
  1904. class BundleNotSupported(BzrError):
  1905.  
  1906.     _fmt = "Unable to handle bundle version %(version)s: %(msg)s"
  1907.  
  1908.     def __init__(self, version, msg):
  1909.         BzrError.__init__(self)
  1910.         self.version = version
  1911.         self.msg = msg
  1912.  
  1913.  
  1914. class MissingText(BzrError):
  1915.  
  1916.     _fmt = ("Branch %(base)s is missing revision"
  1917.             " %(text_revision)s of %(file_id)s")
  1918.  
  1919.     def __init__(self, branch, text_revision, file_id):
  1920.         BzrError.__init__(self)
  1921.         self.branch = branch
  1922.         self.base = branch.base
  1923.         self.text_revision = text_revision
  1924.         self.file_id = file_id
  1925.  
  1926.  
  1927. class DuplicateFileId(BzrError):
  1928.  
  1929.     _fmt = "File id {%(file_id)s} already exists in inventory as %(entry)s"
  1930.  
  1931.     def __init__(self, file_id, entry):
  1932.         BzrError.__init__(self)
  1933.         self.file_id = file_id
  1934.         self.entry = entry
  1935.  
  1936.  
  1937. class DuplicateKey(BzrError):
  1938.  
  1939.     _fmt = "Key %(key)s is already present in map"
  1940.  
  1941.  
  1942. class DuplicateHelpPrefix(BzrError):
  1943.  
  1944.     _fmt = "The prefix %(prefix)s is in the help search path twice."
  1945.  
  1946.     def __init__(self, prefix):
  1947.         self.prefix = prefix
  1948.  
  1949.  
  1950. class MalformedTransform(InternalBzrError):
  1951.  
  1952.     _fmt = "Tree transform is malformed %(conflicts)r"
  1953.  
  1954.  
  1955. class NoFinalPath(BzrError):
  1956.  
  1957.     _fmt = ("No final name for trans_id %(trans_id)r\n"
  1958.             "file-id: %(file_id)r\n"
  1959.             "root trans-id: %(root_trans_id)r\n")
  1960.  
  1961.     def __init__(self, trans_id, transform):
  1962.         self.trans_id = trans_id
  1963.         self.file_id = transform.final_file_id(trans_id)
  1964.         self.root_trans_id = transform.root
  1965.  
  1966.  
  1967. class BzrBadParameter(InternalBzrError):
  1968.  
  1969.     _fmt = "Bad parameter: %(param)r"
  1970.  
  1971.     # This exception should never be thrown, but it is a base class for all
  1972.     # parameter-to-function errors.
  1973.  
  1974.     def __init__(self, param):
  1975.         BzrError.__init__(self)
  1976.         self.param = param
  1977.  
  1978.  
  1979. class BzrBadParameterNotUnicode(BzrBadParameter):
  1980.  
  1981.     _fmt = "Parameter %(param)s is neither unicode nor utf8."
  1982.  
  1983.  
  1984. class ReusingTransform(BzrError):
  1985.  
  1986.     _fmt = "Attempt to reuse a transform that has already been applied."
  1987.  
  1988.  
  1989. class CantMoveRoot(BzrError):
  1990.  
  1991.     _fmt = "Moving the root directory is not supported at this time"
  1992.  
  1993.  
  1994. class TransformRenameFailed(BzrError):
  1995.  
  1996.     _fmt = "Failed to rename %(from_path)s to %(to_path)s: %(why)s"
  1997.  
  1998.     def __init__(self, from_path, to_path, why, errno):
  1999.         self.from_path = from_path
  2000.         self.to_path = to_path
  2001.         self.why = why
  2002.         self.errno = errno
  2003.  
  2004.  
  2005. class BzrMoveFailedError(BzrError):
  2006.  
  2007.     _fmt = ("Could not move %(from_path)s%(operator)s %(to_path)s"
  2008.         "%(_has_extra)s%(extra)s")
  2009.  
  2010.     def __init__(self, from_path='', to_path='', extra=None):
  2011.         from bzrlib.osutils import splitpath
  2012.         BzrError.__init__(self)
  2013.         if extra:
  2014.             self.extra, self._has_extra = extra, ': '
  2015.         else:
  2016.             self.extra = self._has_extra = ''
  2017.  
  2018.         has_from = len(from_path) > 0
  2019.         has_to = len(to_path) > 0
  2020.         if has_from:
  2021.             self.from_path = splitpath(from_path)[-1]
  2022.         else:
  2023.             self.from_path = ''
  2024.  
  2025.         if has_to:
  2026.             self.to_path = splitpath(to_path)[-1]
  2027.         else:
  2028.             self.to_path = ''
  2029.  
  2030.         self.operator = ""
  2031.         if has_from and has_to:
  2032.             self.operator = " =>"
  2033.         elif has_from:
  2034.             self.from_path = "from " + from_path
  2035.         elif has_to:
  2036.             self.operator = "to"
  2037.         else:
  2038.             self.operator = "file"
  2039.  
  2040.  
  2041. class BzrRenameFailedError(BzrMoveFailedError):
  2042.  
  2043.     _fmt = ("Could not rename %(from_path)s%(operator)s %(to_path)s"
  2044.         "%(_has_extra)s%(extra)s")
  2045.  
  2046.     def __init__(self, from_path, to_path, extra=None):
  2047.         BzrMoveFailedError.__init__(self, from_path, to_path, extra)
  2048.  
  2049.  
  2050. class BzrBadParameterNotString(BzrBadParameter):
  2051.  
  2052.     _fmt = "Parameter %(param)s is not a string or unicode string."
  2053.  
  2054.  
  2055. class BzrBadParameterMissing(BzrBadParameter):
  2056.  
  2057.     _fmt = "Parameter %(param)s is required but not present."
  2058.  
  2059.  
  2060. class BzrBadParameterUnicode(BzrBadParameter):
  2061.  
  2062.     _fmt = ("Parameter %(param)s is unicode but"
  2063.             " only byte-strings are permitted.")
  2064.  
  2065.  
  2066. class BzrBadParameterContainsNewline(BzrBadParameter):
  2067.  
  2068.     _fmt = "Parameter %(param)s contains a newline."
  2069.  
  2070.  
  2071. class ParamikoNotPresent(DependencyNotPresent):
  2072.  
  2073.     _fmt = "Unable to import paramiko (required for sftp support): %(error)s"
  2074.  
  2075.     def __init__(self, error):
  2076.         DependencyNotPresent.__init__(self, 'paramiko', error)
  2077.  
  2078.  
  2079. class PointlessMerge(BzrError):
  2080.  
  2081.     _fmt = "Nothing to merge."
  2082.  
  2083.  
  2084. class UninitializableFormat(BzrError):
  2085.  
  2086.     _fmt = "Format %(format)s cannot be initialised by this version of bzr."
  2087.  
  2088.     def __init__(self, format):
  2089.         BzrError.__init__(self)
  2090.         self.format = format
  2091.  
  2092.  
  2093. class BadConversionTarget(BzrError):
  2094.  
  2095.     _fmt = "Cannot convert from format %(from_format)s to format %(format)s." \
  2096.             "    %(problem)s"
  2097.  
  2098.     def __init__(self, problem, format, from_format=None):
  2099.         BzrError.__init__(self)
  2100.         self.problem = problem
  2101.         self.format = format
  2102.         self.from_format = from_format or '(unspecified)'
  2103.  
  2104.  
  2105. class NoDiffFound(BzrError):
  2106.  
  2107.     _fmt = 'Could not find an appropriate Differ for file "%(path)s"'
  2108.  
  2109.     def __init__(self, path):
  2110.         BzrError.__init__(self, path)
  2111.  
  2112.  
  2113. class ExecutableMissing(BzrError):
  2114.  
  2115.     _fmt = "%(exe_name)s could not be found on this machine"
  2116.  
  2117.     def __init__(self, exe_name):
  2118.         BzrError.__init__(self, exe_name=exe_name)
  2119.  
  2120.  
  2121. class NoDiff(BzrError):
  2122.  
  2123.     _fmt = "Diff is not installed on this machine: %(msg)s"
  2124.  
  2125.     def __init__(self, msg):
  2126.         BzrError.__init__(self, msg=msg)
  2127.  
  2128.  
  2129. class NoDiff3(BzrError):
  2130.  
  2131.     _fmt = "Diff3 is not installed on this machine."
  2132.  
  2133.  
  2134. class ExistingContent(BzrError):
  2135.     # Added in bzrlib 0.92, used by VersionedFile.add_lines.
  2136.  
  2137.     _fmt = "The content being inserted is already present."
  2138.  
  2139.  
  2140. class ExistingLimbo(BzrError):
  2141.  
  2142.     _fmt = """This tree contains left-over files from a failed operation.
  2143.    Please examine %(limbo_dir)s to see if it contains any files you wish to
  2144.    keep, and delete it when you are done."""
  2145.  
  2146.     def __init__(self, limbo_dir):
  2147.        BzrError.__init__(self)
  2148.        self.limbo_dir = limbo_dir
  2149.  
  2150.  
  2151. class ExistingPendingDeletion(BzrError):
  2152.  
  2153.     _fmt = """This tree contains left-over files from a failed operation.
  2154.    Please examine %(pending_deletion)s to see if it contains any files you
  2155.    wish to keep, and delete it when you are done."""
  2156.  
  2157.     def __init__(self, pending_deletion):
  2158.        BzrError.__init__(self, pending_deletion=pending_deletion)
  2159.  
  2160.  
  2161. class ImmortalLimbo(BzrError):
  2162.  
  2163.     _fmt = """Unable to delete transform temporary directory %(limbo_dir)s.
  2164.    Please examine %(limbo_dir)s to see if it contains any files you wish to
  2165.    keep, and delete it when you are done."""
  2166.  
  2167.     def __init__(self, limbo_dir):
  2168.        BzrError.__init__(self)
  2169.        self.limbo_dir = limbo_dir
  2170.  
  2171.  
  2172. class ImmortalPendingDeletion(BzrError):
  2173.  
  2174.     _fmt = ("Unable to delete transform temporary directory "
  2175.     "%(pending_deletion)s.  Please examine %(pending_deletion)s to see if it "
  2176.     "contains any files you wish to keep, and delete it when you are done.")
  2177.  
  2178.     def __init__(self, pending_deletion):
  2179.        BzrError.__init__(self, pending_deletion=pending_deletion)
  2180.  
  2181.  
  2182. class OutOfDateTree(BzrError):
  2183.  
  2184.     _fmt = "Working tree is out of date, please run 'bzr update'.%(more)s"
  2185.  
  2186.     def __init__(self, tree, more=None):
  2187.         if more is None:
  2188.             more = ''
  2189.         else:
  2190.             more = ' ' + more
  2191.         BzrError.__init__(self)
  2192.         self.tree = tree
  2193.         self.more = more
  2194.  
  2195.  
  2196. class PublicBranchOutOfDate(BzrError):
  2197.  
  2198.     _fmt = 'Public branch "%(public_location)s" lacks revision '\
  2199.         '"%(revstring)s".'
  2200.  
  2201.     def __init__(self, public_location, revstring):
  2202.         import bzrlib.urlutils as urlutils
  2203.         public_location = urlutils.unescape_for_display(public_location,
  2204.                                                         'ascii')
  2205.         BzrError.__init__(self, public_location=public_location,
  2206.                           revstring=revstring)
  2207.  
  2208.  
  2209. class MergeModifiedFormatError(BzrError):
  2210.  
  2211.     _fmt = "Error in merge modified format"
  2212.  
  2213.  
  2214. class ConflictFormatError(BzrError):
  2215.  
  2216.     _fmt = "Format error in conflict listings"
  2217.  
  2218.  
  2219. class CorruptDirstate(BzrError):
  2220.  
  2221.     _fmt = ("Inconsistency in dirstate file %(dirstate_path)s.\n"
  2222.             "Error: %(description)s")
  2223.  
  2224.     def __init__(self, dirstate_path, description):
  2225.         BzrError.__init__(self)
  2226.         self.dirstate_path = dirstate_path
  2227.         self.description = description
  2228.  
  2229.  
  2230. class CorruptRepository(BzrError):
  2231.  
  2232.     _fmt = ("An error has been detected in the repository %(repo_path)s.\n"
  2233.             "Please run bzr reconcile on this repository.")
  2234.  
  2235.     def __init__(self, repo):
  2236.         BzrError.__init__(self)
  2237.         self.repo_path = repo.user_url
  2238.  
  2239.  
  2240. class InconsistentDelta(BzrError):
  2241.     """Used when we get a delta that is not valid."""
  2242.  
  2243.     _fmt = ("An inconsistent delta was supplied involving %(path)r,"
  2244.             " %(file_id)r\nreason: %(reason)s")
  2245.  
  2246.     def __init__(self, path, file_id, reason):
  2247.         BzrError.__init__(self)
  2248.         self.path = path
  2249.         self.file_id = file_id
  2250.         self.reason = reason
  2251.  
  2252.  
  2253. class InconsistentDeltaDelta(InconsistentDelta):
  2254.     """Used when we get a delta that is not valid."""
  2255.  
  2256.     _fmt = ("An inconsistent delta was supplied: %(delta)r"
  2257.             "\nreason: %(reason)s")
  2258.  
  2259.     def __init__(self, delta, reason):
  2260.         BzrError.__init__(self)
  2261.         self.delta = delta
  2262.         self.reason = reason
  2263.  
  2264.  
  2265. class UpgradeRequired(BzrError):
  2266.  
  2267.     _fmt = "To use this feature you must upgrade your branch at %(path)s."
  2268.  
  2269.     def __init__(self, path):
  2270.         BzrError.__init__(self)
  2271.         self.path = path
  2272.  
  2273.  
  2274. class RepositoryUpgradeRequired(UpgradeRequired):
  2275.  
  2276.     _fmt = "To use this feature you must upgrade your repository at %(path)s."
  2277.  
  2278.  
  2279. class RichRootUpgradeRequired(UpgradeRequired):
  2280.  
  2281.     _fmt = ("To use this feature you must upgrade your branch at %(path)s to"
  2282.            " a format which supports rich roots.")
  2283.  
  2284.  
  2285. class LocalRequiresBoundBranch(BzrError):
  2286.  
  2287.     _fmt = "Cannot perform local-only commits on unbound branches."
  2288.  
  2289.  
  2290. class UnsupportedOperation(BzrError):
  2291.  
  2292.     _fmt = ("The method %(mname)s is not supported on"
  2293.             " objects of type %(tname)s.")
  2294.  
  2295.     def __init__(self, method, method_self):
  2296.         self.method = method
  2297.         self.mname = method.__name__
  2298.         self.tname = type(method_self).__name__
  2299.  
  2300.  
  2301. class CannotSetRevisionId(UnsupportedOperation):
  2302.     """Raised when a commit is attempting to set a revision id but cant."""
  2303.  
  2304.  
  2305. class NonAsciiRevisionId(UnsupportedOperation):
  2306.     """Raised when a commit is attempting to set a non-ascii revision id
  2307.       but cant.
  2308.    """
  2309.  
  2310.  
  2311. class GhostTagsNotSupported(BzrError):
  2312.  
  2313.     _fmt = "Ghost tags not supported by format %(format)r."
  2314.  
  2315.     def __init__(self, format):
  2316.         self.format = format
  2317.  
  2318.  
  2319. class BinaryFile(BzrError):
  2320.  
  2321.     _fmt = "File is binary but should be text."
  2322.  
  2323.  
  2324. class IllegalPath(BzrError):
  2325.  
  2326.     _fmt = "The path %(path)s is not permitted on this platform"
  2327.  
  2328.     def __init__(self, path):
  2329.         BzrError.__init__(self)
  2330.         self.path = path
  2331.  
  2332.  
  2333. class TestamentMismatch(BzrError):
  2334.  
  2335.     _fmt = """Testament did not match expected value.
  2336.       For revision_id {%(revision_id)s}, expected {%(expected)s}, measured
  2337.       {%(measured)s}"""
  2338.  
  2339.     def __init__(self, revision_id, expected, measured):
  2340.         self.revision_id = revision_id
  2341.         self.expected = expected
  2342.         self.measured = measured
  2343.  
  2344.  
  2345. class NotABundle(BzrError):
  2346.  
  2347.     _fmt = "Not a bzr revision-bundle: %(text)r"
  2348.  
  2349.     def __init__(self, text):
  2350.         BzrError.__init__(self)
  2351.         self.text = text
  2352.  
  2353.  
  2354. class BadBundle(BzrError):
  2355.  
  2356.     _fmt = "Bad bzr revision-bundle: %(text)r"
  2357.  
  2358.     def __init__(self, text):
  2359.         BzrError.__init__(self)
  2360.         self.text = text
  2361.  
  2362.  
  2363. class MalformedHeader(BadBundle):
  2364.  
  2365.     _fmt = "Malformed bzr revision-bundle header: %(text)r"
  2366.  
  2367.  
  2368. class MalformedPatches(BadBundle):
  2369.  
  2370.     _fmt = "Malformed patches in bzr revision-bundle: %(text)r"
  2371.  
  2372.  
  2373. class MalformedFooter(BadBundle):
  2374.  
  2375.     _fmt = "Malformed footer in bzr revision-bundle: %(text)r"
  2376.  
  2377.  
  2378. class UnsupportedEOLMarker(BadBundle):
  2379.  
  2380.     _fmt = "End of line marker was not \\n in bzr revision-bundle"
  2381.  
  2382.     def __init__(self):
  2383.         # XXX: BadBundle's constructor assumes there's explanatory text,
  2384.         # but for this there is not
  2385.         BzrError.__init__(self)
  2386.  
  2387.  
  2388. class IncompatibleBundleFormat(BzrError):
  2389.  
  2390.     _fmt = "Bundle format %(bundle_format)s is incompatible with %(other)s"
  2391.  
  2392.     def __init__(self, bundle_format, other):
  2393.         BzrError.__init__(self)
  2394.         self.bundle_format = bundle_format
  2395.         self.other = other
  2396.  
  2397.  
  2398. class BadInventoryFormat(BzrError):
  2399.  
  2400.     _fmt = "Root class for inventory serialization errors"
  2401.  
  2402.  
  2403. class UnexpectedInventoryFormat(BadInventoryFormat):
  2404.  
  2405.     _fmt = "The inventory was not in the expected format:\n %(msg)s"
  2406.  
  2407.     def __init__(self, msg):
  2408.         BadInventoryFormat.__init__(self, msg=msg)
  2409.  
  2410.  
  2411. class RootNotRich(BzrError):
  2412.  
  2413.     _fmt = """This operation requires rich root data storage"""
  2414.  
  2415.  
  2416. class NoSmartMedium(InternalBzrError):
  2417.  
  2418.     _fmt = "The transport '%(transport)s' cannot tunnel the smart protocol."
  2419.  
  2420.     def __init__(self, transport):
  2421.         self.transport = transport
  2422.  
  2423.  
  2424. class UnknownSSH(BzrError):
  2425.  
  2426.     _fmt = "Unrecognised value for BZR_SSH environment variable: %(vendor)s"
  2427.  
  2428.     def __init__(self, vendor):
  2429.         BzrError.__init__(self)
  2430.         self.vendor = vendor
  2431.  
  2432.  
  2433. class SSHVendorNotFound(BzrError):
  2434.  
  2435.     _fmt = ("Don't know how to handle SSH connections."
  2436.             " Please set BZR_SSH environment variable.")
  2437.  
  2438.  
  2439. class GhostRevisionsHaveNoRevno(BzrError):
  2440.     """When searching for revnos, if we encounter a ghost, we are stuck"""
  2441.  
  2442.     _fmt = ("Could not determine revno for {%(revision_id)s} because"
  2443.             " its ancestry shows a ghost at {%(ghost_revision_id)s}")
  2444.  
  2445.     def __init__(self, revision_id, ghost_revision_id):
  2446.         self.revision_id = revision_id
  2447.         self.ghost_revision_id = ghost_revision_id
  2448.  
  2449.  
  2450. class GhostRevisionUnusableHere(BzrError):
  2451.  
  2452.     _fmt = "Ghost revision {%(revision_id)s} cannot be used here."
  2453.  
  2454.     def __init__(self, revision_id):
  2455.         BzrError.__init__(self)
  2456.         self.revision_id = revision_id
  2457.  
  2458.  
  2459. class IllegalUseOfScopeReplacer(InternalBzrError):
  2460.  
  2461.     _fmt = ("ScopeReplacer object %(name)r was used incorrectly:"
  2462.             " %(msg)s%(extra)s")
  2463.  
  2464.     def __init__(self, name, msg, extra=None):
  2465.         BzrError.__init__(self)
  2466.         self.name = name
  2467.         self.msg = msg
  2468.         if extra:
  2469.             self.extra = ': ' + str(extra)
  2470.         else:
  2471.             self.extra = ''
  2472.  
  2473.  
  2474. class InvalidImportLine(InternalBzrError):
  2475.  
  2476.     _fmt = "Not a valid import statement: %(msg)\n%(text)s"
  2477.  
  2478.     def __init__(self, text, msg):
  2479.         BzrError.__init__(self)
  2480.         self.text = text
  2481.         self.msg = msg
  2482.  
  2483.  
  2484. class ImportNameCollision(InternalBzrError):
  2485.  
  2486.     _fmt = ("Tried to import an object to the same name as"
  2487.             " an existing object. %(name)s")
  2488.  
  2489.     def __init__(self, name):
  2490.         BzrError.__init__(self)
  2491.         self.name = name
  2492.  
  2493.  
  2494. class NotAMergeDirective(BzrError):
  2495.     """File starting with %(firstline)r is not a merge directive"""
  2496.     def __init__(self, firstline):
  2497.         BzrError.__init__(self, firstline=firstline)
  2498.  
  2499.  
  2500. class NoMergeSource(BzrError):
  2501.     """Raise if no merge source was specified for a merge directive"""
  2502.  
  2503.     _fmt = "A merge directive must provide either a bundle or a public"\
  2504.         " branch location."
  2505.  
  2506.  
  2507. class IllegalMergeDirectivePayload(BzrError):
  2508.     """A merge directive contained something other than a patch or bundle"""
  2509.  
  2510.     _fmt = "Bad merge directive payload %(start)r"
  2511.  
  2512.     def __init__(self, start):
  2513.         BzrError(self)
  2514.         self.start = start
  2515.  
  2516.  
  2517. class PatchVerificationFailed(BzrError):
  2518.     """A patch from a merge directive could not be verified"""
  2519.  
  2520.     _fmt = "Preview patch does not match requested changes."
  2521.  
  2522.  
  2523. class PatchMissing(BzrError):
  2524.     """Raise a patch type was specified but no patch supplied"""
  2525.  
  2526.     _fmt = "Patch_type was %(patch_type)s, but no patch was supplied."
  2527.  
  2528.     def __init__(self, patch_type):
  2529.         BzrError.__init__(self)
  2530.         self.patch_type = patch_type
  2531.  
  2532.  
  2533. class TargetNotBranch(BzrError):
  2534.     """A merge directive's target branch is required, but isn't a branch"""
  2535.  
  2536.     _fmt = ("Your branch does not have all of the revisions required in "
  2537.             "order to merge this merge directive and the target "
  2538.             "location specified in the merge directive is not a branch: "
  2539.             "%(location)s.")
  2540.  
  2541.     def __init__(self, location):
  2542.         BzrError.__init__(self)
  2543.         self.location = location
  2544.  
  2545.  
  2546. class UnsupportedInventoryKind(BzrError):
  2547.  
  2548.     _fmt = """Unsupported entry kind %(kind)s"""
  2549.  
  2550.     def __init__(self, kind):
  2551.         self.kind = kind
  2552.  
  2553.  
  2554. class BadSubsumeSource(BzrError):
  2555.  
  2556.     _fmt = "Can't subsume %(other_tree)s into %(tree)s. %(reason)s"
  2557.  
  2558.     def __init__(self, tree, other_tree, reason):
  2559.         self.tree = tree
  2560.         self.other_tree = other_tree
  2561.         self.reason = reason
  2562.  
  2563.  
  2564. class SubsumeTargetNeedsUpgrade(BzrError):
  2565.  
  2566.     _fmt = """Subsume target %(other_tree)s needs to be upgraded."""
  2567.  
  2568.     def __init__(self, other_tree):
  2569.         self.other_tree = other_tree
  2570.  
  2571.  
  2572. class BadReferenceTarget(InternalBzrError):
  2573.  
  2574.     _fmt = "Can't add reference to %(other_tree)s into %(tree)s." \
  2575.            "%(reason)s"
  2576.  
  2577.     def __init__(self, tree, other_tree, reason):
  2578.         self.tree = tree
  2579.         self.other_tree = other_tree
  2580.         self.reason = reason
  2581.  
  2582.  
  2583. class NoSuchTag(BzrError):
  2584.  
  2585.     _fmt = "No such tag: %(tag_name)s"
  2586.  
  2587.     def __init__(self, tag_name):
  2588.         self.tag_name = tag_name
  2589.  
  2590.  
  2591. class TagsNotSupported(BzrError):
  2592.  
  2593.     _fmt = ("Tags not supported by %(branch)s;"
  2594.             " you may be able to use bzr upgrade.")
  2595.  
  2596.     def __init__(self, branch):
  2597.         self.branch = branch
  2598.  
  2599.  
  2600. class TagAlreadyExists(BzrError):
  2601.  
  2602.     _fmt = "Tag %(tag_name)s already exists."
  2603.  
  2604.     def __init__(self, tag_name):
  2605.         self.tag_name = tag_name
  2606.  
  2607.  
  2608. class MalformedBugIdentifier(BzrError):
  2609.  
  2610.     _fmt = ('Did not understand bug identifier %(bug_id)s: %(reason)s. '
  2611.             'See "bzr help bugs" for more information on this feature.')
  2612.  
  2613.     def __init__(self, bug_id, reason):
  2614.         self.bug_id = bug_id
  2615.         self.reason = reason
  2616.  
  2617.  
  2618. class InvalidBugTrackerURL(BzrError):
  2619.  
  2620.     _fmt = ("The URL for bug tracker \"%(abbreviation)s\" doesn't "
  2621.             "contain {id}: %(url)s")
  2622.  
  2623.     def __init__(self, abbreviation, url):
  2624.         self.abbreviation = abbreviation
  2625.         self.url = url
  2626.  
  2627.  
  2628. class UnknownBugTrackerAbbreviation(BzrError):
  2629.  
  2630.     _fmt = ("Cannot find registered bug tracker called %(abbreviation)s "
  2631.             "on %(branch)s")
  2632.  
  2633.     def __init__(self, abbreviation, branch):
  2634.         self.abbreviation = abbreviation
  2635.         self.branch = branch
  2636.  
  2637.  
  2638. class InvalidLineInBugsProperty(BzrError):
  2639.  
  2640.     _fmt = ("Invalid line in bugs property: '%(line)s'")
  2641.  
  2642.     def __init__(self, line):
  2643.         self.line = line
  2644.  
  2645.  
  2646. class InvalidBugStatus(BzrError):
  2647.  
  2648.     _fmt = ("Invalid bug status: '%(status)s'")
  2649.  
  2650.     def __init__(self, status):
  2651.         self.status = status
  2652.  
  2653.  
  2654. class UnexpectedSmartServerResponse(BzrError):
  2655.  
  2656.     _fmt = "Could not understand response from smart server: %(response_tuple)r"
  2657.  
  2658.     def __init__(self, response_tuple):
  2659.         self.response_tuple = response_tuple
  2660.  
  2661.  
  2662. class ErrorFromSmartServer(BzrError):
  2663.     """An error was received from a smart server.
  2664.  
  2665.    :seealso: UnknownErrorFromSmartServer
  2666.    """
  2667.  
  2668.     _fmt = "Error received from smart server: %(error_tuple)r"
  2669.  
  2670.     internal_error = True
  2671.  
  2672.     def __init__(self, error_tuple):
  2673.         self.error_tuple = error_tuple
  2674.         try:
  2675.             self.error_verb = error_tuple[0]
  2676.         except IndexError:
  2677.             self.error_verb = None
  2678.         self.error_args = error_tuple[1:]
  2679.  
  2680.  
  2681. class UnknownErrorFromSmartServer(BzrError):
  2682.     """An ErrorFromSmartServer could not be translated into a typical bzrlib
  2683.    error.
  2684.  
  2685.    This is distinct from ErrorFromSmartServer so that it is possible to
  2686.    distinguish between the following two cases:
  2687.  
  2688.    - ErrorFromSmartServer was uncaught.  This is logic error in the client
  2689.      and so should provoke a traceback to the user.
  2690.    - ErrorFromSmartServer was caught but its error_tuple could not be
  2691.      translated.  This is probably because the server sent us garbage, and
  2692.      should not provoke a traceback.
  2693.    """
  2694.  
  2695.     _fmt = "Server sent an unexpected error: %(error_tuple)r"
  2696.  
  2697.     internal_error = False
  2698.  
  2699.     def __init__(self, error_from_smart_server):
  2700.         """Constructor.
  2701.  
  2702.        :param error_from_smart_server: An ErrorFromSmartServer instance.
  2703.        """
  2704.         self.error_from_smart_server = error_from_smart_server
  2705.         self.error_tuple = error_from_smart_server.error_tuple
  2706.  
  2707.  
  2708. class ContainerError(BzrError):
  2709.     """Base class of container errors."""
  2710.  
  2711.  
  2712. class UnknownContainerFormatError(ContainerError):
  2713.  
  2714.     _fmt = "Unrecognised container format: %(container_format)r"
  2715.  
  2716.     def __init__(self, container_format):
  2717.         self.container_format = container_format
  2718.  
  2719.  
  2720. class UnexpectedEndOfContainerError(ContainerError):
  2721.  
  2722.     _fmt = "Unexpected end of container stream"
  2723.  
  2724.  
  2725. class UnknownRecordTypeError(ContainerError):
  2726.  
  2727.     _fmt = "Unknown record type: %(record_type)r"
  2728.  
  2729.     def __init__(self, record_type):
  2730.         self.record_type = record_type
  2731.  
  2732.  
  2733. class InvalidRecordError(ContainerError):
  2734.  
  2735.     _fmt = "Invalid record: %(reason)s"
  2736.  
  2737.     def __init__(self, reason):
  2738.         self.reason = reason
  2739.  
  2740.  
  2741. class ContainerHasExcessDataError(ContainerError):
  2742.  
  2743.     _fmt = "Container has data after end marker: %(excess)r"
  2744.  
  2745.     def __init__(self, excess):
  2746.         self.excess = excess
  2747.  
  2748.  
  2749. class DuplicateRecordNameError(ContainerError):
  2750.  
  2751.     _fmt = "Container has multiple records with the same name: %(name)s"
  2752.  
  2753.     def __init__(self, name):
  2754.         self.name = name.decode("utf-8")
  2755.  
  2756.  
  2757. class NoDestinationAddress(InternalBzrError):
  2758.  
  2759.     _fmt = "Message does not have a destination address."
  2760.  
  2761.  
  2762. class RepositoryDataStreamError(BzrError):
  2763.  
  2764.     _fmt = "Corrupt or incompatible data stream: %(reason)s"
  2765.  
  2766.     def __init__(self, reason):
  2767.         self.reason = reason
  2768.  
  2769.  
  2770. class SMTPError(BzrError):
  2771.  
  2772.     _fmt = "SMTP error: %(error)s"
  2773.  
  2774.     def __init__(self, error):
  2775.         self.error = error
  2776.  
  2777.  
  2778. class NoMessageSupplied(BzrError):
  2779.  
  2780.     _fmt = "No message supplied."
  2781.  
  2782.  
  2783. class NoMailAddressSpecified(BzrError):
  2784.  
  2785.     _fmt = "No mail-to address (--mail-to) or output (-o) specified."
  2786.  
  2787.  
  2788. class MailClientNotFound(BzrError):
  2789.  
  2790.     _fmt = "Unable to find mail client with the following names:"\
  2791.         " %(mail_command_list_string)s"
  2792.  
  2793.     def __init__(self, mail_command_list):
  2794.         mail_command_list_string = ', '.join(mail_command_list)
  2795.         BzrError.__init__(self, mail_command_list=mail_command_list,
  2796.                           mail_command_list_string=mail_command_list_string)
  2797.  
  2798. class SMTPConnectionRefused(SMTPError):
  2799.  
  2800.     _fmt = "SMTP connection to %(host)s refused"
  2801.  
  2802.     def __init__(self, error, host):
  2803.         self.error = error
  2804.         self.host = host
  2805.  
  2806.  
  2807. class DefaultSMTPConnectionRefused(SMTPConnectionRefused):
  2808.  
  2809.     _fmt = "Please specify smtp_server.  No server at default %(host)s."
  2810.  
  2811.  
  2812. class BzrDirError(BzrError):
  2813.  
  2814.     def __init__(self, bzrdir):
  2815.         import bzrlib.urlutils as urlutils
  2816.         display_url = urlutils.unescape_for_display(bzrdir.user_url,
  2817.                                                     'ascii')
  2818.         BzrError.__init__(self, bzrdir=bzrdir, display_url=display_url)
  2819.  
  2820.  
  2821. class UnsyncedBranches(BzrDirError):
  2822.  
  2823.     _fmt = ("'%(display_url)s' is not in sync with %(target_url)s.  See"
  2824.             " bzr help sync-for-reconfigure.")
  2825.  
  2826.     def __init__(self, bzrdir, target_branch):
  2827.         BzrDirError.__init__(self, bzrdir)
  2828.         import bzrlib.urlutils as urlutils
  2829.         self.target_url = urlutils.unescape_for_display(target_branch.base,
  2830.                                                         'ascii')
  2831.  
  2832.  
  2833. class AlreadyBranch(BzrDirError):
  2834.  
  2835.     _fmt = "'%(display_url)s' is already a branch."
  2836.  
  2837.  
  2838. class AlreadyTree(BzrDirError):
  2839.  
  2840.     _fmt = "'%(display_url)s' is already a tree."
  2841.  
  2842.  
  2843. class AlreadyCheckout(BzrDirError):
  2844.  
  2845.     _fmt = "'%(display_url)s' is already a checkout."
  2846.  
  2847.  
  2848. class AlreadyLightweightCheckout(BzrDirError):
  2849.  
  2850.     _fmt = "'%(display_url)s' is already a lightweight checkout."
  2851.  
  2852.  
  2853. class AlreadyUsingShared(BzrDirError):
  2854.  
  2855.     _fmt = "'%(display_url)s' is already using a shared repository."
  2856.  
  2857.  
  2858. class AlreadyStandalone(BzrDirError):
  2859.  
  2860.     _fmt = "'%(display_url)s' is already standalone."
  2861.  
  2862.  
  2863. class AlreadyWithTrees(BzrDirError):
  2864.  
  2865.     _fmt = ("Shared repository '%(display_url)s' already creates "
  2866.             "working trees.")
  2867.  
  2868.  
  2869. class AlreadyWithNoTrees(BzrDirError):
  2870.  
  2871.     _fmt = ("Shared repository '%(display_url)s' already doesn't create "
  2872.             "working trees.")
  2873.  
  2874.  
  2875. class ReconfigurationNotSupported(BzrDirError):
  2876.  
  2877.     _fmt = "Requested reconfiguration of '%(display_url)s' is not supported."
  2878.  
  2879.  
  2880. class NoBindLocation(BzrDirError):
  2881.  
  2882.     _fmt = "No location could be found to bind to at %(display_url)s."
  2883.  
  2884.  
  2885. class UncommittedChanges(BzrError):
  2886.  
  2887.     _fmt = ('Working tree "%(display_url)s" has uncommitted changes'
  2888.             ' (See bzr status).%(more)s')
  2889.  
  2890.     def __init__(self, tree, more=None):
  2891.         if more is None:
  2892.             more = ''
  2893.         else:
  2894.             more = ' ' + more
  2895.         import bzrlib.urlutils as urlutils
  2896.         user_url = getattr(tree, "user_url", None)
  2897.         if user_url is None:
  2898.             display_url = str(tree)
  2899.         else:
  2900.             display_url = urlutils.unescape_for_display(user_url, 'ascii')
  2901.         BzrError.__init__(self, tree=tree, display_url=display_url, more=more)
  2902.  
  2903.  
  2904. class StoringUncommittedNotSupported(BzrError):
  2905.  
  2906.     _fmt = ('Branch "%(display_url)s" does not support storing uncommitted'
  2907.             ' changes.')
  2908.  
  2909.     def __init__(self, branch):
  2910.         import bzrlib.urlutils as urlutils
  2911.         user_url = getattr(branch, "user_url", None)
  2912.         if user_url is None:
  2913.             display_url = str(branch)
  2914.         else:
  2915.             display_url = urlutils.unescape_for_display(user_url, 'ascii')
  2916.         BzrError.__init__(self, branch=branch, display_url=display_url)
  2917.  
  2918.  
  2919. class ShelvedChanges(UncommittedChanges):
  2920.  
  2921.     _fmt = ('Working tree "%(display_url)s" has shelved changes'
  2922.             ' (See bzr shelve --list).%(more)s')
  2923.  
  2924.  
  2925. class MissingTemplateVariable(BzrError):
  2926.  
  2927.     _fmt = 'Variable {%(name)s} is not available.'
  2928.  
  2929.     def __init__(self, name):
  2930.         self.name = name
  2931.  
  2932.  
  2933. class NoTemplate(BzrError):
  2934.  
  2935.     _fmt = 'No template specified.'
  2936.  
  2937.  
  2938. class UnableCreateSymlink(BzrError):
  2939.  
  2940.     _fmt = 'Unable to create symlink %(path_str)son this platform'
  2941.  
  2942.     def __init__(self, path=None):
  2943.         path_str = ''
  2944.         if path:
  2945.             try:
  2946.                 path_str = repr(str(path))
  2947.             except UnicodeEncodeError:
  2948.                 path_str = repr(path)
  2949.             path_str += ' '
  2950.         self.path_str = path_str
  2951.  
  2952.  
  2953. class UnsupportedTimezoneFormat(BzrError):
  2954.  
  2955.     _fmt = ('Unsupported timezone format "%(timezone)s", '
  2956.             'options are "utc", "original", "local".')
  2957.  
  2958.     def __init__(self, timezone):
  2959.         self.timezone = timezone
  2960.  
  2961.  
  2962. class CommandAvailableInPlugin(StandardError):
  2963.  
  2964.     internal_error = False
  2965.  
  2966.     def __init__(self, cmd_name, plugin_metadata, provider):
  2967.  
  2968.         self.plugin_metadata = plugin_metadata
  2969.         self.cmd_name = cmd_name
  2970.         self.provider = provider
  2971.  
  2972.     def __str__(self):
  2973.  
  2974.         _fmt = ('"%s" is not a standard bzr command. \n'
  2975.                 'However, the following official plugin provides this command: %s\n'
  2976.                 'You can install it by going to: %s'
  2977.                 % (self.cmd_name, self.plugin_metadata['name'],
  2978.                     self.plugin_metadata['url']))
  2979.  
  2980.         return _fmt
  2981.  
  2982.  
  2983. class NoPluginAvailable(BzrError):
  2984.     pass
  2985.  
  2986.  
  2987. class UnableEncodePath(BzrError):
  2988.  
  2989.     _fmt = ('Unable to encode %(kind)s path %(path)r in '
  2990.             'user encoding %(user_encoding)s')
  2991.  
  2992.     def __init__(self, path, kind):
  2993.         from bzrlib.osutils import get_user_encoding
  2994.         self.path = path
  2995.         self.kind = kind
  2996.         self.user_encoding = get_user_encoding()
  2997.  
  2998.  
  2999. class NoSuchConfig(BzrError):
  3000.  
  3001.     _fmt = ('The "%(config_id)s" configuration does not exist.')
  3002.  
  3003.     def __init__(self, config_id):
  3004.         BzrError.__init__(self, config_id=config_id)
  3005.  
  3006.  
  3007. class NoSuchConfigOption(BzrError):
  3008.  
  3009.     _fmt = ('The "%(option_name)s" configuration option does not exist.')
  3010.  
  3011.     def __init__(self, option_name):
  3012.         BzrError.__init__(self, option_name=option_name)
  3013.  
  3014.  
  3015. class NoSuchAlias(BzrError):
  3016.  
  3017.     _fmt = ('The alias "%(alias_name)s" does not exist.')
  3018.  
  3019.     def __init__(self, alias_name):
  3020.         BzrError.__init__(self, alias_name=alias_name)
  3021.  
  3022.  
  3023. class DirectoryLookupFailure(BzrError):
  3024.     """Base type for lookup errors."""
  3025.  
  3026.     pass
  3027.  
  3028.  
  3029. class InvalidLocationAlias(DirectoryLookupFailure):
  3030.  
  3031.     _fmt = '"%(alias_name)s" is not a valid location alias.'
  3032.  
  3033.     def __init__(self, alias_name):
  3034.         DirectoryLookupFailure.__init__(self, alias_name=alias_name)
  3035.  
  3036.  
  3037. class UnsetLocationAlias(DirectoryLookupFailure):
  3038.  
  3039.     _fmt = 'No %(alias_name)s location assigned.'
  3040.  
  3041.     def __init__(self, alias_name):
  3042.         DirectoryLookupFailure.__init__(self, alias_name=alias_name[1:])
  3043.  
  3044.  
  3045. class CannotBindAddress(BzrError):
  3046.  
  3047.     _fmt = 'Cannot bind address "%(host)s:%(port)i": %(orig_error)s.'
  3048.  
  3049.     def __init__(self, host, port, orig_error):
  3050.         # nb: in python2.4 socket.error doesn't have a useful repr
  3051.         BzrError.__init__(self, host=host, port=port,
  3052.             orig_error=repr(orig_error.args))
  3053.  
  3054.  
  3055. class UnknownRules(BzrError):
  3056.  
  3057.     _fmt = ('Unknown rules detected: %(unknowns_str)s.')
  3058.  
  3059.     def __init__(self, unknowns):
  3060.         BzrError.__init__(self, unknowns_str=", ".join(unknowns))
  3061.  
  3062.  
  3063. class TipChangeRejected(BzrError):
  3064.     """A pre_change_branch_tip hook function may raise this to cleanly and
  3065.    explicitly abort a change to a branch tip.
  3066.    """
  3067.  
  3068.     _fmt = u"Tip change rejected: %(msg)s"
  3069.  
  3070.     def __init__(self, msg):
  3071.         self.msg = msg
  3072.  
  3073.  
  3074. class ShelfCorrupt(BzrError):
  3075.  
  3076.     _fmt = "Shelf corrupt."
  3077.  
  3078.  
  3079. class DecompressCorruption(BzrError):
  3080.  
  3081.     _fmt = "Corruption while decompressing repository file%(orig_error)s"
  3082.  
  3083.     def __init__(self, orig_error=None):
  3084.         if orig_error is not None:
  3085.             self.orig_error = ", %s" % (orig_error,)
  3086.         else:
  3087.             self.orig_error = ""
  3088.         BzrError.__init__(self)
  3089.  
  3090.  
  3091. class NoSuchShelfId(BzrError):
  3092.  
  3093.     _fmt = 'No changes are shelved with id "%(shelf_id)d".'
  3094.  
  3095.     def __init__(self, shelf_id):
  3096.         BzrError.__init__(self, shelf_id=shelf_id)
  3097.  
  3098.  
  3099. class InvalidShelfId(BzrError):
  3100.  
  3101.     _fmt = '"%(invalid_id)s" is not a valid shelf id, try a number instead.'
  3102.  
  3103.     def __init__(self, invalid_id):
  3104.         BzrError.__init__(self, invalid_id=invalid_id)
  3105.  
  3106.  
  3107. class JailBreak(BzrError):
  3108.  
  3109.     _fmt = "An attempt to access a url outside the server jail was made: '%(url)s'."
  3110.  
  3111.     def __init__(self, url):
  3112.         BzrError.__init__(self, url=url)
  3113.  
  3114.  
  3115. class UserAbort(BzrError):
  3116.  
  3117.     _fmt = 'The user aborted the operation.'
  3118.  
  3119.  
  3120. class MustHaveWorkingTree(BzrError):
  3121.  
  3122.     _fmt = ("Branching '%(url)s'(%(format)s) must create a working tree.")
  3123.  
  3124.     def __init__(self, format, url):
  3125.         BzrError.__init__(self, format=format, url=url)
  3126.  
  3127.  
  3128. class NoSuchView(BzrError):
  3129.     """A view does not exist.
  3130.    """
  3131.  
  3132.     _fmt = u"No such view: %(view_name)s."
  3133.  
  3134.     def __init__(self, view_name):
  3135.         self.view_name = view_name
  3136.  
  3137.  
  3138. class ViewsNotSupported(BzrError):
  3139.     """Views are not supported by a tree format.
  3140.    """
  3141.  
  3142.     _fmt = ("Views are not supported by %(tree)s;"
  3143.             " use 'bzr upgrade' to change your tree to a later format.")
  3144.  
  3145.     def __init__(self, tree):
  3146.         self.tree = tree
  3147.  
  3148.  
  3149. class FileOutsideView(BzrError):
  3150.  
  3151.     _fmt = ('Specified file "%(file_name)s" is outside the current view: '
  3152.             '%(view_str)s')
  3153.  
  3154.     def __init__(self, file_name, view_files):
  3155.         self.file_name = file_name
  3156.         self.view_str = ", ".join(view_files)
  3157.  
  3158.  
  3159. class UnresumableWriteGroup(BzrError):
  3160.  
  3161.     _fmt = ("Repository %(repository)s cannot resume write group "
  3162.             "%(write_groups)r: %(reason)s")
  3163.  
  3164.     internal_error = True
  3165.  
  3166.     def __init__(self, repository, write_groups, reason):
  3167.         self.repository = repository
  3168.         self.write_groups = write_groups
  3169.         self.reason = reason
  3170.  
  3171.  
  3172. class UnsuspendableWriteGroup(BzrError):
  3173.  
  3174.     _fmt = ("Repository %(repository)s cannot suspend a write group.")
  3175.  
  3176.     internal_error = True
  3177.  
  3178.     def __init__(self, repository):
  3179.         self.repository = repository
  3180.  
  3181.  
  3182. class LossyPushToSameVCS(BzrError):
  3183.  
  3184.     _fmt = ("Lossy push not possible between %(source_branch)r and "
  3185.             "%(target_branch)r that are in the same VCS.")
  3186.  
  3187.     internal_error = True
  3188.  
  3189.     def __init__(self, source_branch, target_branch):
  3190.         self.source_branch = source_branch
  3191.         self.target_branch = target_branch
  3192.  
  3193.  
  3194. class NoRoundtrippingSupport(BzrError):
  3195.  
  3196.     _fmt = ("Roundtripping is not supported between %(source_branch)r and "
  3197.             "%(target_branch)r.")
  3198.  
  3199.     internal_error = True
  3200.  
  3201.     def __init__(self, source_branch, target_branch):
  3202.         self.source_branch = source_branch
  3203.         self.target_branch = target_branch
  3204.  
  3205.  
  3206. class FileTimestampUnavailable(BzrError):
  3207.  
  3208.     _fmt = "The filestamp for %(path)s is not available."
  3209.  
  3210.     internal_error = True
  3211.  
  3212.     def __init__(self, path):
  3213.         self.path = path
  3214.  
  3215.  
  3216. class NoColocatedBranchSupport(BzrError):
  3217.  
  3218.     _fmt = ("%(bzrdir)r does not support co-located branches.")
  3219.  
  3220.     def __init__(self, bzrdir):
  3221.         self.bzrdir = bzrdir
  3222.  
  3223.  
  3224. class NoWhoami(BzrError):
  3225.  
  3226.     _fmt = ('Unable to determine your name.\n'
  3227.         "Please, set your name with the 'whoami' command.\n"
  3228.         'E.g. bzr whoami "Your Name <name@example.com>"')
  3229.  
  3230.  
  3231. class InvalidPattern(BzrError):
  3232.  
  3233.     _fmt = ('Invalid pattern(s) found. %(msg)s')
  3234.  
  3235.     def __init__(self, msg):
  3236.         self.msg = msg
  3237.  
  3238.  
  3239. class RecursiveBind(BzrError):
  3240.  
  3241.     _fmt = ('Branch "%(branch_url)s" appears to be bound to itself. '
  3242.         'Please use `bzr unbind` to fix.')
  3243.  
  3244.     def __init__(self, branch_url):
  3245.         self.branch_url = branch_url
  3246.  
  3247.  
  3248. # FIXME: I would prefer to define the config related exception classes in
  3249. # config.py but the lazy import mechanism proscribes this -- vila 20101222
  3250. class OptionExpansionLoop(BzrError):
  3251.  
  3252.     _fmt = 'Loop involving %(refs)r while expanding "%(string)s".'
  3253.  
  3254.     def __init__(self, string, refs):
  3255.         self.string = string
  3256.         self.refs = '->'.join(refs)
  3257.  
  3258.  
  3259. class ExpandingUnknownOption(BzrError):
  3260.  
  3261.     _fmt = 'Option %(name)s is not defined while expanding "%(string)s".'
  3262.  
  3263.     def __init__(self, name, string):
  3264.         self.name = name
  3265.         self.string = string
  3266.  
  3267.  
  3268. class NoCompatibleInter(BzrError):
  3269.  
  3270.     _fmt = ('No compatible object available for operations from %(source)r '
  3271.             'to %(target)r.')
  3272.  
  3273.     def __init__(self, source, target):
  3274.         self.source = source
  3275.         self.target = target
  3276.  
  3277.  
  3278. class HpssVfsRequestNotAllowed(BzrError):
  3279.  
  3280.     _fmt = ("VFS requests over the smart server are not allowed. Encountered: "
  3281.             "%(method)s, %(arguments)s.")
  3282.  
  3283.     def __init__(self, method, arguments):
  3284.         self.method = method
  3285.         self.arguments = arguments
  3286.  
  3287.  
  3288. class UnsupportedKindChange(BzrError):
  3289.  
  3290.     _fmt = ("Kind change from %(from_kind)s to %(to_kind)s for "
  3291.             "%(path)s not supported by format %(format)r")
  3292.  
  3293.     def __init__(self, path, from_kind, to_kind, format):
  3294.         self.path = path
  3295.         self.from_kind = from_kind
  3296.         self.to_kind = to_kind
  3297.         self.format = format
  3298.  
  3299.  
  3300. class MissingFeature(BzrError):
  3301.  
  3302.     _fmt = ("Missing feature %(feature)s not provided by this "
  3303.             "version of Bazaar or any plugin.")
  3304.  
  3305.     def __init__(self, feature):
  3306.         self.feature = feature
  3307.  
  3308.  
  3309. class PatchSyntax(BzrError):
  3310.     """Base class for patch syntax errors."""
  3311.  
  3312.  
  3313. class BinaryFiles(BzrError):
  3314.  
  3315.     _fmt = 'Binary files section encountered.'
  3316.  
  3317.     def __init__(self, orig_name, mod_name):
  3318.         self.orig_name = orig_name
  3319.         self.mod_name = mod_name
  3320.  
  3321.  
  3322. class MalformedPatchHeader(PatchSyntax):
  3323.  
  3324.     _fmt = "Malformed patch header.  %(desc)s\n%(line)r"
  3325.  
  3326.     def __init__(self, desc, line):
  3327.         self.desc = desc
  3328.         self.line = line
  3329.  
  3330.  
  3331. class MalformedHunkHeader(PatchSyntax):
  3332.  
  3333.     _fmt = "Malformed hunk header.  %(desc)s\n%(line)r"
  3334.  
  3335.     def __init__(self, desc, line):
  3336.         self.desc = desc
  3337.         self.line = line
  3338.  
  3339.  
  3340. class MalformedLine(PatchSyntax):
  3341.  
  3342.     _fmt = "Malformed line.  %(desc)s\n%(line)r"
  3343.  
  3344.     def __init__(self, desc, line):
  3345.         self.desc = desc
  3346.         self.line = line
  3347.  
  3348.  
  3349. class PatchConflict(BzrError):
  3350.  
  3351.     _fmt = ('Text contents mismatch at line %(line_no)d.  Original has '
  3352.             '"%(orig_line)s", but patch says it should be "%(patch_line)s"')
  3353.  
  3354.     def __init__(self, line_no, orig_line, patch_line):
  3355.         self.line_no = line_no
  3356.         self.orig_line = orig_line.rstrip('\n')
  3357.         self.patch_line = patch_line.rstrip('\n')
  3358.  
  3359.  
  3360. class FeatureAlreadyRegistered(BzrError):
  3361.  
  3362.     _fmt = 'The feature %(feature)s has already been registered.'
  3363.  
  3364.     def __init__(self, feature):
  3365.         self.feature = feature
  3366.  
  3367.  
  3368. class ChangesAlreadyStored(BzrCommandError):
  3369.  
  3370.     _fmt = ('Cannot store uncommitted changes because this branch already'
  3371.             ' stores uncommitted changes.')
Add Comment
Please, Sign In to add comment