~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Tarmac
  • Author(s): Vincent Ladeuil
  • Date: 2017-01-30 14:42:05 UTC
  • mfrom: (6620.1.1 trunk)
  • Revision ID: tarmac-20170130144205-r8fh2xpmiuxyozpv
Merge  2.7 into trunk including fix for bug #1657238 [r=vila]

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
 
18
 
17
19
from bzrlib import (
18
 
    errors,
19
20
    osutils,
20
21
    )
21
 
from bzrlib.inventory import InventoryEntry
22
 
from bzrlib.trace import mutter, is_quiet
23
 
from bzrlib.symbol_versioning import deprecated_function
 
22
from bzrlib.trace import is_quiet
24
23
 
25
24
 
26
25
class TreeDelta(object):
64
63
        self.modified = []
65
64
        self.unchanged = []
66
65
        self.unversioned = []
 
66
        self.missing = []
67
67
 
68
68
    def __eq__(self, other):
69
69
        if not isinstance(other, TreeDelta):
140
140
            else:
141
141
                delta.removed.append((path[0], file_id, kind[0]))
142
142
        elif fully_present[0] is False:
143
 
            continue
 
143
            delta.missing.append((path[1], file_id, kind[1]))
144
144
        elif name[0] != name[1] or parent_id[0] != parent_id[1]:
145
145
            # If the name changes, or the parent_id changes, we have a rename
146
146
            # (if we move a parent, that doesn't count as a rename for the
163
163
    delta.removed.sort()
164
164
    delta.added.sort()
165
165
    delta.renamed.sort()
 
166
    delta.missing.sort()
166
167
    # TODO: jam 20060529 These lists shouldn't need to be sorted
167
168
    #       since we added them in alphabetical order.
168
169
    delta.modified.sort()
175
176
    """Report changes between two trees"""
176
177
 
177
178
    def __init__(self, output=None, suppress_root_add=True,
178
 
                 output_file=None, unversioned_filter=None, view_info=None):
 
179
                 output_file=None, unversioned_filter=None, view_info=None,
 
180
                 classify=True):
179
181
        """Constructor
180
182
 
181
183
        :param output: a function with the signature of trace.note, i.e.
190
192
        :param view_info: A tuple of view_name,view_files if only
191
193
            items inside a view are to be reported on, or None for
192
194
            no view filtering.
 
195
        :param classify: Add special symbols to indicate file kind.
193
196
        """
194
197
        if output_file is not None:
195
198
            if output is not None:
205
208
                             'unchanged': ' ',
206
209
                             'created': 'N',
207
210
                             'modified': 'M',
208
 
                             'deleted': 'D'}
 
211
                             'deleted': 'D',
 
212
                             'missing': '!',
 
213
                             }
209
214
        self.versioned_map = {'added': '+', # versioned target
210
215
                              'unchanged': ' ', # versioned in both
211
216
                              'removed': '-', # versioned in source
212
217
                              'unversioned': '?', # versioned in neither
213
218
                              }
214
219
        self.unversioned_filter = unversioned_filter
 
220
        if classify:
 
221
            self.kind_marker = osutils.kind_marker
 
222
        else:
 
223
            self.kind_marker = lambda kind: ''
215
224
        if view_info is None:
216
225
            self.view_name = None
217
226
            self.view_files = []
266
275
            # if the file is not missing in the source, we show its kind
267
276
            # when we show two paths.
268
277
            if kind[0] is not None:
269
 
                old_path += osutils.kind_marker(kind[0])
 
278
                old_path += self.kind_marker(kind[0])
270
279
            old_path += " => "
271
280
        elif versioned == 'removed':
272
281
            # not present in target
281
290
            rename = self.versioned_map[versioned]
282
291
        # we show the old kind on the new path when the content is deleted.
283
292
        if modified == 'deleted':
284
 
            path += osutils.kind_marker(kind[0])
 
293
            path += self.kind_marker(kind[0])
285
294
        # otherwise we always show the current kind when there is one
286
295
        elif kind[1] is not None:
287
 
            path += osutils.kind_marker(kind[1])
 
296
            path += self.kind_marker(kind[1])
288
297
        if exe_change:
289
298
            exe = '*'
290
299
        else:
328
337
        else:
329
338
            if content_change:
330
339
                modified = "modified"
 
340
            elif kind[0] is None:
 
341
                modified = "missing"
331
342
            else:
332
343
                modified = "unchanged"
333
344
            if kind[1] == "file":
337
348
                        exe_change, kind)
338
349
 
339
350
def report_delta(to_file, delta, short_status=False, show_ids=False, 
340
 
         show_unchanged=False, indent='', filter=None):
 
351
         show_unchanged=False, indent='', filter=None, classify=True):
341
352
    """Output this delta in status-like form to to_file.
342
353
 
343
354
    :param to_file: A file-like object where the output is displayed.
355
366
 
356
367
    :param filter: A callable receiving a path and a file id and
357
368
        returning True if the path should be displayed.
 
369
 
 
370
    :param classify: Add special symbols to indicate file kind.
358
371
    """
359
372
 
360
373
    def decorate_path(path, kind, meta_modified=None):
 
374
        if not classify:
 
375
            return path
361
376
        if kind == 'directory':
362
377
            path += '/'
363
378
        elif kind == 'symlink':
420
435
 
421
436
    show_list(delta.removed, 'removed', 'D')
422
437
    show_list(delta.added, 'added', 'A')
 
438
    show_list(delta.missing, 'missing', '!')
423
439
    extra_modified = []
424
440
    # Reorder delta.renamed tuples so that all lists share the same
425
441
    # order for their 3 first fields and that they also begin like