~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/send.py

(jelmer) Use the absolute_import feature everywhere in bzrlib,
 and add a source test to make sure it's used everywhere. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
from __future__ import absolute_import
17
18
 
18
19
import os
19
20
import time
37
38
format_registry = registry.Registry()
38
39
 
39
40
 
40
 
def send(submit_branch, revision, public_branch, remember, format,
41
 
         no_bundle, no_patch, output, from_, mail_to, message, body,
 
41
def send(target_branch, revision, public_branch, remember,
 
42
         format, no_bundle, no_patch, output, from_, mail_to, message, body,
42
43
         to_file, strict=None):
43
44
    tree, branch = controldir.ControlDir.open_containing_tree_or_branch(
44
45
        from_)[:2]
 
46
    possible_transports = [tree.bzrdir.transport, branch.bzrdir.transport]
45
47
    # we may need to write data into branch's repository to calculate
46
48
    # the data to send.
47
49
    branch.lock_write()
56
58
                raise errors.BzrCommandError(gettext(
57
59
                    'Mail client "%s" does not support specifying body') %
58
60
                    mail_client.__class__.__name__)
59
 
        if remember and submit_branch is None:
 
61
        if remember and target_branch is None:
60
62
            raise errors.BzrCommandError(gettext(
61
63
                '--remember requires a branch to be specified.'))
62
 
        stored_submit_branch = branch.get_submit_branch()
63
 
        remembered_submit_branch = None
64
 
        if submit_branch is None:
65
 
            submit_branch = stored_submit_branch
66
 
            remembered_submit_branch = "submit"
 
64
        stored_target_branch = branch.get_submit_branch()
 
65
        remembered_target_branch = None
 
66
        if target_branch is None:
 
67
            target_branch = stored_target_branch
 
68
            remembered_target_branch = "submit"
67
69
        else:
68
70
            # Remembers if asked explicitly or no previous location is set
69
 
            if remember or (remember is None and stored_submit_branch is None):
70
 
                branch.set_submit_branch(submit_branch)
71
 
        if submit_branch is None:
72
 
            submit_branch = branch.get_parent()
73
 
            remembered_submit_branch = "parent"
74
 
        if submit_branch is None:
 
71
            if remember or (
 
72
                    remember is None and stored_target_branch is None):
 
73
                branch.set_submit_branch(target_branch)
 
74
        if target_branch is None:
 
75
            target_branch = branch.get_parent()
 
76
            remembered_target_branch = "parent"
 
77
        if target_branch is None:
75
78
            raise errors.BzrCommandError(gettext('No submit branch known or'
76
79
                                         ' specified'))
77
 
        if remembered_submit_branch is not None:
 
80
        if remembered_target_branch is not None:
78
81
            trace.note(gettext('Using saved {0} location "{1}" to determine '
79
82
                       'what changes to submit.').format(
80
 
                                    remembered_submit_branch, submit_branch))
 
83
                                    remembered_target_branch,
 
84
                                    target_branch))
81
85
 
 
86
        submit_branch = Branch.open(target_branch,
 
87
            possible_transports=possible_transports)
 
88
        possible_transports.append(submit_branch.bzrdir.root_transport)
82
89
        if mail_to is None or format is None:
83
 
            # TODO: jam 20090716 we open the submit_branch here, but we *don't*
84
 
            #       pass it down into the format creation, so it will have to
85
 
            #       open it again
86
 
            submit_br = Branch.open(submit_branch)
87
 
            submit_config = submit_br.get_config()
 
90
            submit_config = submit_branch.get_config()
88
91
            if mail_to is None:
89
92
                mail_to = submit_config.get_user_option("child_submit_to")
90
93
            if format is None:
91
 
                formatname = submit_br.get_child_submit_format()
 
94
                formatname = submit_branch.get_child_submit_format()
92
95
                try:
93
96
                    format = format_registry.get(formatname)
94
97
                except KeyError:
125
128
            raise errors.BzrCommandError(gettext('No revisions to submit.'))
126
129
        if format is None:
127
130
            format = format_registry.get()
128
 
        directive = format(branch, revision_id, submit_branch,
129
 
            public_branch, no_patch, no_bundle, message, base_revision_id)
 
131
        directive = format(branch, revision_id, target_branch,
 
132
            public_branch, no_patch, no_bundle, message, base_revision_id,
 
133
            submit_branch)
130
134
        if output is None:
131
135
            directive.compose_merge_request(mail_client, mail_to, body,
132
136
                                            branch, tree)
158
162
        branch.unlock()
159
163
 
160
164
 
161
 
def _send_4(branch, revision_id, submit_branch, public_branch,
162
 
            no_patch, no_bundle, message, base_revision_id):
 
165
def _send_4(branch, revision_id, target_branch, public_branch,
 
166
            no_patch, no_bundle, message,
 
167
            base_revision_id, local_target_branch=None):
163
168
    from bzrlib import merge_directive
164
169
    return merge_directive.MergeDirective2.from_objects(
165
170
        branch.repository, revision_id, time.time(),
166
 
        osutils.local_time_offset(), submit_branch,
167
 
        public_branch=public_branch, include_patch=not no_patch,
 
171
        osutils.local_time_offset(), target_branch,
 
172
        public_branch=public_branch,
 
173
        include_patch=not no_patch,
168
174
        include_bundle=not no_bundle, message=message,
169
 
        base_revision_id=base_revision_id)
 
175
        base_revision_id=base_revision_id,
 
176
        local_target_branch=local_target_branch)
170
177
 
171
178
 
172
179
def _send_0_9(branch, revision_id, submit_branch, public_branch,
173
 
              no_patch, no_bundle, message, base_revision_id):
 
180
              no_patch, no_bundle, message,
 
181
              base_revision_id, local_target_branch=None):
174
182
    if not no_bundle:
175
183
        if not no_patch:
176
184
            patch_type = 'bundle'
187
195
        branch.repository, revision_id, time.time(),
188
196
        osutils.local_time_offset(), submit_branch,
189
197
        public_branch=public_branch, patch_type=patch_type,
190
 
        message=message)
191
 
 
192
 
 
193
 
format_registry.register('4', 
 
198
        message=message, local_target_branch=local_target_branch)
 
199
 
 
200
 
 
201
format_registry.register('4',
194
202
    _send_4, 'Bundle format 4, Merge Directive 2 (default)')
195
203
format_registry.register('0.9',
196
204
    _send_0_9, 'Bundle format 0.9, Merge Directive 1')