~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-03-07 10:45:44 UTC
  • mfrom: (2321.1.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070307104544-59e3e6358e4bdb29
(robertc) Merge dirstate and subtrees. (Robert Collins, Martin Pool, Aaaron Bentley, John A Meinel, James Westby)

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        (path, id, kind, text_modified, meta_modified)
39
39
    unchanged
40
40
        (path, id, kind)
 
41
    unversioned
 
42
        (path, kind)
41
43
 
42
44
    Each id is listed only once.
43
45
 
59
61
        self.kind_changed = []
60
62
        self.modified = []
61
63
        self.unchanged = []
 
64
        self.unversioned = []
62
65
 
63
66
    def __eq__(self, other):
64
67
        if not isinstance(other, TreeDelta):
68
71
               and self.renamed == other.renamed \
69
72
               and self.modified == other.modified \
70
73
               and self.unchanged == other.unchanged \
71
 
               and self.kind_changed == other.kind_changed
 
74
               and self.kind_changed == other.kind_changed \
 
75
               and self.unversioned == other.unversioned
72
76
 
73
77
    def __ne__(self, other):
74
78
        return not (self == other)
75
79
 
76
80
    def __repr__(self):
77
81
        return "TreeDelta(added=%r, removed=%r, renamed=%r," \
78
 
            " kind_changed=%r, modified=%r, unchanged=%r)" % (self.added,
 
82
            " kind_changed=%r, modified=%r, unchanged=%r," \
 
83
            " unversioned=%r)" % (self.added,
79
84
            self.removed, self.renamed, self.kind_changed, self.modified,
80
 
            self.unchanged)
 
85
            self.unchanged, self.unversioned)
81
86
 
82
87
    def has_changed(self):
83
88
        return bool(self.modified
186
191
            else:
187
192
                show_list(self.unchanged, 'S')
188
193
 
 
194
        if self.unversioned:
 
195
            print >>to_file, 'unknown:'
 
196
            show_list(self.unversioned)
 
197
 
189
198
 
190
199
@deprecated_function(zero_nine)
191
200
def compare_trees(old_tree, new_tree, want_unchanged=False,
200
209
        include_root=False)
201
210
 
202
211
 
203
 
def _compare_trees(old_tree, new_tree, want_unchanged, specific_file_ids,
204
 
                   include_root):
 
212
def _compare_trees(old_tree, new_tree, want_unchanged, specific_files,
 
213
                   include_root, extra_trees=None,
 
214
                   want_unversioned=False):
 
215
    """Worker function that implements Tree.changes_from."""
205
216
    delta = TreeDelta()
206
217
    # mutter('start compare_trees')
207
218
 
208
219
    for (file_id, path, content_change, versioned, parent_id, name, kind,
209
 
         executable) in new_tree._iter_changes(old_tree, want_unchanged, 
210
 
                                               specific_file_ids):
 
220
         executable) in new_tree._iter_changes(old_tree, want_unchanged,
 
221
            specific_files, extra_trees=extra_trees,
 
222
            want_unversioned=want_unversioned):
 
223
        if versioned == (False, False):
 
224
            delta.unversioned.append((path[1], None, kind[1]))
 
225
            continue
211
226
        if not include_root and (None, None) == parent_id:
212
227
            continue
213
228
        fully_present = tuple((versioned[x] and kind[x] is not None) for
214
229
                              x in range(2))
215
230
        if fully_present[0] != fully_present[1]:
216
231
            if fully_present[1] is True:
217
 
                delta.added.append((path, file_id, kind[1]))
 
232
                delta.added.append((path[1], file_id, kind[1]))
218
233
            else:
219
234
                assert fully_present[0] is True
220
 
                old_path = old_tree.id2path(file_id)
221
 
                delta.removed.append((old_path, file_id, kind[0]))
 
235
                delta.removed.append((path[0], file_id, kind[0]))
222
236
        elif fully_present[0] is False:
223
237
            continue
224
238
        elif name[0] != name[1] or parent_id[0] != parent_id[1]:
225
239
            # If the name changes, or the parent_id changes, we have a rename
226
240
            # (if we move a parent, that doesn't count as a rename for the
227
241
            # file)
228
 
            old_path = old_tree.id2path(file_id)
229
 
            delta.renamed.append((old_path,
230
 
                                  path,
231
 
                                  file_id, 
 
242
            delta.renamed.append((path[0],
 
243
                                  path[1],
 
244
                                  file_id,
232
245
                                  kind[1],
233
 
                                  content_change, 
 
246
                                  content_change,
234
247
                                  (executable[0] != executable[1])))
235
248
        elif kind[0] != kind[1]:
236
 
            delta.kind_changed.append((path, file_id, kind[0], kind[1]))
 
249
            delta.kind_changed.append((path[1], file_id, kind[0], kind[1]))
237
250
        elif content_change is True or executable[0] != executable[1]:
238
 
            delta.modified.append((path, file_id, kind[1],
239
 
                                   content_change, 
 
251
            delta.modified.append((path[1], file_id, kind[1],
 
252
                                   content_change,
240
253
                                   (executable[0] != executable[1])))
241
254
        else:
242
 
            delta.unchanged.append((path, file_id, kind[1]))
 
255
            delta.unchanged.append((path[1], file_id, kind[1]))
243
256
 
244
257
    delta.removed.sort()
245
258
    delta.added.sort()
255
268
class ChangeReporter(object):
256
269
    """Report changes between two trees"""
257
270
 
258
 
    def __init__(self, old_inventory, output=None, suppress_root_add=True,
259
 
                 output_file=None):
 
271
    def __init__(self, output=None, suppress_root_add=True,
 
272
                 output_file=None, unversioned_filter=None):
260
273
        """Constructor
261
274
 
262
 
        :param old_inventory: The inventory of the old tree
263
275
        :param output: a function with the signature of trace.note, i.e.
264
276
            accepts a format and parameters.
265
277
        :param supress_root_add: If true, adding the root will be ignored
266
278
            (i.e. when a tree has just been initted)
267
279
        :param output_file: If supplied, a file-like object to write to.
268
280
            Only one of output and output_file may be supplied.
 
281
        :param unversioned_filter: A filter function to be called on 
 
282
            unversioned files. This should return True to ignore a path.
 
283
            By default, no filtering takes place.
269
284
        """
270
 
        self.old_inventory = old_inventory
271
285
        if output_file is not None:
272
286
            if output is not None:
273
287
                raise BzrError('Cannot specify both output and output_file')
278
292
            from bzrlib import trace
279
293
            self.output = trace.note
280
294
        self.suppress_root_add = suppress_root_add
 
295
        self.modified_map = {'kind changed': 'K',
 
296
                             'unchanged': ' ',
 
297
                             'created': 'N',
 
298
                             'modified': 'M',
 
299
                             'deleted': 'D'}
 
300
        self.versioned_map = {'added': '+', # versioned target
 
301
                              'unchanged': ' ', # versioned in both
 
302
                              'removed': '-', # versioned in source
 
303
                              'unversioned': '?', # versioned in neither
 
304
                              }
 
305
        self.unversioned_filter = unversioned_filter
281
306
 
282
 
    def report(self, file_id, path, versioned, renamed, modified, exe_change,
 
307
    def report(self, file_id, paths, versioned, renamed, modified, exe_change,
283
308
               kind):
284
309
        """Report one change to a file
285
310
 
286
311
        :param file_id: The file_id of the file
287
 
        :param path: The path the file has (or would have) in the tree (as
288
 
            generated by Tree._iter_changes)
289
 
        :param versioned: may be 'added', 'removed', or 'unchanged'
 
312
        :param path: The old and new paths as generated by Tree._iter_changes.
 
313
        :param versioned: may be 'added', 'removed', 'unchanged', or
 
314
            'unversioned.
290
315
        :param renamed: may be True or False
291
316
        :param modified: may be 'created', 'deleted', 'kind changed',
292
317
            'modified' or 'unchanged'.
294
319
        :param kind: A pair of file kinds, as generated by Tree._iter_changes.
295
320
            None indicates no file present.
296
321
        """
297
 
        if path == '' and versioned == 'added' and self.suppress_root_add:
 
322
        if paths[1] == '' and versioned == 'added' and self.suppress_root_add:
298
323
            return
299
 
        modified_map = {'kind changed': 'K',
300
 
                        'unchanged': ' ',
301
 
                        'created': 'N',
302
 
                        'modified': 'M',
303
 
                        'deleted': 'D'}
304
 
        versioned_map = {'added': '+',
305
 
                         'unchanged': ' ',
306
 
                         'removed': '-'}
307
 
        old_path = ""
 
324
        if versioned == 'unversioned':
 
325
            # skip ignored unversioned files if needed.
 
326
            if self.unversioned_filter is not None:
 
327
                if self.unversioned_filter(paths[1]):
 
328
                    return
 
329
            # dont show a content change in the output.
 
330
            modified = 'unchanged'
 
331
        # we show both paths in the following situations:
 
332
        # the file versioning is unchanged AND
 
333
        # ( the path is different OR
 
334
        #   the kind is different)
 
335
        if (versioned == 'unchanged' and
 
336
            (renamed or modified == 'kind changed')):
 
337
            if renamed:
 
338
                # on a rename, we show old and new
 
339
                old_path, path = paths
 
340
            else:
 
341
                # if its not renamed, we're showing both for kind changes
 
342
                # so only show the new path
 
343
                old_path, path = paths[1], paths[1]
 
344
            # if the file is not missing in the source, we show its kind
 
345
            # when we show two paths.
 
346
            if kind[0] is not None:
 
347
                old_path += osutils.kind_marker(kind[0])
 
348
            old_path += " => "
 
349
        elif versioned == 'removed':
 
350
            # not present in target
 
351
            old_path = ""
 
352
            path = paths[0]
 
353
        else:
 
354
            old_path = ""
 
355
            path = paths[1]
308
356
        if renamed:
309
 
            old_path = self.old_inventory.id2path(file_id)
310
357
            rename = "R"
311
358
        else:
312
 
            rename = versioned_map[versioned]
313
 
        if modified == 'kind changed':
314
 
            if old_path == "":
315
 
                old_path = path
 
359
            rename = self.versioned_map[versioned]
 
360
        # we show the old kind on the new path when the content is deleted.
316
361
        if modified == 'deleted':
317
362
            path += osutils.kind_marker(kind[0])
 
363
        # otherwise we always show the current kind when there is one
318
364
        elif kind[1] is not None:
319
365
            path += osutils.kind_marker(kind[1])
320
 
        if old_path != "":
321
 
            if kind[0] is not None:
322
 
                old_path += osutils.kind_marker(kind[0])
323
 
            old_path += " => "
324
366
        if exe_change:
325
367
            exe = '*'
326
368
        else:
327
369
            exe = ' '
328
 
        self.output("%s%s%s %s%s", rename, modified_map[modified], exe,
 
370
        self.output("%s%s%s %s%s", rename, self.modified_map[modified], exe,
329
371
                    old_path, path)
330
372
 
331
373
 
339
381
        generated by Tree._iter_changes
340
382
    :param reporter: The ChangeReporter that will report the changes.
341
383
    """
 
384
    versioned_change_map = {
 
385
        (True, True)  : 'unchanged',
 
386
        (True, False) : 'removed',
 
387
        (False, True) : 'added',
 
388
        (False, False): 'unversioned',
 
389
        }
342
390
    for (file_id, path, content_change, versioned, parent_id, name, kind,
343
391
         executable) in change_iterator:
344
392
        exe_change = False
363
411
                modified = "unchanged"
364
412
            if kind[1] == "file":
365
413
                exe_change = (executable[0] != executable[1])
366
 
        if versioned[0] != versioned[1]:
367
 
            if versioned[0]:
368
 
                versioned_change = "removed"
369
 
            else:
370
 
                versioned_change = "added"
371
 
        else:
372
 
            versioned_change = "unchanged"
 
414
        versioned_change = versioned_change_map[versioned]
373
415
        reporter.report(file_id, path, versioned_change, renamed, modified,
374
416
                        exe_change, kind)