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

[derive] support generic Tree types of generic depth #192

Closed
ryan-summers opened this issue Mar 22, 2024 · 4 comments · Fixed by #256
Closed

[derive] support generic Tree types of generic depth #192

ryan-summers opened this issue Mar 22, 2024 · 4 comments · Fixed by #256
Labels
derive enhancement New feature or request

Comments

@ryan-summers
Copy link
Member

Currently, it doesn't seem possible to do the following properly:

struct A<T: TreeKey<Y>, const Y: usize> {
    inner: T,
    outer: u32,
}

We would need to annotate the inner: T with #[tree(depth(Y))], but the current depth parsing requires an integer. The depth isn't known until compile time, but is known to be Y >= 1. It seems like the depth should optionally take this compile-time generic as well.

@ryan-summers
Copy link
Member Author

Hmm, it's actually not possible to know what the depth of the outer structure should be when a generic depth is present. I.e. what if you have one item marked as #[tree(depth(3))] and another with #[tree(depth(Y))]. Should we implement TreeKey<Y+1> or TreeKey<4>? It's possible that Y could be both greater than or less than 3.

I think we can probably just work around this for now by mandating:

  1. Only a single generic depth may be used in a structure
  2. Any generic depth will automatically be assumed to be the deepest component of the tree.

If we have a future use case, we could add more macros to override these assumptions.

@jordens
Copy link
Member

jordens commented Mar 22, 2024

The issue is the generic depth Y here, not the generic type T. With fixed Y it should work fine (

fn generic_atomic() {
)

You could blanket generate the impls in the derive macro for many Y (like it's done for arrays). Or we'd need to make the the derive explicitly derive only one Y and stop auto-detecting/auto-guessing it.

@ryan-summers
Copy link
Member Author

ryan-summers commented Mar 22, 2024

I think a blanket implementation is actually the only way. Arithmetic on const generics (i.e. impl TreeKey<{Y + 1}>) is not stable currently.

@ryan-summers ryan-summers changed the title Derive Tree for structs containing generic Tree types Derive Tree for structs containing generic Tree types of generic depth Mar 25, 2024
@jordens jordens added the enhancement New feature or request label Jul 10, 2024
@jordens jordens changed the title Derive Tree for structs containing generic Tree types of generic depth [derive] support generic Tree types of generic depth Sep 30, 2024
@jordens
Copy link
Member

jordens commented Sep 30, 2024

One problem would be that a generic field type may not be dominating the overall depth. Then the outer detph would not determine the inner depth in all cases. The offset would have to be constant. And Y1,Y2 combinations of a struct with multiple inner generic types with generic depth would be impossible unless Y1 = Y2 + constant.
A way to do this may be to support depth: Vec<usize> on fields and then determine the fixed offset.

@jordens jordens added the derive label Sep 30, 2024
@jordens jordens linked a pull request Oct 23, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
derive enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants