-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Alternatives to rustc_plugin::registry for (Servo’s) custom lints? #62868
Comments
However, nowadays you could just link against |
My knowledge is long out of date, but the lints themselves are only seen as a stopgap solution until Rust provides some sort of first-class way to integrate with an external garbage collector, yes? If we're considering what alternative mechanisms could be added to solve this problem, then it makes sense to also consider what it would take to get rid of Servo's lints entirely. Does Servo have an issue for tracking such a thing? |
@bstrie It would be nice to move over to something like Josephine (https://github.com/asajeffrey/josephine) which integrates JS's GC into the Rust lifetime system. Josephine is a proof-of-concept, and we hit the point of validating the principal of the library, but not a plan of how to scale it to something like Servo, and what the migration path would look like. The main problem is that Josephine follows SpiderMonkey in passing around a The issue for this (though it's pretty sparse) is servo/servo#8732 |
We were part of a discussion with the lang team folks about GC design. Eventually, the discussion petered out because "servo is fine with its lints" (we were!). I documented the state of our work there in https://manishearth.github.io/blog/2016/08/18/gc-support-in-rust-api-design/ . It's a hard problem to solve and will take much more work. Josephine is promising but is also a huge refactor. We're mostly happy using the unstable plugin API here. |
What about non-Josephine solutions, though, such as encoding the lint conditions in I keep suggesting something like this once in a while but I haven't had the chance to delve deep into this with someone familiar with the current architecture of the lints in question. |
It could also just be an attribute. If rustc wants to absorb the must_root attribute we can make changes to make it a bit more general |
I'm going to try to spend some time investigating this. I've had some 1:1 conversations with @SimonSapin and think there are plausible paths to replace the last remaining use of plugins. |
@Zoxc, you were asking about this on IRC. Unfortunately we have no news that is not already described in this issue. If the plugin system is removed from Rust Nightly without a migration path, Servo will be left with a choice of not upgrading past an old Nightly that still has it or abandoning our GC rooting soundness lint. |
Closing as Servo has moved off plugins (servo/servo#30508) and plugin support has been removed (#116412). |
Continuing from #62727 (comment):
It would take building an alternative.
This thread is to discuss what alternative mechanisms already exist or could be added.
Requirements
Having custom attributes in source code (e.g. onstruct
definitions), ignored without warning by rustc.Currently we rely onrustc_plugin::registry::Registry::register_attribute
.My reading of Tracking issue: RFC 2103 - attributes for tools #44690 is that therustfmt::
andclippy::
attribute namespaces are hard-coded for now, and that the RFC-proposed mechanism for registering more such namespaces / tools is not implemented yet.Edit: This is now taken care of by
#![register_tool]
: Tracking issue for#![register_tool]
#66079The ability to write custom “lints”: arbitrary code that analyses a given crate and can reject it based on:
let x = foo.bar();
the lint wants to find out whether the struct definition for the concrete type ofx
has one of the previously mentioned custom attributes, even ifbar
is a trait method that returns an associated type.The lint only runs for selected crates. Or at least it has access to the crate name (and can exit early based on its own allow-list.)
Running the lint after (or during) a normal
cargo build -p script
(wherescript
is the crate being linted) does not require recompiling dependencies, nor duplicating much of Cargo’s logic.As far as I understand, resolving types requires metadata for dependency crates. It’s fine if the lint runs separately from rustc, but reverse-engineering Cargo to find out which of multiple
libfoo*.rlib
with different hashes in their name is the correct one would be fragile.Using Rust Nightly through rustup.
Many years ago Servo had custom builds of rustc. It was a pain.
Nice to have
Access to rustc’s mechanism for emitting nicely-formatted diagnostics (not just access to line and column numbers)
Running the lint after either
cargo build
orcargo check
does not require recompiling/rechecking dependencies. Consider allowing reuse of metadata betweencargo check
andcargo build
cargo#3501 may be relevant.Reducing reliance on rustc-internal APIs that change often would be nice, to help reduce the frequency of PRs like this: Upgrade to rustc 1.38.0-nightly (273f42b59 2019-07-21) servo/servo#23822. (We’re averaging at 20 days between Nightly upgrades in the last year, mostly because of this.)
I do realize this is in contradiction with many of the other points.
@jdm, @Manishearth, @nox: anything to add?
The text was updated successfully, but these errors were encountered: