~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/foreign.py

  • Committer: Mark Hammond
  • Date: 2008-12-28 05:21:23 UTC
  • mfrom: (3920 +trunk)
  • mto: (3932.1.1 prepare-1.11)
  • mto: This revision was merged to the branch mainline in revision 3937.
  • Revision ID: mhammond@skippinet.com.au-20081228052123-f78xs5sbdkotshwf
merge trunk

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
 
16
18
"""Foreign branch utilities."""
17
19
 
 
20
 
18
21
from bzrlib.branch import Branch
19
22
from bzrlib.commands import Command, Option
 
23
from bzrlib.repository import Repository
20
24
from bzrlib.revision import Revision
21
25
from bzrlib.lazy_import import lazy_import
22
26
lazy_import(globals(), """
23
27
from bzrlib import (
24
28
    errors,
 
29
    osutils,
25
30
    registry,
26
31
    )
27
32
""")
174
179
 
175
180
 
176
181
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