Persist object with LazyObjectStorages

612 Views Asked by At

I am currently implementing a web application in TYPO3 7/Extbase which has a complex object structure consisting of a root object and a tree of child objects.

Let's say it resembles a more complex version of:

Object A <--1:n--> Object B <--1:n--> Object C

Since instances of object a are aggregate roots I use an Object-A-Repository to persist the tree.

This worked well, for performance reasons I switched many of the relations to lazy loading though (making their object stoages lazy). This sped up the application immensely, but not all update() calls to the Object-A-Repository seem to work anymore. The problem occurs in cases where a method receives an object of type C, changes it and needs to persist the changes. C has parent links to his parent B, and B has a parent link to A (the lazy object storage's counterparts).

The problem seems to be related to the LazyObjectStorages not replacing themselves with the actual content (because the A object didn't use it's "side" of the relation in this case). If I call DebuggerUtility::var_dump() on the object before updating it, persistence works perfectly. If I don't, the database does not change.

Is there a way to force an object to load all it's lazy storages? Or should I go about solving this another way?

1

There are 1 best solutions below

0
On

If one action does only change Object C, why dont use a separat Repository for that model? You can very easily provide a repository in extbase.

I dont see any bad practice or problem in this case. By default typo3 will only persist the number of relations into the database field for objects_c, so you only need to persist changes via the aggregate root, if you add or remove objects. A simple update would work perfectly fine using a sub repository for ObjectC.

If you really need to do it via the aggregate root, you should make sure there is no LazyObjectStorage anymore.

By invoking one function of the concrete object, LazyObjectStorage will exchange its parents property (so the pointer to itself) with the real ObjectStorage.

For example

$objectA->getObjectsB()->current();

will set the property objectsB in $objectA as ObjectStorage (with all relations).

Other methods like $objectA->getObjectsB()->toArray() will work too of course.