~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Vincent Ladeuil
  • Date: 2010-02-10 15:46:03 UTC
  • mfrom: (4985.3.21 update)
  • mto: This revision was merged to the branch mainline in revision 5021.
  • Revision ID: v.ladeuil+lp@free.fr-20100210154603-k4no1gvfuqpzrw7p
Update performs two merges in a more logical order but stop on conflicts

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
import sys
18
18
 
45
45
                     versioned=False):
46
46
    """Display summary of changes.
47
47
 
48
 
    By default this compares the working tree to a previous revision. 
49
 
    If the revision argument is given, summarizes changes between the 
 
48
    By default this compares the working tree to a previous revision.
 
49
    If the revision argument is given, summarizes changes between the
50
50
    working tree and another, or between two revisions.
51
51
 
52
 
    The result is written out as Unicode and to_file should be able 
 
52
    The result is written out as Unicode and to_file should be able
53
53
    to encode that.
54
54
 
55
55
    If showing the status of a working tree, extra information is included
56
56
    about unknown files, conflicts, and pending merges.
57
57
 
58
 
    :param show_unchanged: Deprecated parameter. If set, includes unchanged 
 
58
    :param show_unchanged: Deprecated parameter. If set, includes unchanged
59
59
        files.
60
60
    :param specific_files: If set, a list of filenames whose status should be
61
 
        shown.  It is an error to give a filename that is not in the working 
 
61
        shown.  It is an error to give a filename that is not in the working
62
62
        tree, or in the working inventory or in the basis inventory.
63
63
    :param show_ids: If set, includes each file's id.
64
64
    :param to_file: If set, write to this file (default stdout.)
78
78
 
79
79
    if to_file is None:
80
80
        to_file = sys.stdout
81
 
    
 
81
 
82
82
    wt.lock_read()
83
83
    try:
84
84
        new_is_working_tree = True
103
103
        old.lock_read()
104
104
        new.lock_read()
105
105
        try:
106
 
            _raise_if_nonexistent(specific_files, old, new)
 
106
            specific_files, nonexistents \
 
107
                = _filter_nonexistent(specific_files, old, new)
107
108
            want_unversioned = not versioned
108
109
            if short:
109
110
                changes = new.iter_changes(old, show_unchanged, specific_files,
137
138
                else:
138
139
                    prefix = ' '
139
140
                to_file.write("%s %s\n" % (prefix, conflict))
 
141
            # Show files that were requested but don't exist (and are
 
142
            # not versioned).  We don't involve delta in this; these
 
143
            # paths are really the province of just the status
 
144
            # command, since they have more to do with how it was
 
145
            # invoked than with the tree it's operating on.
 
146
            if nonexistents and not short:
 
147
                to_file.write("nonexistent:\n")
 
148
            for nonexistent in nonexistents:
 
149
                # We could calculate prefix outside the loop but, given
 
150
                # how rarely this ought to happen, it's OK and arguably
 
151
                # slightly faster to do it here (ala conflicts above)
 
152
                if short:
 
153
                    prefix = 'X  '
 
154
                else:
 
155
                    prefix = ' '
 
156
                to_file.write("%s %s\n" % (prefix, nonexistent))
140
157
            if (new_is_working_tree and show_pending):
141
158
                show_pending_merges(new, to_file, short, verbose=verbose)
 
159
            if nonexistents:
 
160
                raise errors.PathsDoNotExist(nonexistents)
142
161
        finally:
143
162
            old.unlock()
144
163
            new.unlock()
178
197
    if len(parents) < 2:
179
198
        return
180
199
 
181
 
    # we need one extra space for terminals that wrap on last char
182
 
    term_width = osutils.terminal_width() - 1
 
200
    term_width = osutils.terminal_width()
 
201
    if term_width is not None:
 
202
        # we need one extra space for terminals that wrap on last char
 
203
        term_width = term_width - 1
183
204
    if short:
184
205
        first_prefix = 'P   '
185
206
        sub_prefix = 'P.   '
187
208
        first_prefix = '  '
188
209
        sub_prefix = '    '
189
210
 
 
211
    def show_log_message(rev, prefix):
 
212
        if term_width is None:
 
213
            width = term_width
 
214
        else:
 
215
            width = term_width - len(prefix)
 
216
        log_message = log_formatter.log_string(None, rev, width, prefix=prefix)
 
217
        to_file.write(log_message + '\n')
 
218
 
190
219
    pending = parents[1:]
191
220
    branch = new.branch
192
221
    last_revision = parents[0]
194
223
        if verbose:
195
224
            to_file.write('pending merges:\n')
196
225
        else:
197
 
            to_file.write('pending merge tips: (use -v to see all merge revisions)\n')
 
226
            to_file.write('pending merge tips:'
 
227
                          ' (use -v to see all merge revisions)\n')
198
228
    graph = branch.repository.get_graph()
199
229
    other_revisions = [last_revision]
200
230
    log_formatter = log.LineLogFormatter(to_file)
208
238
            continue
209
239
 
210
240
        # Log the merge, as it gets a slightly different formatting
211
 
        log_message = log_formatter.log_string(None, rev,
212
 
                        term_width - len(first_prefix))
213
 
        to_file.write(first_prefix + log_message + '\n')
 
241
        show_log_message(rev, first_prefix)
214
242
        if not verbose:
215
243
            continue
216
244
 
248
276
            if rev is None:
249
277
                to_file.write(sub_prefix + '(ghost) ' + sub_merge + '\n')
250
278
                continue
251
 
            log_message = log_formatter.log_string(None,
252
 
                            revisions[sub_merge],
253
 
                            term_width - len(sub_prefix))
254
 
            to_file.write(sub_prefix + log_message + '\n')
255
 
 
256
 
 
257
 
def _raise_if_nonexistent(paths, old_tree, new_tree):
258
 
    """Complain if paths are not in either inventory or tree.
259
 
 
260
 
    It's OK with the files exist in either tree's inventory, or 
261
 
    if they exist in the tree but are not versioned.
262
 
    
 
279
            show_log_message(revisions[sub_merge], sub_prefix)
 
280
 
 
281
 
 
282
def _filter_nonexistent(orig_paths, old_tree, new_tree):
 
283
    """Convert orig_paths to two sorted lists and return them.
 
284
 
 
285
    The first is orig_paths paths minus the items in the second list,
 
286
    and the second list is paths that are not in either inventory or
 
287
    tree (they don't qualify if they exist in the tree's inventory, or
 
288
    if they exist in the tree but are not versioned.)
 
289
 
 
290
    If either of the two lists is empty, return it as an empty list.
 
291
 
263
292
    This can be used by operations such as bzr status that can accept
264
293
    unknown or ignored files.
265
294
    """
266
 
    mutter("check paths: %r", paths)
267
 
    if not paths:
268
 
        return
269
 
    s = old_tree.filter_unversioned_files(paths)
 
295
    mutter("check paths: %r", orig_paths)
 
296
    if not orig_paths:
 
297
        return orig_paths, []
 
298
    s = old_tree.filter_unversioned_files(orig_paths)
270
299
    s = new_tree.filter_unversioned_files(s)
271
 
    s = [path for path in s if not new_tree.has_filename(path)]
272
 
    if s:
273
 
        raise errors.PathsDoNotExist(sorted(s))
274
 
 
275
 
 
 
300
    nonexistent = [path for path in s if not new_tree.has_filename(path)]
 
301
    remaining   = [path for path in orig_paths if not path in nonexistent]
 
302
    # Sorting the 'remaining' list doesn't have much effect in
 
303
    # practice, since the various status output sections will sort
 
304
    # their groups individually.  But for consistency of this
 
305
    # function's API, it's better to sort both than just 'nonexistent'.
 
306
    return sorted(remaining), sorted(nonexistent)