ole32: Rewrite transacted storage to be more lazy.
commitd07a4868a11a282acafa4cefcf3cac53da82277d
authorVincent Povirk <vincent@codeweavers.com>
Wed, 5 May 2010 19:23:12 +0000 (5 14:23 -0500)
committerAlexandre Julliard <julliard@winehq.org>
Thu, 6 May 2010 15:55:34 +0000 (6 17:55 +0200)
tree7970d99893e5ac4e7244a19dfaec62f2d5721d2f
parentd92ed5bd079fc83ba30e17bb9776ad8db8c316a7
ole32: Rewrite transacted storage to be more lazy.

When creating a new transacted storage object (or reverting an
existing one), rather than copy the original storage, we simply create
a "stub directory entry" for the root. As stub entries are accessed,
we fill in their data from the parent and create new stubs for any
linked entries. The streams have copy on write semantics - reads are
from the original entry until a change is made, then we make a copy in
the scratch file.

When committing transacted storages, we have to create a new tree with
the new data so that the storage entry can be modified in one step,
but unmodified sections of the tree can now be shared between the new
tree and the old. An entry can be shared if it and all entries
reachable from it are unmodified. In the trivial case where nothing
has been modified, we don't have to make a new tree at all.
dlls/ole32/storage32.c