/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/foreign.py

  • Committer: Jelmer Vernooij
  • Date: 2017-11-11 12:51:45 UTC
  • mto: This revision was merged to the branch mainline in revision 6804.
  • Revision ID: jelmer@jelmer.uk-20171111125145-zw639zp14j8b2cin
Bunch of developer docs changes:

 * Move plans to plans/
 * Move performance analysis & planning docs to plans/performance/
 * Change Bazaar references to Breezy
 * Add branding guidelines

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008-2012 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
"""Foreign branch utilities."""
 
18
 
 
19
from __future__ import absolute_import
 
20
 
 
21
 
 
22
from .branch import (
 
23
    Branch,
 
24
    )
 
25
from .commands import Command, Option
 
26
from .repository import Repository
 
27
from .revision import Revision
 
28
from .sixish import (
 
29
    text_type,
 
30
    )
 
31
from .lazy_import import lazy_import
 
32
lazy_import(globals(), """
 
33
from breezy import (
 
34
    errors,
 
35
    registry,
 
36
    transform,
 
37
    )
 
38
from breezy.i18n import gettext
 
39
""")
 
40
 
 
41
class VcsMapping(object):
 
42
    """Describes the mapping between the semantics of Bazaar and a foreign VCS.
 
43
 
 
44
    """
 
45
    # Whether this is an experimental mapping that is still open to changes.
 
46
    experimental = False
 
47
 
 
48
    # Whether this mapping supports exporting and importing all bzr semantics.
 
49
    roundtripping = False
 
50
 
 
51
    # Prefix used when importing revisions native to the foreign VCS (as
 
52
    # opposed to roundtripping bzr-native revisions) using this mapping.
 
53
    revid_prefix = None
 
54
 
 
55
    def __init__(self, vcs):
 
56
        """Create a new VcsMapping.
 
57
 
 
58
        :param vcs: VCS that this mapping maps to Bazaar
 
59
        """
 
60
        self.vcs = vcs
 
61
 
 
62
    def revision_id_bzr_to_foreign(self, bzr_revid):
 
63
        """Parse a bzr revision id and convert it to a foreign revid.
 
64
 
 
65
        :param bzr_revid: The bzr revision id (a string).
 
66
        :return: A foreign revision id, can be any sort of object.
 
67
        """
 
68
        raise NotImplementedError(self.revision_id_bzr_to_foreign)
 
69
 
 
70
    def revision_id_foreign_to_bzr(self, foreign_revid):
 
71
        """Parse a foreign revision id and convert it to a bzr revid.
 
72
 
 
73
        :param foreign_revid: Foreign revision id, can be any sort of object.
 
74
        :return: A bzr revision id.
 
75
        """
 
76
        raise NotImplementedError(self.revision_id_foreign_to_bzr)
 
77
 
 
78
 
 
79
class VcsMappingRegistry(registry.Registry):
 
80
    """Registry for Bazaar<->foreign VCS mappings.
 
81
 
 
82
    There should be one instance of this registry for every foreign VCS.
 
83
    """
 
84
 
 
85
    def register(self, key, factory, help):
 
86
        """Register a mapping between Bazaar and foreign VCS semantics.
 
87
 
 
88
        The factory must be a callable that takes one parameter: the key.
 
89
        It must produce an instance of VcsMapping when called.
 
90
        """
 
91
        if ":" in key:
 
92
            raise ValueError("mapping name can not contain colon (:)")
 
93
        registry.Registry.register(self, key, factory, help)
 
94
 
 
95
    def set_default(self, key):
 
96
        """Set the 'default' key to be a clone of the supplied key.
 
97
 
 
98
        This method must be called once and only once.
 
99
        """
 
100
        self._set_default_key(key)
 
101
 
 
102
    def get_default(self):
 
103
        """Convenience function for obtaining the default mapping to use."""
 
104
        return self.get(self._get_default_key())
 
105
 
 
106
    def revision_id_bzr_to_foreign(self, revid):
 
107
        """Convert a bzr revision id to a foreign revid."""
 
108
        raise NotImplementedError(self.revision_id_bzr_to_foreign)
 
109
 
 
110
 
 
111
class ForeignRevision(Revision):
 
112
    """A Revision from a Foreign repository. Remembers
 
113
    information about foreign revision id and mapping.
 
114
 
 
115
    """
 
116
 
 
117
    def __init__(self, foreign_revid, mapping, *args, **kwargs):
 
118
        if not "inventory_sha1" in kwargs:
 
119
            kwargs["inventory_sha1"] = ""
 
120
        super(ForeignRevision, self).__init__(*args, **kwargs)
 
121
        self.foreign_revid = foreign_revid
 
122
        self.mapping = mapping
 
123
 
 
124
 
 
125
class ForeignVcs(object):
 
126
    """A foreign version control system."""
 
127
 
 
128
    branch_format = None
 
129
 
 
130
    repository_format = None
 
131
 
 
132
    def __init__(self, mapping_registry, abbreviation=None):
 
133
        """Create a new foreign vcs instance.
 
134
 
 
135
        :param mapping_registry: Registry with mappings for this VCS.
 
136
        :param abbreviation: Optional abbreviation ('bzr', 'svn', 'git', etc)
 
137
        """
 
138
        self.abbreviation = abbreviation
 
139
        self.mapping_registry = mapping_registry
 
140
 
 
141
    def show_foreign_revid(self, foreign_revid):
 
142
        """Prepare a foreign revision id for formatting using bzr log.
 
143
 
 
144
        :param foreign_revid: Foreign revision id.
 
145
        :return: Dictionary mapping string keys to string values.
 
146
        """
 
147
        return { }
 
148
 
 
149
    def serialize_foreign_revid(self, foreign_revid):
 
150
        """Serialize a foreign revision id for this VCS.
 
151
 
 
152
        :param foreign_revid: Foreign revision id
 
153
        :return: Bytestring with serialized revid, will not contain any 
 
154
            newlines.
 
155
        """
 
156
        raise NotImplementedError(self.serialize_foreign_revid)
 
157
 
 
158
 
 
159
class ForeignVcsRegistry(registry.Registry):
 
160
    """Registry for Foreign VCSes.
 
161
 
 
162
    There should be one entry per foreign VCS. Example entries would be
 
163
    "git", "svn", "hg", "darcs", etc.
 
164
 
 
165
    """
 
166
 
 
167
    def register(self, key, foreign_vcs, help):
 
168
        """Register a foreign VCS.
 
169
 
 
170
        :param key: Prefix of the foreign VCS in revision ids
 
171
        :param foreign_vcs: ForeignVCS instance
 
172
        :param help: Description of the foreign VCS
 
173
        """
 
174
        if ":" in key or "-" in key:
 
175
            raise ValueError("vcs name can not contain : or -")
 
176
        registry.Registry.register(self, key, foreign_vcs, help)
 
177
 
 
178
    def parse_revision_id(self, revid):
 
179
        """Parse a bzr revision and return the matching mapping and foreign
 
180
        revid.
 
181
 
 
182
        :param revid: The bzr revision id
 
183
        :return: tuple with foreign revid and vcs mapping
 
184
        """
 
185
        if not ":" in revid or not "-" in revid:
 
186
            raise errors.InvalidRevisionId(revid, None)
 
187
        try:
 
188
            foreign_vcs = self.get(revid.split("-")[0])
 
189
        except KeyError:
 
190
            raise errors.InvalidRevisionId(revid, None)
 
191
        return foreign_vcs.mapping_registry.revision_id_bzr_to_foreign(revid)
 
192
 
 
193
 
 
194
foreign_vcs_registry = ForeignVcsRegistry()
 
195
 
 
196
 
 
197
class ForeignRepository(Repository):
 
198
    """A Repository that exists in a foreign version control system.
 
199
 
 
200
    The data in this repository can not be represented natively using
 
201
    Bazaars internal datastructures, but have to converted using a VcsMapping.
 
202
    """
 
203
 
 
204
    # This repository's native version control system
 
205
    vcs = None
 
206
 
 
207
    def has_foreign_revision(self, foreign_revid):
 
208
        """Check whether the specified foreign revision is present.
 
209
 
 
210
        :param foreign_revid: A foreign revision id, in the format used
 
211
                              by this Repository's VCS.
 
212
        """
 
213
        raise NotImplementedError(self.has_foreign_revision)
 
214
 
 
215
    def lookup_bzr_revision_id(self, revid):
 
216
        """Lookup a mapped or roundtripped revision by revision id.
 
217
 
 
218
        :param revid: Bazaar revision id
 
219
        :return: Tuple with foreign revision id and mapping.
 
220
        """
 
221
        raise NotImplementedError(self.lookup_revision_id)
 
222
 
 
223
    def all_revision_ids(self, mapping=None):
 
224
        """See Repository.all_revision_ids()."""
 
225
        raise NotImplementedError(self.all_revision_ids)
 
226
 
 
227
    def get_default_mapping(self):
 
228
        """Get the default mapping for this repository."""
 
229
        raise NotImplementedError(self.get_default_mapping)
 
230
 
 
231
 
 
232
class ForeignBranch(Branch):
 
233
    """Branch that exists in a foreign version control system."""
 
234
 
 
235
    def __init__(self, mapping):
 
236
        self.mapping = mapping
 
237
        super(ForeignBranch, self).__init__()
 
238
 
 
239
 
 
240
def update_workingtree_fileids(wt, target_tree):
 
241
    """Update the file ids in a working tree based on another tree.
 
242
 
 
243
    :param wt: Working tree in which to update file ids
 
244
    :param target_tree: Tree to retrieve new file ids from, based on path
 
245
    """
 
246
    tt = transform.TreeTransform(wt)
 
247
    try:
 
248
        for f, p, c, v, d, n, k, e in target_tree.iter_changes(wt):
 
249
            if v == (True, False):
 
250
                trans_id = tt.trans_id_tree_path(p[0])
 
251
                tt.unversion_file(trans_id)
 
252
            elif v == (False, True):
 
253
                trans_id = tt.trans_id_tree_path(p[1])
 
254
                tt.version_file(f, trans_id)
 
255
        tt.apply()
 
256
    finally:
 
257
        tt.finalize()
 
258
    if len(wt.get_parent_ids()) == 1:
 
259
        wt.set_parent_trees([(target_tree.get_revision_id(), target_tree)])
 
260
    else:
 
261
        wt.set_last_revision(target_tree.get_revision_id())
 
262
 
 
263
 
 
264
class cmd_dpush(Command):
 
265
    __doc__ = """Push into a different VCS without any custom bzr metadata.
 
266
 
 
267
    This will afterwards rebase the local branch on the remote
 
268
    branch unless the --no-rebase option is used, in which case 
 
269
    the two branches will be out of sync after the push. 
 
270
    """
 
271
    takes_args = ['location?']
 
272
    takes_options = [
 
273
        'remember',
 
274
        Option('directory',
 
275
               help='Branch to push from, '
 
276
               'rather than the one containing the working directory.',
 
277
               short_name='d',
 
278
               type=text_type,
 
279
               ),
 
280
        Option('no-rebase', help="Do not rebase after push."),
 
281
        Option('strict',
 
282
               help='Refuse to push if there are uncommitted changes in'
 
283
               ' the working tree, --no-strict disables the check.'),
 
284
        ]
 
285
 
 
286
    def run(self, location=None, remember=False, directory=None,
 
287
            no_rebase=False, strict=None):
 
288
        from breezy import urlutils
 
289
        from breezy.controldir import ControlDir
 
290
        from breezy.errors import BzrCommandError, NoWorkingTree
 
291
        from breezy.workingtree import WorkingTree
 
292
 
 
293
        if directory is None:
 
294
            directory = "."
 
295
        try:
 
296
            source_wt = WorkingTree.open_containing(directory)[0]
 
297
            source_branch = source_wt.branch
 
298
        except NoWorkingTree:
 
299
            source_branch = Branch.open(directory)
 
300
            source_wt = None
 
301
        if source_wt is not None:
 
302
            source_wt.check_changed_or_out_of_date(
 
303
                strict, 'dpush_strict',
 
304
                more_error='Use --no-strict to force the push.',
 
305
                more_warning='Uncommitted changes will not be pushed.')
 
306
        stored_loc = source_branch.get_push_location()
 
307
        if location is None:
 
308
            if stored_loc is None:
 
309
                raise BzrCommandError(gettext("No push location known or specified."))
 
310
            else:
 
311
                display_url = urlutils.unescape_for_display(stored_loc,
 
312
                        self.outf.encoding)
 
313
                self.outf.write(
 
314
                       gettext("Using saved location: %s\n") % display_url)
 
315
                location = stored_loc
 
316
 
 
317
        controldir = ControlDir.open(location)
 
318
        target_branch = controldir.open_branch()
 
319
        target_branch.lock_write()
 
320
        try:
 
321
            try:
 
322
                push_result = source_branch.push(target_branch, lossy=True)
 
323
            except errors.LossyPushToSameVCS:
 
324
                raise BzrCommandError(gettext("{0!r} and {1!r} are in the same VCS, lossy "
 
325
                    "push not necessary. Please use regular push.").format(
 
326
                    source_branch, target_branch))
 
327
            # We successfully created the target, remember it
 
328
            if source_branch.get_push_location() is None or remember:
 
329
                # FIXME: Should be done only if we succeed ? -- vila 2012-01-18
 
330
                source_branch.set_push_location(target_branch.base)
 
331
            if not no_rebase:
 
332
                old_last_revid = source_branch.last_revision()
 
333
                source_branch.pull(target_branch, overwrite=True)
 
334
                new_last_revid = source_branch.last_revision()
 
335
                if source_wt is not None and old_last_revid != new_last_revid:
 
336
                    source_wt.lock_write()
 
337
                    try:
 
338
                        target = source_wt.branch.repository.revision_tree(
 
339
                            new_last_revid)
 
340
                        update_workingtree_fileids(source_wt, target)
 
341
                    finally:
 
342
                        source_wt.unlock()
 
343
            push_result.report(self.outf)
 
344
        finally:
 
345
            target_branch.unlock()