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

Switch to ImDocument in BevyManifest #18272

Merged
merged 3 commits into from
Mar 12, 2025

Conversation

bushrat011899
Copy link
Contributor

@bushrat011899 bushrat011899 commented Mar 12, 2025

Objective

When reviewing #18263, I noticed that BevyManifest internally stores a DocumentMut, a mutable TOML document, instead of an ImDocument, an immutable one. The process of creating a DocumentMut first involves creating a ImDocument and then cloning all the referenced spans of text into their own allocations (internally referred to as despan in toml_edit). As such, using a DocumentMut without mutation is strictly additional overhead.

In addition, I noticed that the filesystem operations associated with reading a manifest and parsing it were written to be completed while a write-lock was held on MANIFESTS. This likely doesn't translate into a performance or deadlock issue as the manifest files are generally small and can be read quickly, but it is generally considered a bad practice.

Solution

  • Switched to ImDocument<Box<str>> instead of DocumentMut
  • Re-ordered operations in BevyManifest::shared to minimise time spent holding open the write-lock on MANIFESTS

Testing

  • CI

Notes

I wasn't able to measure a meaningful performance difference with this PR, so this is purely a code quality change and not one for performance.

Reduces overhead compared to creating a `DocumentMut` and better communicates intent.
@bushrat011899 bushrat011899 added D-Trivial Nice and easy! A great choice to get started with Bevy C-Code-Quality A section of code that is hard to understand or change A-Utils Utility functions and types X-Uncontroversial This work is generally agreed upon S-Needs-Review Needs reviewer attention (from anyone!) to move forward labels Mar 12, 2025
@alice-i-cecile alice-i-cecile requested a review from cart March 12, 2025 07:47
@@ -34,14 +34,15 @@ impl BevyManifest {
return manifest;
}
}

let key = manifest_path.clone();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: is there a reason the definition of key is up here and not by its usage?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Purely because it's a boxed string (so cloning requires allocation), and we take a write lock. Similar to the filesystem operations, allocating involves syscalls and can block, so in general you want to do as little within the locked scope as possible.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I moved it right above the write lock to satisfy both constraints!

@MrGVSV MrGVSV added S-Ready-For-Final-Review This PR has been approved by the community. It's ready for a maintainer to consider merging it and removed S-Needs-Review Needs reviewer attention (from anyone!) to move forward labels Mar 12, 2025
@alice-i-cecile
Copy link
Member

Leaving this for @cart to merge for now, mostly because I think it's good for him to see it :)

Copy link
Member

@cart cart left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good calls all around!

@cart cart enabled auto-merge March 12, 2025 19:58
@cart cart added this pull request to the merge queue Mar 12, 2025
Merged via the queue into bevyengine:main with commit dc7cb2a Mar 12, 2025
31 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-Utils Utility functions and types C-Code-Quality A section of code that is hard to understand or change D-Trivial Nice and easy! A great choice to get started with Bevy S-Ready-For-Final-Review This PR has been approved by the community. It's ready for a maintainer to consider merging it X-Uncontroversial This work is generally agreed upon
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants