/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

Use BZR_PLUGINS_AT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
200
200
 
201
201
class GitInventory(inventory.Inventory):
202
202
 
203
 
    def __repr__(self):
204
 
        return "<%s for %r in %r>" % (self.__class__.__name__,
205
 
                self.root.hexsha, self.store)
206
 
 
207
203
    def __init__(self, tree_id, mapping, fileid_map, store, revision_id):
208
204
        super(GitInventory, self).__init__(revision_id=revision_id)
209
205
        self.store = store
212
208
        self.root = GitInventoryDirectory(self, None, tree_id, u"", u"", False)
213
209
 
214
210
    def _get_ie(self, path):
215
 
        if path == "" or path == []:
 
211
        if path == "":
216
212
            return self.root
217
 
        if isinstance(path, basestring):
218
 
            parts = path.split("/")
219
 
        else:
220
 
            parts = path
 
213
        parts = path.split("/")
221
214
        ie = self.root
222
215
        for name in parts:
223
216
            ie = ie.children[name]
264
257
class GitIndexInventory(inventory.Inventory):
265
258
    """Inventory that retrieves its contents from an index file."""
266
259
 
267
 
    def __repr__(self):
268
 
        return "<%s for %r>" % (self.__class__.__name__, self.index)
269
 
 
270
260
    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)
 
261
        super(GitIndexInventory, self).__init__(revision_id=None, root_id=basis_inventory.root.file_id)
276
262
        self.basis_inv = basis_inventory
277
263
        self.fileid_map = fileid_map
278
264
        self.index = index
311
297
        return super(GitIndexInventory, self).id2path(file_id)
312
298
 
313
299
    def path2id(self, path):
314
 
        if type(path) in (list, tuple):
315
 
            path = "/".join(path)
316
300
        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
 
301
            return self.fileid_map.lookup_file_id(path)
 
302
        self._read_contents()
 
303
        return super(GitIndexInventory, self).path2id(path)
324
304
 
325
305
    def __getitem__(self, file_id):
326
306
        self._read_contents()
338
318
                assert isinstance(path, str)
339
319
                assert isinstance(value, tuple) and len(value) == 10
340
320
                (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:
 
321
                try:
 
322
                    old_ie = self.basis_inv._get_ie(path)
 
323
                except KeyError:
347
324
                    old_ie = None
348
325
                if old_ie is None:
349
326
                    file_id = self.fileid_map.lookup_file_id(path)
379
356
                parent_fid = self.add_parents(dirname)
380
357
            ie = self.add_path(dirname, 'directory',
381
358
                    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:
 
359
            if ie.file_id in self.basis_inv:
383
360
                ie.revision = self.basis_inv[ie.file_id].revision
384
361
            file_id = ie.file_id
385
362
        if type(file_id) != str: