~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/foreign.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-12-10 01:19:33 UTC
  • mfrom: (3885.1.8 fifo_cache)
  • Revision ID: pqm@pqm.ubuntu.com-20081210011933-axdrxiq306imj2ty
(jam) Add a FIFOCache class, to allow max-size with less overhead,
        though lower hit rate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 
 
17
 
 
18
16
"""Foreign branch utilities."""
19
17
 
20
 
 
21
18
from bzrlib.branch import Branch
22
19
from bzrlib.commands import Command, Option
23
 
from bzrlib.repository import Repository
24
20
from bzrlib.revision import Revision
25
21
from bzrlib.lazy_import import lazy_import
26
22
lazy_import(globals(), """
27
23
from bzrlib import (
28
24
    errors,
29
 
    osutils,
30
25
    registry,
31
26
    )
32
27
""")
179
174
 
180
175
 
181
176
foreign_vcs_registry = ForeignVcsRegistry()
182
 
 
183
 
 
184
 
class ForeignRepository(Repository):
185
 
    """A Repository that exists in a foreign version control system.
186
 
 
187
 
    The data in this repository can not be represented natively using 
188
 
    Bazaars internal datastructures, but have to converted using a VcsMapping.
189
 
    """
190
 
 
191
 
    # This repository's native version control system
192
 
    vcs = None
193
 
 
194
 
    def has_foreign_revision(self, foreign_revid):
195
 
        """Check whether the specified foreign revision is present.
196
 
 
197
 
        :param foreign_revid: A foreign revision id, in the format used 
198
 
                              by this Repository's VCS.
199
 
        """
200
 
        raise NotImplementedError(self.has_foreign_revision)
201
 
 
202
 
    def lookup_bzr_revision_id(self, revid):
203
 
        """Lookup a mapped or roundtripped revision by revision id.
204
 
 
205
 
        :param revid: Bazaar revision id
206
 
        :return: Tuple with foreign revision id and mapping.
207
 
        """
208
 
        raise NotImplementedError(self.lookup_revision_id)
209
 
 
210
 
    def all_revision_ids(self, mapping=None):
211
 
        """See Repository.all_revision_ids()."""
212
 
        raise NotImplementedError(self.all_revision_ids)
213
 
 
214
 
    def get_default_mapping(self):
215
 
        """Get the default mapping for this repository."""
216
 
        raise NotImplementedError(self.get_default_mapping)
217
 
 
218
 
    def get_inventory_xml(self, revision_id):
219
 
        """See Repository.get_inventory_xml()."""
220
 
        return self.serialise_inventory(self.get_inventory(revision_id))
221
 
 
222
 
    def get_inventory_sha1(self, revision_id):
223
 
        """Get the sha1 for the XML representation of an inventory.
224
 
 
225
 
        :param revision_id: Revision id of the inventory for which to return 
226
 
         the SHA1.
227
 
        :return: XML string
228
 
        """
229
 
 
230
 
        return osutils.sha_string(self.get_inventory_xml(revision_id))
231
 
 
232
 
    def get_revision_xml(self, revision_id):
233
 
        """Return the XML representation of a revision.
234
 
 
235
 
        :param revision_id: Revision for which to return the XML.
236
 
        :return: XML string
237
 
        """
238
 
        return self._serializer.write_revision_to_string(
239
 
            self.get_revision(revision_id))
240
 
 
241