Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PERFO] Handling of cross-document refs has an important impact on performance #19

Open
cbrun opened this issue Mar 15, 2023 · 2 comments

Comments

@cbrun
Copy link

cbrun commented Mar 15, 2023

From a decent size model, which have no inter document cross ref but quite a few internal references.
EObjects: 3894
References with values: 3121

And using:
String json = JsonResourceImpl.toJson(r, Collections.EMPTY_MAP);

Serialization of my model takes 77606 ms (77 secs) which seems a lot compared to serialization/deserialization using BinaryResource which takes about 400ms.

String size:7126813 time: 77606 ms.

After profiling in tracing mode, in my case it all comes down to : org.eclipse.sirius.emfjson.utils.GsonEObjectSerializer.docKindMany(EObject, EReference)
and the following code which, I assume, try to detect whether there is a cross document reference to serialize:

        Iterator<? extends InternalEObject> it = internalEList.iterator();
        while (referenceType != GsonEObjectSerializer.SKIP && referenceType != GsonEObjectSerializer.CROSS_DOC && it.hasNext()) {
            InternalEObject internalEObject = it.next();
            if (internalEObject.eIsProxy()) {
                referenceType = GsonEObjectSerializer.CROSS_DOC;
            } else {
                Resource resource = internalEObject.eResource();
                if (resource != this.helper.getResource() && resource != null) {
                    referenceType = GsonEObjectSerializer.CROSS_DOC;
                }
            }
        }

brute force approach of commenting out this code (which should not be used in my case) lead to

 String size:7126813 time: 746 ms.

which is 100 times faster, and give the exact same result.

@cbrun
Copy link
Author

cbrun commented Mar 15, 2023

I guess some logic in org.eclipse.emf.ecore.resource.impl.BinaryResourceImpl.EObjectOutputStream.saveEObject(InternalEObject, Check) could be reused as it seems to handle the cross document references case correctly, while keeping good performances.

@cbrun
Copy link
Author

cbrun commented Mar 17, 2023

After a slightly deeper analysis: the calling code resolve the reference list value, and iterates over it, and the submethod docKindMany(EObject, EReference) will do that again, leading to n*n complexity with n being the size of my list.

cbrun added a commit to cbrun/sirius-emf-json that referenced this issue Mar 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant