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

Improve dependency graph validation #80

Open
ZacSweers opened this issue Dec 24, 2024 · 0 comments
Open

Improve dependency graph validation #80

ZacSweers opened this issue Dec 24, 2024 · 0 comments
Labels
enhancement New feature or request IR

Comments

@ZacSweers
Copy link
Owner

Dependency graph validation could be improved! Currently lattice does validation in one pass and then separately collects bindings that need provider fields. These provider fields are then sorted by codependency to determine init order. This is performant enough but is a little messy. I'd love to streamline this with a little inspiration from dagger, where we track "field generators" while validating the graph and "visit" those generators during our recursion.

Generators would have an internal state of uninitialized, initializing, deferred, and initialized. Every time we visit a type, we get or create a generator and "visit" it. If a generator is reentrantly visited while initializing, it means we have a cycle. If it's a valid cycle, we mark it as deferred and these types will need to use DelegateFactory.

At the end, we collect generators. There may be some duplications from each dfs pass, and in those cases we take either the one that uses delegate factory or any. Generators that result in fields in the end must be one of

  • Scoped (and wrapped in DoubleCheck)
  • Backed by a DelegateFactory
  • Used by multiple dependencies

Finally, any deferred fields will also need a corresponding initializer in the constructor.

If we keep insertion order of these generators as they're visited, my hope is we can infer the init order directly from that (i.e. reverse the order they were added).

@ZacSweers ZacSweers added enhancement New feature or request IR labels Dec 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request IR
Projects
None yet
Development

No branches or pull requests

1 participant