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

Tracking Issue for #[global_registration] #125119

Open
4 of 20 tasks
jdonszelmann opened this issue May 14, 2024 · 5 comments
Open
4 of 20 tasks

Tracking Issue for #[global_registration] #125119

jdonszelmann opened this issue May 14, 2024 · 5 comments
Labels
C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. F-global_registration `#![feature(global_registration)]` T-lang Relevant to the language team, which will review and decide on the PR/issue.

Comments

@jdonszelmann
Copy link
Contributor

jdonszelmann commented May 14, 2024

This is a tracking issue for the global registration experiment.
The feature gate for the issue is #![feature(global_registration)].

Global registration has previously been discussed on internals.rust-lang.org and a proposal was made on the testing devex team with @epage . Specific syntax has not been discussed yet, which is part of what this experiment is going to figure out. Likely, a first implementation will use built-in attribute macros.

About tracking issues

Tracking issues are used to record the overall progress of implementation. They are also used as hubs connecting to other relevant issues, e.g., bugs or open design questions. A tracking issue is however not meant for large scale discussion, questions, or bug reports about a feature. Instead, open a dedicated issue for the specific matter and add the relevant feature gate label. Discussion comments will get marked as off-topic or deleted. Repeated discussions on the tracking issue may lead to the tracking issue getting locked.

Steps

  • Get lang experiment approved. (@scottmcm is liaisoning me)
  • Land the experimental implementation in nightly.
    • Experimental feature flag: Add an experimental feature gate for global registration #125314 (now available on nightly)
    • Update core/std with a new global_registration module (implemented on forked branch)
    • Add new built-in macros to rust to create and add to global registries (implemented on forked branch)
    • Propagate global registries through the AST and HIR, also performing name resolution (implemented on forked branch)
    • Write docs for core::global_registration
    • Check whether #[global_registry] defenitions have the right wrapper type (Registry<T>)
    • Actually create nice errors instead of panicking in unexpected cases
    • tests for
      • errors generated
      • doc(alias) (not entirely sure about my current implementation, so test that)
      • the right has_codegen_attrs, I'm not sure I did that right
      • privacy of global registries
    • Add global registries to RustDoc
    • Check if my sym::anon in definition.rs is correct
  • Accept an RFC
  • Adjust documentation (see instructions on rustc-dev-guide)
  • Formatting for new syntax has been added to the Style Guide (nightly-style-procedure)
  • Stabilization PR (see instructions on rustc-dev-guide)

Unresolved Questions

TODO

Implementation history

TODO

Current proposed syntax

use core::global_registration::{global_registry, register, Registry};

#[global_registry]
static ERROR_MSGS: Registry<&str>;

register!(ERROR_MSGS, "a");
register!(ERROR_MSGS, "b", "c");

fn main() {
    for msg in ERROR_MSGS {
        println!("{}", msg);
    }
}
@jdonszelmann jdonszelmann added the C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. label May 14, 2024
@jdonszelmann
Copy link
Contributor Author

@rustbot label +F-global_registration +T-lang

@BoxyUwU BoxyUwU added the T-lang Relevant to the language team, which will review and decide on the PR/issue. label May 14, 2024
@jieyouxu jieyouxu added the F-global_registration `#![feature(global_registration)]` label May 15, 2024
matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue May 20, 2024
…eature-gate, r=pnkfelix

 Add an experimental feature gate for global registration

See rust-lang#125119 for the tracking issue.
rust-timer added a commit to rust-lang-ci/rust that referenced this issue May 20, 2024
Rollup merge of rust-lang#125314 - jdonszelmann:global-registration-feature-gate, r=pnkfelix

 Add an experimental feature gate for global registration

See rust-lang#125119 for the tracking issue.
@camsteffen
Copy link
Contributor

Another use case: I think Clippy could use this to register more Symbol constants like sym::*.

@bjorn3
Copy link
Member

bjorn3 commented May 24, 2024

You did have to be careful to ensure that the crate metadata encoder doesn't consider those extra symbol constants as preinterned, otherwise rustc won't be able to decode metadata generated by clippy. Also clippy uses rustc as dylib, so for clippy to use #[global_registration] dylibs would have to be supported.

@Indra-db
Copy link

Indra-db commented May 31, 2024

A potential use case for this could be to is assign meta data to a type.

In my particular use case, assigning an id / index "static" to each type.

Currently Rust doesn't support generic statics due to issues on windows with dylib, but this could potentially be used instead? Would global registration allow for such use case?

See relevant discussion (before and after) here: https://discord.com/channels/273534239310479360/592856094527848449/1246014749288955945

@T-Dark0
Copy link

T-Dark0 commented May 31, 2024

To elaborate a bit, as I was in that discussion:

The goal here is to generate a per-type identifier that, for FFI/stability reasons, cannot be TypeId. This identifier also needs to consider different instantiations of the same generic type to be different types, and must be generated at runtime, which rules out doing this in const

The C++ way of doing this is approximately equivalent to a OnceLocked local static variable inside a function of a template class, which causes the variable to be duplicated per instantiation of the template class. This doesn't work in Rust, as the local static will, just like all local items do, behave as if it had been written at the top scope in all except its own scope.

The idea here, from our discussion, is to ensure that register!, or whatever replaces it in the eventual syntax, can be called from inside a monomorphised function, and behaves more like an expression than an item, allowing it, and its "initializers" (assuming a syntax like register!(registry, initializers)), to access generics from the enclosing scope much like const {} blocks, and performing one registration per instantiation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. F-global_registration `#![feature(global_registration)]` T-lang Relevant to the language team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

7 participants