~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

Merge in format-5 work - release bzr 0.1rc1.

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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
from bzrlib.inventory import InventoryEntry
17
18
from bzrlib.trace import mutter
18
19
 
19
20
class TreeDelta(object):
26
27
    removed
27
28
        (path, id, kind)
28
29
    renamed
29
 
        (oldpath, newpath, id, kind, text_modified)
 
30
        (oldpath, newpath, id, kind, text_modified, meta_modified)
30
31
    modified
31
 
        (path, id, kind)
 
32
        (path, id, kind, text_modified, meta_modified)
32
33
    unchanged
33
34
        (path, id, kind)
34
35
 
35
36
    Each id is listed only once.
36
37
 
37
38
    Files that are both modified and renamed are listed only in
38
 
    renamed, with the text_modified flag true.
 
39
    renamed, with the text_modified flag true. The text_modified
 
40
    applies either to the the content of the file or the target of the
 
41
    symbolic link, depending of the kind of file.
39
42
 
40
43
    Files are only considered renamed if their name has changed or
41
44
    their parent directory has changed.  Renaming a directory
68
71
            self.modified, self.unchanged)
69
72
 
70
73
    def has_changed(self):
71
 
        changes = len(self.added) + len(self.removed) + len(self.renamed)
72
 
        changes += len(self.modified) 
73
 
        return (changes != 0)
 
74
        return bool(self.modified
 
75
                    or self.added
 
76
                    or self.removed
 
77
                    or self.renamed)
74
78
 
75
79
    def touches_file_id(self, file_id):
76
80
        """Return True if file_id is modified by this delta."""
86
90
 
87
91
    def show(self, to_file, show_ids=False, show_unchanged=False):
88
92
        def show_list(files):
89
 
            for path, fid, kind in files:
 
93
            for item in files:
 
94
                path, fid, kind = item[:3]
 
95
 
90
96
                if kind == 'directory':
91
97
                    path += '/'
92
98
                elif kind == 'symlink':
93
99
                    path += '@'
94
 
                    
 
100
 
 
101
                if len(item) == 5 and item[4]:
 
102
                    path += '*'
 
103
 
95
104
                if show_ids:
96
105
                    print >>to_file, '  %-30s %s' % (path, fid)
97
106
                else:
107
116
 
108
117
        if self.renamed:
109
118
            print >>to_file, 'renamed:'
110
 
            for oldpath, newpath, fid, kind, text_modified in self.renamed:
 
119
            for (oldpath, newpath, fid, kind,
 
120
                 text_modified, meta_modified) in self.renamed:
 
121
                if meta_modified:
 
122
                    newpath += '*'
111
123
                if show_ids:
112
124
                    print >>to_file, '  %s => %s %s' % (oldpath, newpath, fid)
113
125
                else:
160
172
            kind = old_ie.kind
161
173
            assert kind == new_ie.kind
162
174
            
163
 
            assert kind in ('file', 'directory', 'symlink', 'root_directory'), \
 
175
            assert kind in InventoryEntry.known_kinds, \
164
176
                   'invalid file kind %r' % kind
165
177
 
166
178
            if kind == 'root_directory':
171
183
                    and not is_inside_any(specific_files, new_inv.id2path(file_id))):
172
184
                    continue
173
185
 
174
 
            if kind == 'file':
175
 
                old_sha1 = old_tree.get_file_sha1(file_id)
176
 
                new_sha1 = new_tree.get_file_sha1(file_id)
177
 
                text_modified = (old_sha1 != new_sha1)
178
 
            else:
179
 
                ## mutter("no text to check for %r %r" % (file_id, kind))
180
 
                text_modified = False
 
186
            # temporary hack until all entries are populated before clients 
 
187
            # get them
 
188
            old_path = old_inv.id2path(file_id)
 
189
            new_path = new_inv.id2path(file_id)
 
190
            old_ie._read_tree_state(old_path, old_tree)
 
191
            new_ie._read_tree_state(new_path, new_tree)
 
192
            text_modified, meta_modified = new_ie.detect_changes(old_ie)
181
193
 
182
194
            # TODO: Can possibly avoid calculating path strings if the
183
195
            # two files are unchanged and their names and parents are
186
198
            
187
199
            if (old_ie.name != new_ie.name
188
200
                or old_ie.parent_id != new_ie.parent_id):
189
 
                delta.renamed.append((old_inv.id2path(file_id),
190
 
                                      new_inv.id2path(file_id),
 
201
                delta.renamed.append((old_path,
 
202
                                      new_path,
191
203
                                      file_id, kind,
192
 
                                      text_modified))
193
 
            elif text_modified:
194
 
                delta.modified.append((new_inv.id2path(file_id), file_id, kind))
 
204
                                      text_modified, meta_modified))
 
205
            elif text_modified or meta_modified:
 
206
                delta.modified.append((new_path, file_id, kind,
 
207
                                       text_modified, meta_modified))
195
208
            elif want_unchanged:
196
 
                delta.unchanged.append((new_inv.id2path(file_id), file_id, kind))
 
209
                delta.unchanged.append((new_path, file_id, kind))
197
210
        else:
198
211
            kind = old_inv.get_file_kind(file_id)
199
212
            if kind == 'root_directory':