~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Martin Pool
  • Date: 2005-07-04 12:26:02 UTC
  • Revision ID: mbp@sourcefrog.net-20050704122602-69901910521e62c3
- check command checks that all inventory-ids are the same as in the revision.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
    # TODO: split InventoryEntry into subclasses for files,
93
93
    # directories, etc etc.
94
94
 
95
 
    __slots__ = ['text_sha1', 'text_size', 'file_id', 'name', 'kind',
96
 
                 'text_id', 'parent_id', 'children', ]
97
 
 
 
95
    text_sha1 = None
 
96
    text_size = None
 
97
    
98
98
    def __init__(self, file_id, name, kind, parent_id, text_id=None):
99
99
        """Create an InventoryEntry
100
100
        
113
113
        if '/' in name or '\\' in name:
114
114
            raise BzrCheckError('InventoryEntry name %r is invalid' % name)
115
115
        
116
 
        self.text_sha1 = None
117
 
        self.text_size = None
118
 
    
119
116
        self.file_id = file_id
120
117
        self.name = name
121
118
        self.kind = kind
280
277
 
281
278
    >>> [x[0] for x in inv.iter_entries()]
282
279
    ['hello.c']
283
 
    >>> inv = Inventory('TREE_ROOT-12345678-12345678')
284
 
    >>> inv.add(InventoryEntry('123-123', 'hello.c', 'file', ROOT_ID))
285
280
    """
286
 
    def __init__(self, root_id=ROOT_ID):
 
281
    def __init__(self):
287
282
        """Create or read an inventory.
288
283
 
289
284
        If a working directory is specified, the inventory is read
293
288
        The inventory is created with a default root directory, with
294
289
        an id of None.
295
290
        """
296
 
        # We are letting Branch(init=True) create a unique inventory
297
 
        # root id. Rather than generating a random one here.
298
 
        #if root_id is None:
299
 
        #    root_id = bzrlib.branch.gen_file_id('TREE_ROOT')
300
 
        self.root = RootEntry(root_id)
 
291
        self.root = RootEntry(ROOT_ID)
301
292
        self._byid = {self.root.file_id: self.root}
302
293
 
303
294
 
409
400
        if entry.file_id in self._byid:
410
401
            raise BzrError("inventory already contains entry with id {%s}" % entry.file_id)
411
402
 
412
 
        if entry.parent_id == ROOT_ID or entry.parent_id is None:
413
 
            entry.parent_id = self.root.file_id
414
 
 
415
403
        try:
416
404
            parent = self._byid[entry.parent_id]
417
405
        except KeyError:
481
469
        
482
470
        e = Element('inventory')
483
471
        e.text = '\n'
484
 
        if self.root.file_id not in (None, ROOT_ID):
485
 
            e.set('file_id', self.root.file_id)
486
472
        for path, ie in self.iter_entries():
487
473
            e.append(ie.to_element())
488
474
        return e
490
476
 
491
477
    def from_element(cls, elt):
492
478
        """Construct from XML Element
493
 
        
 
479
 
494
480
        >>> inv = Inventory()
495
481
        >>> inv.add(InventoryEntry('foo.c-123981239', 'foo.c', 'file', ROOT_ID))
496
482
        >>> elt = inv.to_element()
498
484
        >>> inv2 == inv
499
485
        True
500
486
        """
501
 
        # XXXX: doctest doesn't run this properly under python2.3
502
487
        assert elt.tag == 'inventory'
503
 
        root_id = elt.get('file_id') or ROOT_ID
504
 
        o = cls(root_id)
 
488
        o = cls()
505
489
        for e in elt:
506
 
            ie = InventoryEntry.from_element(e)
507
 
            if ie.parent_id == ROOT_ID:
508
 
                ie.parent_id = root_id
509
 
            o.add(ie)
 
490
            o.add(InventoryEntry.from_element(e))
510
491
        return o
511
492
        
512
493
    from_element = classmethod(from_element)
568
549
        """Return as a list the path to file_id."""
569
550
 
570
551
        # get all names, skipping root
571
 
        p = [self._byid[fid].name for fid in self.get_idpath(file_id)[1:]]
 
552
        p = [self[fid].name for fid in self.get_idpath(file_id)[1:]]
572
553
        return os.sep.join(p)
573
554
            
574
555