~lifeless/ubuntu/lucid/bzr/2.1.2-sru

« back to all changes in this revision

Viewing changes to bzrlib/push.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-06-27 15:23:34 UTC
  • mfrom: (1.3.1 upstream) (3.1.78 karmic)
  • Revision ID: james.westby@ubuntu.com-20090627152334-u3smexjpaolh96qd
* New upstream release.
* Bump standards version to 3.8.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""UI helper for the push command."""
18
18
 
19
 
from bzrlib import (builtins, bzrdir, errors, revision as _mod_revision,
20
 
                    transport)
21
 
from bzrlib.trace import note, warning
 
19
from bzrlib import (
 
20
    builtins,
 
21
    branch,
 
22
    bzrdir,
 
23
    errors,
 
24
    revision as _mod_revision,
 
25
    transport,
 
26
    )
 
27
from bzrlib.trace import (
 
28
    note,
 
29
    warning,
 
30
    )
 
31
 
 
32
 
 
33
class PushResult(object):
 
34
    """Result of a push operation.
 
35
 
 
36
    :ivar branch_push_result: Result of a push between branches
 
37
    :ivar target_branch: The target branch
 
38
    :ivar stacked_on: URL of the branch on which the result is stacked
 
39
    :ivar workingtree_updated: Whether or not the target workingtree was updated.
 
40
    """
 
41
 
 
42
    def __init__(self):
 
43
        self.branch_push_result = None
 
44
        self.stacked_on = None
 
45
        self.workingtree_updated = None
 
46
        self.target_branch = None
 
47
 
 
48
    def report(self, to_file):
 
49
        """Write a human-readable description of the result."""
 
50
        if self.branch_push_result is None:
 
51
            if self.stacked_on is not None:
 
52
                note('Created new stacked branch referring to %s.' %
 
53
                    self.stacked_on)
 
54
            else:
 
55
                note('Created new branch.')
 
56
        else:
 
57
            self.branch_push_result.report(to_file)
22
58
 
23
59
 
24
60
def _show_push_branch(br_from, revision_id, location, to_file, verbose=False,
43
79
        directory exists without a current .bzr directory in it
44
80
    """
45
81
    to_transport = transport.get_transport(location)
46
 
    br_to = repository_to = dir_to = None
47
82
    try:
48
83
        dir_to = bzrdir.BzrDir.open_from_transport(to_transport)
49
84
    except errors.NotBranchError:
50
 
        pass # Didn't find anything
51
 
    else:
52
 
        # If we can open a branch, use its direct repository, otherwise see
53
 
        # if there is a repository without a branch.
54
 
        try:
55
 
            br_to = dir_to.open_branch()
56
 
        except errors.NotBranchError:
57
 
            # Didn't find a branch, can we find a repository?
58
 
            try:
59
 
                repository_to = dir_to.find_repository()
60
 
            except errors.NoRepositoryPresent:
61
 
                pass
62
 
        else:
63
 
            # Found a branch, so we must have found a repository
64
 
            repository_to = br_to.repository
 
85
        # Didn't find anything
 
86
        dir_to = None
65
87
 
66
 
    push_result = None
67
88
    if dir_to is None:
68
 
        # The destination doesn't exist; create it.
69
 
        # XXX: Refactor the create_prefix/no_create_prefix code into a
70
 
        #      common helper function
71
 
 
72
 
        def make_directory(transport):
73
 
            transport.mkdir('.')
74
 
            return transport
75
 
 
76
 
        def redirected(transport, e, redirection_notice):
77
 
            note(redirection_notice)
78
 
            return transport._redirected_to(e.source, e.target)
79
 
 
80
89
        try:
81
 
            to_transport = transport.do_catching_redirections(
82
 
                make_directory, to_transport, redirected)
 
90
            br_to = br_from.create_clone_on_transport(to_transport,
 
91
                revision_id=revision_id, stacked_on=stacked_on,
 
92
                create_prefix=create_prefix, use_existing_dir=use_existing_dir)
83
93
        except errors.FileExists:
84
94
            if not use_existing_dir:
85
95
                raise errors.BzrCommandError("Target directory %s"
93
103
                    "\nYou may supply --create-prefix to create all"
94
104
                    " leading parent directories."
95
105
                    % location)
96
 
            builtins._create_prefix(to_transport)
97
106
        except errors.TooManyRedirections:
98
107
            raise errors.BzrCommandError("Too many redirections trying "
99
108
                                         "to make %s." % location)
100
 
 
101
 
        # Now the target directory exists, but doesn't have a .bzr
102
 
        # directory. So we need to create it, along with any work to create
103
 
        # all of the dependent branches, etc.
104
 
        br_to = br_from.create_clone_on_transport(to_transport,
105
 
            revision_id=revision_id, stacked_on=stacked_on)
 
109
        push_result = PushResult()
106
110
        # TODO: Some more useful message about what was copied
107
111
        try:
108
 
            finally_stacked_on = br_to.get_stacked_on_url()
 
112
            push_result.stacked_on = br_to.get_stacked_on_url()
109
113
        except (errors.UnstackableBranchFormat,
110
114
                errors.UnstackableRepositoryFormat,
111
115
                errors.NotStacked):
112
 
            finally_stacked_on = None
113
 
        if finally_stacked_on is not None:
114
 
            note('Created new stacked branch referring to %s.' %
115
 
                 finally_stacked_on)
116
 
        else:
117
 
            note('Created new branch.')
118
 
        # We successfully created the target, remember it
 
116
            push_result.stacked_on = None
 
117
        push_result.target_branch = br_to
 
118
        push_result.old_revid = _mod_revision.NULL_REVISION
 
119
        push_result.old_revno = 0
119
120
        if br_from.get_push_location() is None or remember:
120
121
            br_from.set_push_location(br_to.base)
121
 
    elif repository_to is None:
122
 
        # we have a bzrdir but no branch or repository
123
 
        # XXX: Figure out what to do other than complain.
124
 
        raise errors.BzrCommandError("At %s you have a valid .bzr control"
125
 
            " directory, but not a branch or repository. This is an"
126
 
            " unsupported configuration. Please move the target directory"
127
 
            " out of the way and try again."
128
 
            % location)
129
 
    elif br_to is None:
130
 
        # We have a repository but no branch, copy the revisions, and then
131
 
        # create a branch.
 
122
    else:
132
123
        if stacked_on is not None:
133
124
            warning("Ignoring request for a stacked branch as repository "
134
125
                    "already exists at the destination location.")
135
 
        repository_to.fetch(br_from.repository, revision_id=revision_id)
136
 
        br_to = br_from.clone(dir_to, revision_id=revision_id)
137
 
        note('Created new branch.')
138
 
        if br_from.get_push_location() is None or remember:
139
 
            br_from.set_push_location(br_to.base)
140
 
    else: # We have a valid to branch
141
 
        if stacked_on is not None:
142
 
            warning("Ignoring request for a stacked branch as branch "
143
 
                    "already exists at the destination location.")
144
 
        # We were able to connect to the remote location, so remember it.
145
 
        # (We don't need to successfully push because of possible divergence.)
146
 
        if br_from.get_push_location() is None or remember:
147
 
            br_from.set_push_location(br_to.base)
148
126
        try:
149
 
            try:
150
 
                tree_to = dir_to.open_workingtree()
151
 
            except errors.NotLocalUrl:
152
 
                note("This transport does not update the working "
153
 
                     "tree of: %s. See 'bzr help working-trees' for "
154
 
                     "more information." % br_to.base)
155
 
                push_result = br_from.push(br_to, overwrite,
156
 
                                           stop_revision=revision_id)
157
 
            except errors.NoWorkingTree:
158
 
                push_result = br_from.push(br_to, overwrite,
159
 
                                           stop_revision=revision_id)
160
 
            else:
161
 
                tree_to.lock_write()
162
 
                try:
163
 
                    push_result = br_from.push(tree_to.branch, overwrite,
164
 
                                               stop_revision=revision_id)
165
 
                    tree_to.update()
166
 
                finally:
167
 
                    tree_to.unlock()
 
127
            push_result = dir_to.push_branch(br_from, revision_id, overwrite, 
 
128
                remember)
168
129
        except errors.DivergedBranches:
169
130
            raise errors.BzrCommandError('These branches have diverged.'
170
131
                                    '  Try using "merge" and then "push".')
171
 
    if push_result is not None:
172
 
        push_result.report(to_file)
173
 
        old_revid = push_result.old_revid
174
 
        old_revno = push_result.old_revno
175
 
    else:
176
 
        old_revid = _mod_revision.NULL_REVISION
177
 
        old_revno = 0
 
132
        except errors.NoRepositoryPresent:
 
133
            # we have a bzrdir but no branch or repository
 
134
            # XXX: Figure out what to do other than complain.
 
135
            raise errors.BzrCommandError("At %s you have a valid .bzr"
 
136
                " control directory, but not a branch or repository. This"
 
137
                " is an unsupported configuration. Please move the target"
 
138
                " directory out of the way and try again." % location)
 
139
        if push_result.workingtree_updated == False:
 
140
            warning("This transport does not update the working " 
 
141
                    "tree of: %s. See 'bzr help working-trees' for "
 
142
                    "more information." % push_result.target_branch.base)
 
143
    push_result.report(to_file)
178
144
    if verbose:
 
145
        br_to = push_result.target_branch
179
146
        br_to.lock_read()
180
147
        try:
181
148
            from bzrlib.log import show_branch_change
182
 
            show_branch_change(br_to, to_file, old_revno, old_revid)
 
149
            show_branch_change(br_to, to_file, push_result.old_revno, 
 
150
                               push_result.old_revid)
183
151
        finally:
184
152
            br_to.unlock()
 
153
 
 
154