-
Notifications
You must be signed in to change notification settings - Fork 1
/
commands.py
384 lines (331 loc) · 14.9 KB
/
commands.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
# Copyright (C) 2005-2009 Jelmer Vernooij <jelmer@samba.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Subversion-specific Bazaar command line subcommands."""
from __future__ import absolute_import
from breezy import (
controldir,
)
from breezy.commands import (
Command,
)
from breezy.option import (
RegistryOption,
Option,
)
from six import (
text_type,
)
from . import gettext
def get_layout(layoutname):
"""Parse layout name and return a layout.
:param layout: Name of the layout to retrieve.
"""
if isinstance(layoutname, text_type):
layoutname = layoutname.encode("ascii")
from .layout import layout_registry
from breezy.errors import BzrCommandError
try:
return layout_registry.get(layoutname)()
except KeyError:
raise BzrCommandError(
gettext('No such repository layout %r') % layoutname)
class cmd_svn_import(Command):
"""Convert a Subversion repository to a Bazaar repository.
To save disk space, only branches will be created by default
(no working trees). To create a tree for a branch, run "bzr co" in
it.
This command is resumable; any previously imported revisions will be
skipped.
"""
_see_also = ['formats']
takes_args = ['from_location', 'to_location?']
takes_options = [
RegistryOption(
'format',
help='Specify a format for this repository. See'
' "bzr help formats" for details. Must support rich-root.',
lazy_registry=('breezy.controldir', 'format_registry'),
converter=controldir.format_registry.make_controldir,
value_switches=False, title='Repository format'),
Option('trees', help='Create working trees.'),
Option('standalone', help='Create standalone branches.'),
Option('all', help='Convert all revisions, even those not in '
'current branch history.'),
Option('layout',
type=get_layout,
help='Repository layout (none, trunk, etc). Default: auto.'),
Option('keep', help="Don't delete branches removed in Subversion."),
Option('restore',
help="Restore branches that were removed but have "
"not been changed since the last import."),
Option('prefix', type=str, hidden=True,
help='Only consider branches of which path starts with '
'prefix.'),
Option('until', type=int,
help="Only import revisions up to specified Subversion revnum"),
Option('colocated', help='Create colocated branches.'),
]
def run(self, from_location, to_location=None, format=None, trees=False,
standalone=False, layout=None, all=False, prefix=None, keep=False,
restore=False, until=None, colocated=False):
from breezy import (
osutils,
trace,
urlutils,
)
from breezy.controldir import ControlDir
from breezy.errors import (
BzrCommandError,
NoRepositoryPresent,
)
from . import gettext
from .convert import convert_repository
from .remote import SvnRemoteAccess
from .repository import SvnRepository
from .workingtree import SvnCheckout
import os
from subvertpy import NODE_NONE
if to_location is None:
to_location = os.path.basename(from_location.rstrip("/\\"))
if all:
# All implies shared repository
# (otherwise there is no repository to store revisions in)
standalone = False
if os.path.isfile(from_location):
from .convert import load_dumpfile
import tempfile
tmp_repos = tempfile.mkdtemp(prefix='bzr-svn-dump-')
load_dumpfile(from_location, tmp_repos)
from_location = tmp_repos
else:
tmp_repos = None
from_dir = ControlDir.open(from_location)
if not (isinstance(from_dir, SvnRemoteAccess) or
isinstance(from_dir, SvnCheckout)):
raise BzrCommandError(gettext(
"Source repository is not a Subversion repository."))
try:
from_repos = from_dir.open_repository()
except NoRepositoryPresent:
if prefix is not None:
raise BzrCommandError(
gettext("Path inside repository specified "
"and --prefix specified"))
from_repos = from_dir.find_repository(_ignore_branch_path=True)
assert from_dir.root_transport.base.startswith(from_repos.base)
prefix = from_dir.root_transport.base[
len(from_repos.base):].strip("/")
prefix = prefix.encode("utf-8")
if not isinstance(from_repos, SvnRepository):
raise BzrCommandError(
gettext("Not a Subversion repository: %s") % from_location)
if until is None:
to_revnum = from_repos.get_latest_revnum()
else:
to_revnum = min(until, from_repos.get_latest_revnum())
with from_repos.lock_read():
if prefix is not None:
if layout is None:
overall_layout = from_repos.get_guessed_layout()
else:
overall_layout = layout
prefix = prefix.strip("/") + "/"
if overall_layout.is_branch(prefix):
raise BzrCommandError(
gettext("%s appears to contain a branch. "
"For individual branches, use 'bzr branch'.") %
from_location)
# FIXME: Hint about is_tag()
elif overall_layout.is_branch_parent(prefix):
self.outf.write(
gettext("Importing branches with prefix %s\n") %
("/" + urlutils.unescape_for_display(prefix,
self.outf.encoding)))
else:
raise BzrCommandError(
gettext("The specified path is inside a branch. "
"Specify a different URL or a different "
"repository layout (see also "
"'bzr help svn-layout')."))
if (prefix is not None and
from_repos.transport.check_path(prefix, to_revnum)
== NODE_NONE):
raise BzrCommandError("Prefix %s does not exist" % prefix)
def filter_branch(branch):
if (prefix is not None and
not branch.get_branch_path().startswith(prefix)):
return False
return True
trace.note(gettext("Using repository layout: %s"),
layout or from_repos.get_layout())
convert_repository(
from_repos, to_location, layout,
not standalone, trees, all, format=format,
filter_branch=filter_branch, keep=keep,
incremental=not restore, to_revnum=to_revnum, prefix=prefix,
colocated=colocated, remember_parent=(tmp_repos is None))
if tmp_repos is not None:
osutils.rmtree(tmp_repos)
if not trees:
trace.note(
gettext("Use 'bzr checkout' to create a working tree in "
"the newly created branches."))
class cmd_svn_layout(Command):
"""Print the repository layout in use for a Subversion repository.
This will print the name of the repository layout. See
"bzr help svn-layout" for more information about repository
layouts.
"""
takes_args = ["path?"]
def run(self, path="."):
from breezy import (
errors,
urlutils,
)
from breezy.branch import Branch
from . import gettext
from breezy.repository import Repository
from . import errors as bzrsvn_errors
try:
branch, _ = Branch.open_containing(path)
repos = branch.repository
except (errors.NotBranchError, errors.NoColocatedBranchSupport):
repos = Repository.open(path)
branch = None
if getattr(repos, "uuid", None) is None:
raise errors.BzrCommandError(
gettext("Not a Subversion branch or repository."))
layout = repos.get_layout()
self.outf.write(gettext("Repository root: %s\n") % repos.base)
self.outf.write(gettext("Layout: %s\n") % str(layout))
if branch is not None:
self.outf.write(
gettext("Branch path: %s\n") % branch.get_branch_path())
if branch.project:
self.outf.write(gettext("Project: %s\n") % branch.project)
try:
test_tag_path = layout.get_tag_path("test", branch.project)
except bzrsvn_errors.NoLayoutTagSetSupport:
self.outf.write(gettext("No tag support\n"))
else:
if test_tag_path:
self.outf.write(
gettext("Tag container directory: %s\n") %
urlutils.dirname(test_tag_path))
try:
test_branch_path = layout.get_branch_path(
"test", branch.project)
except bzrsvn_errors.NoCustomBranchPaths:
self.outf.write(gettext("No custom branch support\n"))
else:
if test_branch_path:
self.outf.write(
gettext("Branch container directory: %s\n") %
urlutils.dirname(test_branch_path))
self.outf.write(
gettext("Push merged revisions: %s\n") %
branch.get_push_merged_revisions())
class cmd_svn_branches(Command):
"""Print the branches and tags in a repository.
"""
takes_args = ["location"]
takes_options = [
Option('layout', type=get_layout,
help='Repository layout (none, trunk, etc). '
'Default: auto.')]
hidden = True
def run(self, location, layout=None):
from breezy import errors
from breezy.controldir import ControlDir
from . import gettext
from .remote import SvnRemoteAccess
from .workingtree import SvnCheckout
dir = ControlDir.open(location)
if not (isinstance(dir, SvnRemoteAccess) or
isinstance(dir, SvnCheckout)):
raise errors.BzrCommandError(
gettext("Source repository is not a Subversion repository."))
try:
repository = dir.open_repository()
except errors.NoRepositoryPresent:
repository = dir.find_repository(_ignore_branch_path=True)
assert dir.root_transport.base.startswith(repository.base)
prefix = dir.root_transport.base[len(repository.base):].strip("/")
prefix = prefix.encode("utf-8")
else:
prefix = None
revnum = repository.get_latest_revnum()
if layout is None:
layout = repository.get_guessed_layout()
self.outf.write(gettext("Branches:\n"))
for (project, path, name, has_props, revnum) in layout.get_branches(
repository, revnum, prefix):
self.outf.write("%s (%s)\n" % (path, name))
self.outf.write(gettext("Tags:\n"))
for (project, path, name, has_props, revnum) in layout.get_tags(
repository, revnum, prefix):
self.outf.write("%s (%s)\n" % (path, name))
class cmd_fix_svn_ancestry(Command):
"""Fix the SVN ancestry of a repository.
This will fix revisions that were imported from Subversion with older
versions of bzr-svn but have some incorrect metadata.
This command should be used in the bzr branch with the broken
imported revisions, and takes the location of the SVN repository
to fetch the fixed revisions from as an argument.
"""
takes_args = ['svn_repository']
takes_options = [
'directory',
Option('no-reconcile', help="Don't reconcile the new repository.")]
def run(self, svn_repository, directory=".", no_reconcile=False):
from breezy.controldir import ControlDir
from breezy.repository import InterRepository, Repository
from breezy import trace
correct_dir = ControlDir.open_containing(svn_repository)[0]
correct_repo = correct_dir.find_repository()
repo_to_fix = Repository.open(directory)
revids = repo_to_fix.all_revision_ids()
present_revisions = correct_repo.has_revisions(revids)
dir_to_fix = repo_to_fix.controldir
old_repo_format = repo_to_fix._format
del repo_to_fix
trace.note("Renaming existing repository to repository.backup.")
dir_to_fix.control_transport.rename('repository', 'repository.backup')
backup_transport = dir_to_fix.control_transport.clone(
'repository.backup')
old_repo = old_repo_format.open(
dir_to_fix, _found=True, _override_transport=backup_transport)
new_repo = dir_to_fix.create_repository(
shared=old_repo.is_shared())
working_trees = old_repo.make_working_trees()
if working_trees is not None:
new_repo.set_make_working_trees(working_trees)
interrepo = InterRepository.get(correct_repo, new_repo)
revisionfinder = interrepo.get_revision_finder(True)
trace.note("Finding revisions to fetch from SVN")
for revid in present_revisions:
foreign_revid, mapping = correct_repo.lookup_bzr_revision_id(
revid)
revisionfinder.find_until(
foreign_revid, mapping, find_ghosts=False,
exclude_non_mainline=False)
trace.note("Fetching correct SVN revisions")
interrepo.fetch(needed=revisionfinder.get_missing())
trace.note("Fetching other revisions")
new_repo.fetch(old_repo)
if not no_reconcile:
from breezy.reconcile import reconcile
trace.note("Reconciling new repository.")
reconcile(dir_to_fix)
trace.note('Removing backup')
dir_to_fix.control_transport.delete_tree('repository.backup')