1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic) <szilveszter.farkas@gmail.com>
2
# Some parts of the code are:
3
# Copyright (C) 2005, 2006 by Canonical Ltd
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23
import bzrlib.bzrdir as bzrdir
24
import bzrlib.errors as errors
26
from bzrlib.branch import Branch
28
from errors import (AlreadyBranchError, BranchExistsWithoutWorkingTree,
29
NonExistingParent, NonExistingRevision,
30
NonExistingSource, NotBranchError, TargetAlreadyExists)
33
""" Initialize a directory.
35
:param location: full path to the directory you want to be versioned
37
from bzrlib.builtins import get_format_type
39
format = get_format_type('default')
41
if not os.path.exists(location):
45
existing_bzrdir = bzrdir.BzrDir.open(location)
46
except errors.NotBranchError:
47
bzrdir.BzrDir.create_branch_convenience(location, format=format)
49
if existing_bzrdir.has_branch():
50
if existing_bzrdir.has_workingtree():
51
raise AlreadyBranchError(location)
53
raise BranchExistsWithoutWorkingTree(location)
55
existing_bzrdir.create_branch()
56
existing_bzrdir.create_workingtree()
58
def branch(from_location, to_location, revision=None):
59
""" Create a branch from a local/remote location.
61
:param from_location: the original location of the branch
63
:param to_location: the directory where the branch should be created
65
:param revision: if specified, the given revision will be branched
67
:return: number of revisions branched
69
from bzrlib.transport import get_transport
72
br_from = Branch.open(from_location)
74
if e.errno == errno.ENOENT:
75
raise NonExistingSource(from_location)
78
except errors.NotBranchError:
79
raise NotBranchError(from_location)
85
if revision is not None:
86
revision_id = br_from.get_rev_id(revision)
90
to_location = to_location + '/' + os.path.basename(from_location.rstrip("/\\"))
92
to_transport = get_transport(to_location)
95
to_transport.mkdir('.')
96
except errors.FileExists:
97
raise TargetAlreadyExists(to_location)
98
except errors.NoSuchFile:
99
raise NonExistingParent(to_location)
102
dir = br_from.bzrdir.sprout(to_transport.base, revision_id, basis_dir)
103
branch = dir.open_branch()
104
except errors.NoSuchRevision:
105
to_transport.delete_tree('.')
106
raise NonExistingRevision(from_location, revision[0])
109
branch.control_files.put_utf8('branch-name', name)
113
return branch.revno()
115
def checkout(branch_location, to_location, revision=None, lightweight=False):
116
""" Create a new checkout of an existing branch.
118
:param branch_location: the location of the branch you'd like to checkout
120
:param to_location: the directory where the checkout should be created
122
:param revision: the given revision will be checkout'ed (be aware!)
124
:param lightweight: perform a lightweight checkout (be aware!)
126
source = Branch.open(branch_location)
128
if revision is not None:
129
revision_id = source.get_rev_id(revision)
133
# if the source and to_location are the same,
134
# and there is no working tree,
135
# then reconstitute a branch
136
if (bzrlib.osutils.abspath(to_location) ==
137
bzrlib.osutils.abspath(branch_location)):
139
source.bzrdir.open_workingtree()
140
except errors.NoWorkingTree:
141
source.bzrdir.create_workingtree()
145
os.mkdir(to_location)
147
if e.errno == errno.EEXIST:
148
raise TargetAlreadyExists(to_location)
149
if e.errno == errno.ENOENT:
150
raise NonExistingParent(to_location)
154
old_format = bzrlib.bzrdir.BzrDirFormat.get_default_format()
155
bzrlib.bzrdir.BzrDirFormat.set_default_format(bzrdir.BzrDirMetaFormat1())
159
checkout = bzrdir.BzrDirMetaFormat1().initialize(to_location)
160
bzrlib.branch.BranchReferenceFormat().initialize(checkout, source)
162
checkout_branch = bzrlib.bzrdir.BzrDir.create_branch_convenience(
163
to_location, force_new_tree=False)
164
checkout = checkout_branch.bzrdir
165
checkout_branch.bind(source)
166
if revision_id is not None:
167
rh = checkout_branch.revision_history()
168
checkout_branch.set_revision_history(rh[:rh.index(revision_id) + 1])
170
checkout.create_workingtree(revision_id)
172
bzrlib.bzrdir.BzrDirFormat.set_default_format(old_format)