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
|
# Copyright (C) 2005 Canonical Ltd
#
# 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
"""bzr upgrade logic."""
# change upgrade from .bzr to create a '.bzr-new', then do a bait and switch.
from bzrlib.bzrdir import ConvertBzrDir4To5, ConvertBzrDir5To6, BzrDir, BzrDirFormat4, BzrDirFormat5, BzrDirFormat
import bzrlib.errors as errors
from bzrlib.transport import get_transport
import bzrlib.ui as ui
class Convert(object):
def __init__(self, url, format):
self.format = format
self.bzrdir = BzrDir.open_unsupported(url)
if self.bzrdir.root_transport.is_readonly():
raise errors.UpgradeReadonly
self.transport = self.bzrdir.root_transport
self.pb = ui.ui_factory.nested_progress_bar()
try:
self.convert()
finally:
self.pb.finished()
def convert(self):
try:
branch = self.bzrdir.open_branch()
if branch.bzrdir.root_transport.base != \
self.bzrdir.root_transport.base:
self.pb.note("This is a checkout. The branch (%s) needs to be "
"upgraded separately.",
branch.bzrdir.root_transport.base)
except errors.NotBranchError:
pass
if not self.bzrdir.needs_format_conversion(self.format):
raise errors.UpToDateFormat(self.bzrdir._format)
if not self.bzrdir.can_convert_format():
raise errors.BzrError("cannot upgrade from branch format %s" %
self.bzrdir._format)
if self.format is None:
target_format = BzrDirFormat.get_default_format()
else:
target_format = self.format
self.bzrdir.check_conversion_target(target_format)
self.pb.note('starting upgrade of %s', self.transport.base)
self._backup_control_dir()
while self.bzrdir.needs_format_conversion(self.format):
converter = self.bzrdir._format.get_converter(self.format)
self.bzrdir = converter.convert(self.bzrdir, self.pb)
self.pb.note("finished")
def _backup_control_dir(self):
self.pb.note('making backup of tree history')
self.transport.copy_tree('.bzr', '.bzr.backup')
self.pb.note('%s.bzr has been backed up to %s.bzr.backup',
self.transport.base,
self.transport.base)
self.pb.note('if conversion fails, you can move this directory back to .bzr')
self.pb.note('if it succeeds, you can remove this directory if you wish')
def upgrade(url, format=None):
"""Upgrade to format, or the default bzrdir format if not supplied."""
Convert(url, format)
|