/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/push.py

  • Committer: Vincent Ladeuil
  • Date: 2012-01-18 14:09:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6468.
  • Revision ID: v.ladeuil+lp@free.fr-20120118140919-rlvdrhpc0nq1lbwi
Change set/remove to require a lock for the branch config files.

This means that tests (or any plugin for that matter) do not requires an
explicit lock on the branch anymore to change a single option. This also
means the optimisation becomes "opt-in" and as such won't be as
spectacular as it may be and/or harder to get right (nothing fails
anymore).

This reduces the diff by ~300 lines.

Code/tests that were updating more than one config option is still taking
a lock to at least avoid some IOs and demonstrate the benefits through
the decreased number of hpss calls.

The duplication between BranchStack and BranchOnlyStack will be removed
once the same sharing is in place for local config files, at which point
the Stack class itself may be able to host the changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008-2012 Canonical Ltd
 
2
#
 
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.
 
7
#
 
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.
 
12
#
 
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""UI helper for the push command."""
 
18
 
 
19
from __future__ import absolute_import
 
20
 
 
21
from bzrlib import (
 
22
    controldir,
 
23
    errors,
 
24
    revision as _mod_revision,
 
25
    transport,
 
26
    )
 
27
from bzrlib.trace import (
 
28
    note,
 
29
    warning,
 
30
    )
 
31
from bzrlib.i18n import gettext
 
32
 
 
33
 
 
34
class PushResult(object):
 
35
    """Result of a push operation.
 
36
 
 
37
    :ivar branch_push_result: Result of a push between branches
 
38
    :ivar target_branch: The target branch
 
39
    :ivar stacked_on: URL of the branch on which the result is stacked
 
40
    :ivar workingtree_updated: Whether or not the target workingtree was updated.
 
41
    """
 
42
 
 
43
    def __init__(self):
 
44
        self.branch_push_result = None
 
45
        self.stacked_on = None
 
46
        self.workingtree_updated = None
 
47
        self.target_branch = None
 
48
 
 
49
    def report(self, to_file):
 
50
        """Write a human-readable description of the result."""
 
51
        if self.branch_push_result is None:
 
52
            if self.stacked_on is not None:
 
53
                note(gettext('Created new stacked branch referring to %s.') %
 
54
                    self.stacked_on)
 
55
            else:
 
56
                note(gettext('Created new branch.'))
 
57
        else:
 
58
            self.branch_push_result.report(to_file)
 
59
 
 
60
 
 
61
def _show_push_branch(br_from, revision_id, location, to_file, verbose=False,
 
62
    overwrite=False, remember=False, stacked_on=None, create_prefix=False,
 
63
    use_existing_dir=False, no_tree=False):
 
64
    """Push a branch to a location.
 
65
 
 
66
    :param br_from: the source branch
 
67
    :param revision_id: the revision-id to push up to
 
68
    :param location: the url of the destination
 
69
    :param to_file: the output stream
 
70
    :param verbose: if True, display more output than normal
 
71
    :param overwrite: if False, a current branch at the destination may not
 
72
        have diverged from the source, otherwise the push fails
 
73
    :param remember: if True, store the location as the push location for
 
74
        the source branch
 
75
    :param stacked_on: the url of the branch, if any, to stack on;
 
76
        if set, only the revisions not in that branch are pushed
 
77
    :param create_prefix: if True, create the necessary parent directories
 
78
        at the destination if they don't already exist
 
79
    :param use_existing_dir: if True, proceed even if the destination
 
80
        directory exists without a current .bzr directory in it
 
81
    """
 
82
    to_transport = transport.get_transport(location)
 
83
    try:
 
84
        dir_to = controldir.ControlDir.open_from_transport(to_transport)
 
85
    except errors.NotBranchError:
 
86
        # Didn't find anything
 
87
        dir_to = None
 
88
 
 
89
    if dir_to is None:
 
90
        try:
 
91
            br_to = br_from.create_clone_on_transport(to_transport,
 
92
                revision_id=revision_id, stacked_on=stacked_on,
 
93
                create_prefix=create_prefix, use_existing_dir=use_existing_dir,
 
94
                no_tree=no_tree)
 
95
        except errors.FileExists, err:
 
96
            if err.path.endswith('/.bzr'):
 
97
                raise errors.BzrCommandError(gettext(
 
98
                    "Target directory %s already contains a .bzr directory, "
 
99
                    "but it is not valid.") % (location,))
 
100
            if not use_existing_dir:
 
101
                raise errors.BzrCommandError(gettext("Target directory %s"
 
102
                     " already exists, but does not have a .bzr"
 
103
                     " directory. Supply --use-existing-dir to push"
 
104
                     " there anyway.") % location)
 
105
            # This shouldn't occur, but if it does the FileExists error will be
 
106
            # more informative than an UnboundLocalError for br_to.
 
107
            raise
 
108
        except errors.NoSuchFile:
 
109
            if not create_prefix:
 
110
                raise errors.BzrCommandError(gettext("Parent directory of %s"
 
111
                    " does not exist."
 
112
                    "\nYou may supply --create-prefix to create all"
 
113
                    " leading parent directories.")
 
114
                    % location)
 
115
            # This shouldn't occur (because create_prefix is true, so
 
116
            # create_clone_on_transport should be catching NoSuchFile and
 
117
            # creating the missing directories) but if it does the original
 
118
            # NoSuchFile error will be more informative than an
 
119
            # UnboundLocalError for br_to.
 
120
            raise
 
121
        except errors.TooManyRedirections:
 
122
            raise errors.BzrCommandError(gettext("Too many redirections trying "
 
123
                                         "to make %s.") % location)
 
124
        push_result = PushResult()
 
125
        # TODO: Some more useful message about what was copied
 
126
        try:
 
127
            push_result.stacked_on = br_to.get_stacked_on_url()
 
128
        except (errors.UnstackableBranchFormat,
 
129
                errors.UnstackableRepositoryFormat,
 
130
                errors.NotStacked):
 
131
            push_result.stacked_on = None
 
132
        push_result.target_branch = br_to
 
133
        push_result.old_revid = _mod_revision.NULL_REVISION
 
134
        push_result.old_revno = 0
 
135
        # Remembers if asked explicitly or no previous location is set
 
136
        if (remember
 
137
            or (remember is None and br_from.get_push_location() is None)):
 
138
            # FIXME: Should be done only if we succeed ? -- vila 2012-01-18
 
139
            br_from.set_push_location(br_to.base)
 
140
    else:
 
141
        if stacked_on is not None:
 
142
            warning("Ignoring request for a stacked branch as repository "
 
143
                    "already exists at the destination location.")
 
144
        try:
 
145
            push_result = dir_to.push_branch(br_from, revision_id, overwrite, 
 
146
                remember, create_prefix)
 
147
        except errors.DivergedBranches:
 
148
            raise errors.BzrCommandError(gettext('These branches have diverged.'
 
149
                                    '  See "bzr help diverged-branches"'
 
150
                                    ' for more information.'))
 
151
        except errors.NoRoundtrippingSupport, e:
 
152
            raise errors.BzrCommandError(gettext("It is not possible to losslessly "
 
153
                "push to %s. You may want to use dpush instead.") % 
 
154
                    e.target_branch.mapping.vcs.abbreviation)
 
155
        except errors.NoRepositoryPresent:
 
156
            # we have a controldir but no branch or repository
 
157
            # XXX: Figure out what to do other than complain.
 
158
            raise errors.BzrCommandError(gettext("At %s you have a valid .bzr"
 
159
                " control directory, but not a branch or repository. This"
 
160
                " is an unsupported configuration. Please move the target"
 
161
                " directory out of the way and try again.") % location)
 
162
        if push_result.workingtree_updated == False:
 
163
            warning("This transport does not update the working " 
 
164
                    "tree of: %s. See 'bzr help working-trees' for "
 
165
                    "more information." % push_result.target_branch.base)
 
166
    push_result.report(to_file)
 
167
    if verbose:
 
168
        br_to = push_result.target_branch
 
169
        br_to.lock_read()
 
170
        try:
 
171
            from bzrlib.log import show_branch_change
 
172
            show_branch_change(br_to, to_file, push_result.old_revno, 
 
173
                               push_result.old_revid)
 
174
        finally:
 
175
            br_to.unlock()
 
176
 
 
177