/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to inventory.py

Avoid caching negatives.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
        self.path = path
51
51
        self.revision = self._inventory.revision_id
52
52
        self.executable = executable
53
 
        self.file_id = self._inventory.fileid_map.lookup_file_id(
 
53
        self.file_id = self._inventory.mapping.generate_file_id(
54
54
            path.encode('utf-8'))
55
55
 
56
56
    @property
179
179
        for mode, name, hexsha in self.object.entries():
180
180
            basename = name.decode("utf-8")
181
181
            child_path = osutils.pathjoin(self.path, basename)
182
 
            if self._inventory.mapping.is_control_file(child_path):
183
 
                continue
184
182
            executable = mode_is_executable(mode)
185
183
            kind_class = {'directory': GitInventoryDirectory,
186
184
                          'file': GitInventoryFile,
200
198
 
201
199
class GitInventory(inventory.Inventory):
202
200
 
203
 
    def __repr__(self):
204
 
        return "<%s for %r in %r>" % (self.__class__.__name__,
205
 
                self.root.hexsha, self.store)
206
 
 
207
 
    def __init__(self, tree_id, mapping, fileid_map, store, revision_id):
 
201
    def __init__(self, tree_id, mapping, store, revision_id):
208
202
        super(GitInventory, self).__init__(revision_id=revision_id)
209
203
        self.store = store
210
 
        self.fileid_map = fileid_map
211
204
        self.mapping = mapping
212
205
        self.root = GitInventoryDirectory(self, None, tree_id, u"", u"", False)
213
206
 
214
207
    def _get_ie(self, path):
215
 
        if path == "" or path == []:
 
208
        if path == "":
216
209
            return self.root
217
 
        if isinstance(path, basestring):
218
 
            parts = path.split("/")
219
 
        else:
220
 
            parts = path
 
210
        parts = path.split("/")
221
211
        ie = self.root
222
212
        for name in parts:
223
213
            ie = ie.children[name]
238
228
            return False
239
229
 
240
230
    def id2path(self, file_id):
241
 
        path = self.fileid_map.lookup_path(file_id)
 
231
        path = self.mapping.parse_file_id(file_id)
242
232
        try:
243
233
            ie = self._get_ie(path)
244
234
            assert ie.path == path
254
244
    def __getitem__(self, file_id):
255
245
        if file_id == inventory.ROOT_ID:
256
246
            return self.root
257
 
        path = self.fileid_map.lookup_path(file_id)
 
247
        path = self.mapping.parse_file_id(file_id)
258
248
        try:
259
249
            return self._get_ie(path)
260
250
        except KeyError:
264
254
class GitIndexInventory(inventory.Inventory):
265
255
    """Inventory that retrieves its contents from an index file."""
266
256
 
267
 
    def __repr__(self):
268
 
        return "<%s for %r>" % (self.__class__.__name__, self.index)
269
 
 
270
 
    def __init__(self, basis_inventory, fileid_map, index, store):
271
 
        if basis_inventory is None:
272
 
            root_id = None
273
 
        else:
274
 
            root_id = basis_inventory.root.file_id
275
 
        super(GitIndexInventory, self).__init__(revision_id=None, root_id=root_id)
 
257
    def __init__(self, basis_inventory, mapping, index, store):
 
258
        super(GitIndexInventory, self).__init__(revision_id=None, root_id=basis_inventory.root.file_id)
276
259
        self.basis_inv = basis_inventory
277
 
        self.fileid_map = fileid_map
 
260
        self.mapping = mapping
278
261
        self.index = index
279
262
        self._contents_read = False
280
263
        self.store = store
281
264
        self.root = self.add_path("", 'directory',
282
 
            self.fileid_map.lookup_file_id(""), None)
 
265
            self.mapping.generate_file_id(""), None)
283
266
 
284
267
    def iter_entries_by_dir(self, specific_file_ids=None, yield_parents=False):
285
268
        self._read_contents()
304
287
    def id2path(self, file_id):
305
288
        if type(file_id) != str:
306
289
            raise AssertionError
307
 
        path = self.fileid_map.lookup_path(file_id)
 
290
        path = self.mapping.parse_file_id(file_id)
308
291
        if path in self.index:
309
292
            return path
310
293
        self._read_contents()
311
294
        return super(GitIndexInventory, self).id2path(file_id)
312
295
 
313
296
    def path2id(self, path):
314
 
        if type(path) in (list, tuple):
315
 
            path = "/".join(path)
316
297
        if path in self.index:
317
 
            file_id = self.fileid_map.lookup_file_id(path)
318
 
        else:
319
 
            self._read_contents()
320
 
            file_id = super(GitIndexInventory, self).path2id(path)
321
 
        if file_id is not None and type(file_id) is not str:
322
 
            raise AssertionError
323
 
        return file_id
 
298
            return self.mapping.generate_file_id(path)
 
299
        self._read_contents()
 
300
        return super(GitIndexInventory, self).path2id(path)
324
301
 
325
302
    def __getitem__(self, file_id):
326
303
        self._read_contents()
338
315
                assert isinstance(path, str)
339
316
                assert isinstance(value, tuple) and len(value) == 10
340
317
                (ctime, mtime, dev, ino, mode, uid, gid, size, sha, flags) = value
341
 
                if self.basis_inv is not None:
342
 
                    try:
343
 
                        old_ie = self.basis_inv._get_ie(path)
344
 
                    except KeyError:
345
 
                        old_ie = None
346
 
                else:
 
318
                try:
 
319
                    old_ie = self.basis_inv._get_ie(path)
 
320
                except KeyError:
347
321
                    old_ie = None
348
322
                if old_ie is None:
349
 
                    file_id = self.fileid_map.lookup_file_id(path)
 
323
                    file_id = self.mapping.generate_file_id(path)
350
324
                else:
351
325
                    file_id = old_ie.file_id
352
326
                if type(file_id) != str:
378
352
            else:
379
353
                parent_fid = self.add_parents(dirname)
380
354
            ie = self.add_path(dirname, 'directory',
381
 
                    self.fileid_map.lookup_file_id(dirname), parent_fid)
382
 
            if self.basis_inv is not None and ie.file_id in self.basis_inv:
 
355
                    self.mapping.generate_file_id(dirname), parent_fid)
 
356
            if ie.file_id in self.basis_inv:
383
357
                ie.revision = self.basis_inv[ie.file_id].revision
384
358
            file_id = ie.file_id
385
359
        if type(file_id) != str: