~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/send.py

  • Committer: Jelmer Vernooij
  • Date: 2012-02-20 14:15:25 UTC
  • mto: (6471.1.4 iter-child-entries)
  • mto: This revision was merged to the branch mainline in revision 6472.
  • Revision ID: jelmer@samba.org-20120220141525-9azkfei62st8yc7w
Use inventories directly in fewer places.

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
 
 
19
import os
18
20
import time
19
21
 
20
22
from bzrlib import (
21
 
    bzrdir,
 
23
    controldir,
22
24
    errors,
23
25
    osutils,
24
26
    registry,
25
27
    trace,
26
28
    )
 
29
from bzrlib.i18n import gettext
27
30
from bzrlib.branch import (
28
31
    Branch,
29
32
    )
35
38
format_registry = registry.Registry()
36
39
 
37
40
 
38
 
def send(submit_branch, revision, public_branch, remember, format,
39
 
         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,
40
43
         to_file, strict=None):
41
 
    tree, branch = bzrdir.BzrDir.open_containing_tree_or_branch(from_)[:2]
 
44
    possible_transports = []
 
45
    tree, branch = controldir.ControlDir.open_containing_tree_or_branch(
 
46
        from_, possible_transports=possible_transports)[:2]
42
47
    # we may need to write data into branch's repository to calculate
43
48
    # the data to send.
44
49
    branch.lock_write()
45
50
    try:
46
51
        if output is None:
47
 
            config = branch.get_config()
 
52
            config_stack = branch.get_config_stack()
48
53
            if mail_to is None:
49
 
                mail_to = config.get_user_option('submit_to')
50
 
            mail_client = config.get_mail_client()
 
54
                mail_to = config_stack.get('submit_to')
 
55
            mail_client = config_stack.get('mail_client')(config_stack)
51
56
            if (not getattr(mail_client, 'supports_body', False)
52
57
                and body is not None):
53
 
                raise errors.BzrCommandError(
54
 
                    'Mail client "%s" does not support specifying body' %
 
58
                raise errors.BzrCommandError(gettext(
 
59
                    'Mail client "%s" does not support specifying body') %
55
60
                    mail_client.__class__.__name__)
56
 
        if remember and submit_branch is None:
57
 
            raise errors.BzrCommandError(
58
 
                '--remember requires a branch to be specified.')
59
 
        stored_submit_branch = branch.get_submit_branch()
60
 
        remembered_submit_branch = None
61
 
        if submit_branch is None:
62
 
            submit_branch = stored_submit_branch
63
 
            remembered_submit_branch = "submit"
 
61
        if remember and target_branch is None:
 
62
            raise errors.BzrCommandError(gettext(
 
63
                '--remember requires a branch to be specified.'))
 
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"
64
69
        else:
65
 
            if stored_submit_branch is None or remember:
66
 
                branch.set_submit_branch(submit_branch)
67
 
        if submit_branch is None:
68
 
            submit_branch = branch.get_parent()
69
 
            remembered_submit_branch = "parent"
70
 
        if submit_branch is None:
71
 
            raise errors.BzrCommandError('No submit branch known or'
72
 
                                         ' specified')
73
 
        if remembered_submit_branch is not None:
74
 
            trace.note('Using saved %s location "%s" to determine what '
75
 
                       'changes to submit.', remembered_submit_branch,
76
 
                       submit_branch)
 
70
            # Remembers if asked explicitly or no previous location is set
 
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:
 
78
            raise errors.BzrCommandError(gettext('No submit branch known or'
 
79
                                         ' specified'))
 
80
        if remembered_target_branch is not None:
 
81
            trace.note(gettext('Using saved {0} location "{1}" to determine '
 
82
                       'what changes to submit.').format(
 
83
                                    remembered_target_branch,
 
84
                                    target_branch))
77
85
 
 
86
        submit_branch = Branch.open(target_branch,
 
87
            possible_transports=possible_transports)
 
88
        possible_transports.append(submit_branch.bzrdir.root_transport)
78
89
        if mail_to is None or format is None:
79
 
            # TODO: jam 20090716 we open the submit_branch here, but we *don't*
80
 
            #       pass it down into the format creation, so it will have to
81
 
            #       open it again
82
 
            submit_br = Branch.open(submit_branch)
83
 
            submit_config = submit_br.get_config()
84
90
            if mail_to is None:
85
 
                mail_to = submit_config.get_user_option("child_submit_to")
 
91
                mail_to = submit_branch.get_config_stack().get(
 
92
                    'child_submit_to')
86
93
            if format is None:
87
 
                formatname = submit_br.get_child_submit_format()
 
94
                formatname = submit_branch.get_child_submit_format()
88
95
                try:
89
96
                    format = format_registry.get(formatname)
90
97
                except KeyError:
91
 
                    raise errors.BzrCommandError("No such send format '%s'." % 
92
 
                                                 formatname)
 
98
                    raise errors.BzrCommandError(
 
99
                        gettext("No such send format '%s'.") % formatname)
93
100
 
94
101
        stored_public_branch = branch.get_public_branch()
95
102
        if public_branch is None:
96
103
            public_branch = stored_public_branch
97
 
        elif stored_public_branch is None or remember:
 
104
        # Remembers if asked explicitly or no previous location is set
 
105
        elif (remember
 
106
              or (remember is None and stored_public_branch is None)):
98
107
            branch.set_public_branch(public_branch)
99
108
        if no_bundle and public_branch is None:
100
 
            raise errors.BzrCommandError('No public branch specified or'
101
 
                                         ' known')
 
109
            raise errors.BzrCommandError(gettext('No public branch specified or'
 
110
                                         ' known'))
102
111
        base_revision_id = None
103
112
        revision_id = None
104
113
        if revision is not None:
105
114
            if len(revision) > 2:
106
 
                raise errors.BzrCommandError('bzr send takes '
107
 
                    'at most two one revision identifiers')
 
115
                raise errors.BzrCommandError(gettext('bzr send takes '
 
116
                    'at most two one revision identifiers'))
108
117
            revision_id = revision[-1].as_revision_id(branch)
109
118
            if len(revision) == 2:
110
119
                base_revision_id = revision[0].as_revision_id(branch)
111
120
        if revision_id is None:
112
 
            if strict is None:
113
 
                strict = branch.get_config(
114
 
                    ).get_user_option_as_bool('send_strict')
115
 
            if strict is None: strict = True # default value
116
 
            if strict and tree is not None:
117
 
                if (tree.has_changes()):
118
 
                    raise errors.UncommittedChanges(
119
 
                        tree, more='Use --no-strict to force the send.')
120
 
                if tree.last_revision() != tree.branch.last_revision():
121
 
                    # The tree has lost sync with its branch, there is little
122
 
                    # chance that the user is aware of it but he can still force
123
 
                    # the send with --no-strict
124
 
                    raise errors.OutOfDateTree(
125
 
                        tree, more='Use --no-strict to force the send.')
 
121
            if tree is not None:
 
122
                tree.check_changed_or_out_of_date(
 
123
                    strict, 'send_strict',
 
124
                    more_error='Use --no-strict to force the send.',
 
125
                    more_warning='Uncommitted changes will not be sent.')
126
126
            revision_id = branch.last_revision()
127
127
        if revision_id == NULL_REVISION:
128
 
            raise errors.BzrCommandError('No revisions to submit.')
 
128
            raise errors.BzrCommandError(gettext('No revisions to submit.'))
129
129
        if format is None:
130
130
            format = format_registry.get()
131
 
        directive = format(branch, revision_id, submit_branch,
132
 
            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)
133
134
        if output is None:
134
135
            directive.compose_merge_request(mail_client, mail_to, body,
135
136
                                            branch, tree)
136
137
        else:
137
 
            if output == '-':
138
 
                outfile = to_file
 
138
            if directive.multiple_output_files:
 
139
                if output == '-':
 
140
                    raise errors.BzrCommandError(gettext('- not supported for '
 
141
                        'merge directives that use more than one output file.'))
 
142
                if not os.path.exists(output):
 
143
                    os.mkdir(output, 0755)
 
144
                for (filename, lines) in directive.to_files():
 
145
                    path = os.path.join(output, filename)
 
146
                    outfile = open(path, 'wb')
 
147
                    try:
 
148
                        outfile.writelines(lines)
 
149
                    finally:
 
150
                        outfile.close()
139
151
            else:
140
 
                outfile = open(output, 'wb')
141
 
            try:
142
 
                outfile.writelines(directive.to_lines())
143
 
            finally:
144
 
                if outfile is not to_file:
145
 
                    outfile.close()
 
152
                if output == '-':
 
153
                    outfile = to_file
 
154
                else:
 
155
                    outfile = open(output, 'wb')
 
156
                try:
 
157
                    outfile.writelines(directive.to_lines())
 
158
                finally:
 
159
                    if outfile is not to_file:
 
160
                        outfile.close()
146
161
    finally:
147
162
        branch.unlock()
148
163
 
149
164
 
150
 
def _send_4(branch, revision_id, submit_branch, public_branch,
151
 
            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):
152
168
    from bzrlib import merge_directive
153
169
    return merge_directive.MergeDirective2.from_objects(
154
170
        branch.repository, revision_id, time.time(),
155
 
        osutils.local_time_offset(), submit_branch,
156
 
        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,
157
174
        include_bundle=not no_bundle, message=message,
158
 
        base_revision_id=base_revision_id)
 
175
        base_revision_id=base_revision_id,
 
176
        local_target_branch=local_target_branch)
159
177
 
160
178
 
161
179
def _send_0_9(branch, revision_id, submit_branch, public_branch,
162
 
              no_patch, no_bundle, message, base_revision_id):
 
180
              no_patch, no_bundle, message,
 
181
              base_revision_id, local_target_branch=None):
163
182
    if not no_bundle:
164
183
        if not no_patch:
165
184
            patch_type = 'bundle'
166
185
        else:
167
 
            raise errors.BzrCommandError('Format 0.9 does not'
168
 
                ' permit bundle with no patch')
 
186
            raise errors.BzrCommandError(gettext('Format 0.9 does not'
 
187
                ' permit bundle with no patch'))
169
188
    else:
170
189
        if not no_patch:
171
190
            patch_type = 'diff'
176
195
        branch.repository, revision_id, time.time(),
177
196
        osutils.local_time_offset(), submit_branch,
178
197
        public_branch=public_branch, patch_type=patch_type,
179
 
        message=message)
180
 
 
181
 
 
182
 
format_registry.register('4', 
 
198
        message=message, local_target_branch=local_target_branch)
 
199
 
 
200
 
 
201
format_registry.register('4',
183
202
    _send_4, 'Bundle format 4, Merge Directive 2 (default)')
184
203
format_registry.register('0.9',
185
204
    _send_0_9, 'Bundle format 0.9, Merge Directive 1')