~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-09 14:43:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: john@arbash-meinel.com-20060809144327-d604af2edf646794
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005, 2006 Canonical
2
 
 
 
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
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
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
from bzrlib.inventory import InventoryEntry
18
18
from bzrlib.trace import mutter
 
19
from bzrlib.symbol_versioning import deprecated_function, zero_ten
19
20
 
20
21
 
21
22
class TreeDelta(object):
90
91
            
91
92
 
92
93
    def show(self, to_file, show_ids=False, show_unchanged=False):
 
94
        """output this delta in status-like form to to_file."""
93
95
        def show_list(files):
94
96
            for item in files:
95
97
                path, fid, kind = item[:3]
141
143
            show_list(self.unchanged)
142
144
 
143
145
 
144
 
 
145
 
def compare_trees(old_tree, new_tree, want_unchanged=False, specific_files=None):
146
 
    """Describe changes from one tree to another.
147
 
 
148
 
    Returns a TreeDelta with details of added, modified, renamed, and
149
 
    deleted entries.
150
 
 
151
 
    The root entry is specifically exempt.
152
 
 
153
 
    This only considers versioned files.
154
 
 
155
 
    want_unchanged
156
 
        If true, also list files unchanged from one version to
157
 
        the next.
158
 
 
159
 
    specific_files
160
 
        If true, only check for changes to specified names or
161
 
        files within them.  Any unversioned files given have no effect
162
 
        (but this might change in the future).
163
 
    """
164
 
    # NB: show_status depends on being able to pass in non-versioned files and
165
 
    # report them as unknown
166
 
    old_tree.lock_read()
167
 
    try:
168
 
        new_tree.lock_read()
169
 
        try:
170
 
            return _compare_trees(old_tree, new_tree, want_unchanged,
171
 
                                  specific_files)
172
 
        finally:
173
 
            new_tree.unlock()
174
 
    finally:
175
 
        old_tree.unlock()
176
 
 
177
 
 
178
 
def _compare_trees(old_tree, new_tree, want_unchanged, specific_files):
 
146
@deprecated_function(zero_ten)
 
147
def compare_trees(old_tree, new_tree, want_unchanged=False,
 
148
                  specific_files=None, extra_trees=None,
 
149
                  require_versioned=False):
 
150
    """compare_trees was deprecated in 0.10. Please see Tree.changes_from."""
 
151
    return new_tree.changes_from(old_tree,
 
152
        want_unchanged=want_unchanged,
 
153
        specific_files=specific_files,
 
154
        extra_trees=extra_trees,
 
155
        require_versioned=require_versioned)
 
156
 
 
157
 
 
158
def _compare_trees(old_tree, new_tree, want_unchanged, specific_file_ids):
179
159
 
180
160
    from osutils import is_inside_any
181
161
    
186
166
 
187
167
    # TODO: Rather than iterating over the whole tree and then filtering, we
188
168
    # could diff just the specified files (if any) and their subtrees.  
189
 
    # Perhaps should take a list of file-ids instead?   Need to indicate any
190
 
    # ids or names which were not found in the trees.
191
169
 
192
170
    old_files = old_tree.list_files()
193
171
    new_files = new_tree.list_files()
211
189
        """We have matched up 2 file_ids, check for changes."""
212
190
        assert old_entry.kind == new_entry.kind
213
191
 
214
 
        if old_entry.kind == 'root_directory':
215
 
            return
216
 
 
217
 
        if specific_files:
218
 
            if (not is_inside_any(specific_files, old_path)
219
 
                and not is_inside_any(specific_files, new_path)):
 
192
        if specific_file_ids:
 
193
            if (old_entry.file_id not in specific_file_ids and 
 
194
                new_entry.file_id not in specific_file_ids):
220
195
                return
221
196
 
222
197
        # temporary hack until all entries are populated before clients 
314
289
 
315
290
    # Now we have a set of added and removed files, mark them all
316
291
    for old_path, old_entry in removed.itervalues():
317
 
        if specific_files:
318
 
            if not is_inside_any(specific_files, old_path):
 
292
        if specific_file_ids:
 
293
            if not old_entry.file_id in specific_file_ids:
319
294
                continue
320
295
        delta.removed.append((old_path, old_entry.file_id, old_entry.kind))
321
296
    for new_path, new_entry in added.itervalues():
322
 
        if specific_files:
323
 
            if not is_inside_any(specific_files, new_path):
 
297
        if specific_file_ids:
 
298
            if not new_entry.file_id in specific_file_ids:
324
299
                continue
325
300
        delta.added.append((new_path, new_entry.file_id, new_entry.kind))
326
301