~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Martin Pool
  • Date: 2005-07-08 06:54:58 UTC
  • Revision ID: mbp@sourcefrog.net-20050708065458-2af06c3659faf1d8
- use new path-based hashcache for WorkingTree- squash mtime/ctime to whole seconds- update and if necessary write out hashcache when WorkingTree object is   created.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
from bzrlib.osutils import uuid, quotefn, splitpath, joinpath, appendpath
29
29
from bzrlib.trace import mutter
30
 
from bzrlib.errors import NotVersionedError
31
 
        
32
30
 
33
31
class InventoryEntry(object):
34
32
    """Description of a versioned file.
94
92
    # TODO: split InventoryEntry into subclasses for files,
95
93
    # directories, etc etc.
96
94
 
97
 
    __slots__ = ['text_sha1', 'text_size', 'file_id', 'name', 'kind',
98
 
                 'text_id', 'parent_id', 'children', ]
99
 
 
 
95
    text_sha1 = None
 
96
    text_size = None
 
97
    
100
98
    def __init__(self, file_id, name, kind, parent_id, text_id=None):
101
99
        """Create an InventoryEntry
102
100
        
115
113
        if '/' in name or '\\' in name:
116
114
            raise BzrCheckError('InventoryEntry name %r is invalid' % name)
117
115
        
118
 
        self.text_sha1 = None
119
 
        self.text_size = None
120
 
    
121
116
        self.file_id = file_id
122
117
        self.name = name
123
118
        self.kind = kind
282
277
 
283
278
    >>> [x[0] for x in inv.iter_entries()]
284
279
    ['hello.c']
285
 
    >>> inv = Inventory('TREE_ROOT-12345678-12345678')
286
 
    >>> inv.add(InventoryEntry('123-123', 'hello.c', 'file', ROOT_ID))
287
280
    """
288
 
    def __init__(self, root_id=ROOT_ID):
 
281
    def __init__(self):
289
282
        """Create or read an inventory.
290
283
 
291
284
        If a working directory is specified, the inventory is read
295
288
        The inventory is created with a default root directory, with
296
289
        an id of None.
297
290
        """
298
 
        # We are letting Branch(init=True) create a unique inventory
299
 
        # root id. Rather than generating a random one here.
300
 
        #if root_id is None:
301
 
        #    root_id = bzrlib.branch.gen_file_id('TREE_ROOT')
302
 
        self.root = RootEntry(root_id)
 
291
        self.root = RootEntry(ROOT_ID)
303
292
        self._byid = {self.root.file_id: self.root}
304
293
 
305
294
 
411
400
        if entry.file_id in self._byid:
412
401
            raise BzrError("inventory already contains entry with id {%s}" % entry.file_id)
413
402
 
414
 
        if entry.parent_id == ROOT_ID or entry.parent_id is None:
415
 
            entry.parent_id = self.root.file_id
416
 
 
417
403
        try:
418
404
            parent = self._byid[entry.parent_id]
419
405
        except KeyError:
431
417
        """Add entry from a path.
432
418
 
433
419
        The immediate parent must already be versioned"""
434
 
        from bzrlib.branch import gen_file_id
 
420
        from bzrlib.errors import NotVersionedError
435
421
        
436
422
        parts = bzrlib.osutils.splitpath(relpath)
437
423
        if len(parts) == 0:
438
424
            raise BzrError("cannot re-add root of inventory")
439
425
 
440
426
        if file_id == None:
 
427
            from bzrlib.branch import gen_file_id
441
428
            file_id = gen_file_id(relpath)
442
429
 
443
430
        parent_path = parts[:-1]
482
469
        
483
470
        e = Element('inventory')
484
471
        e.text = '\n'
485
 
        if self.root.file_id not in (None, ROOT_ID):
486
 
            e.set('file_id', self.root.file_id)
487
472
        for path, ie in self.iter_entries():
488
473
            e.append(ie.to_element())
489
474
        return e
501
486
        """
502
487
        # XXXX: doctest doesn't run this properly under python2.3
503
488
        assert elt.tag == 'inventory'
504
 
        root_id = elt.get('file_id') or ROOT_ID
505
 
        o = cls(root_id)
 
489
        o = cls()
506
490
        for e in elt:
507
 
            ie = InventoryEntry.from_element(e)
508
 
            if ie.parent_id == ROOT_ID:
509
 
                ie.parent_id = root_id
510
 
            o.add(ie)
 
491
            o.add(InventoryEntry.from_element(e))
511
492
        return o
512
493
        
513
494
    from_element = classmethod(from_element)
569
550
        """Return as a list the path to file_id."""
570
551
 
571
552
        # get all names, skipping root
572
 
        p = [self._byid[fid].name for fid in self.get_idpath(file_id)[1:]]
 
553
        p = [self[fid].name for fid in self.get_idpath(file_id)[1:]]
573
554
        return os.sep.join(p)
574
555
            
575
556