~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/serializer.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-12-10 17:35:37 UTC
  • mfrom: (4849.4.3 2.1.0b4-xml8)
  • Revision ID: pqm@pqm.ubuntu.com-20091210173537-7gui2z64ki7nioit
(jam) Faster conversions by enabling re-use of cached
        InventoryEntries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
        raise NotImplementedError(self.write_inventory_to_string)
51
51
 
52
52
    def read_inventory_from_string(self, string, revision_id=None,
53
 
                                   entry_cache=None):
 
53
                                   entry_cache=None, return_from_cache=False):
54
54
        """Read string into an inventory object.
55
55
 
56
56
        :param string: The serialized inventory to read.
64
64
        :param entry_cache: An optional cache of InventoryEntry objects. If
65
65
            supplied we will look up entries via (file_id, revision_id) which
66
66
            should map to a valid InventoryEntry (File/Directory/etc) object.
 
67
        :param return_from_cache: Return entries directly from the cache,
 
68
            rather than copying them first. This is only safe if the caller
 
69
            promises not to mutate the returned inventory entries, but it can
 
70
            make some operations significantly faster.
67
71
        """
68
72
        raise NotImplementedError(self.read_inventory_from_string)
69
73