1
# Copyright (C) 2007 Canonical Ltd
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
"""Reconfigure a bzrdir into a new tree/branch/repository layout"""
23
class Reconfigure(object):
25
def __init__(self, bzrdir, tree, branch, unbind):
32
def to_branch(bzrdir):
34
branch = bzrdir.open_branch()
35
except errors.NotBranchError:
36
raise errors.ReconfigurationNotSupported(bzrdir)
37
unbind = (branch.get_bound_location() is not None)
39
tree = bzrdir.open_workingtree()
40
except errors.NoWorkingTree:
41
raise errors.AlreadyBranch(bzrdir)
42
return Reconfigure(bzrdir, tree, branch, unbind)
45
changes = self.tree.changes_from(self.tree.basis_tree())
46
if changes.has_changed():
47
raise errors.UncommittedChanges(self.tree)
49
def apply(self, force=False):
52
self.bzrdir.destroy_workingtree()