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

Add clippy to this repository #40921

Closed
oli-obk opened this issue Mar 30, 2017 · 25 comments
Closed

Add clippy to this repository #40921

oli-obk opened this issue Mar 30, 2017 · 25 comments
Labels
C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-dev-tools Relevant to the dev-tools subteam, which will review and decide on the PR/issue.

Comments

@oli-obk
Copy link
Contributor

oli-obk commented Mar 30, 2017

Skip the discussion until #40921 (comment)

The plan has been updated accordingly

Broad plan

  1. Add clippy as a submodule
  2. Try to build clippy on every travis run
  3. In case of failure, automatically post an issue at the clippy repository linking the offending PR
  4. modify src/bootstrap/dist.rs, src/bootstrap/lib.rs and
    src/bootstrap/step.rs to bundle clippy as a rustup component with rustc if clippy builds
  5. modify src/tools/build-manifest/src/main.rs
  6. open a PR
  7. modify rustup to not update if a component is not available (and add a force option to override)

Open Questions

  • Configuration works through clippy.toml right now
    • change -Zextra-plugins to take an argument, so we can pass -Zextra-plugins=clippy(clippy.toml)?
@Manishearth
Copy link
Member

For those of you playing along at home, the reason we're moving (part of) clippy into rustc is for stable clippy.

The plan is to do basically the same thing that RLS does -- move the unstable bits into the Rust distribution, so that it can be used from stable Rust even though it doesn't use stable features. I'm unsure if we should make it installed by default or something that you rustup component add.

With that plan, clippy could still live out of tree, but this means that rustc devs will have to go through a ritual each time clippy breaks due to an unstable API, so after discussing with Alex, vendoring in tree (in fact, moving core development to in-tree) is the way to go.

delete everything else (like cargo clippy and python tools)

To be clear, cargo clippy and the wiki generation stuff will continue to live out of tree in the original repo. This may involve stabilizing -Zextra-plugins.

I don't know if we should move issue tracking. We have a LOT of issues filed on clippy, mostly triaged, and tagged for difficulty. I'm fine with continuing to track out of tree, or slowly migrating by encouraging new filings on rust-lang/rust, or migrating at once, or whatever.

@aidanhs
Copy link
Member

aidanhs commented Mar 31, 2017

Just as a general question, what's the probability of clippy moving back out of tree at some point? For example, if rust pins down some stable api for clippy (and other things) to use.

It's just interesting that on one hand there's "what if" longer term discussions about libstd moving out of tree, then there's the reality of things like clippy moving in tree. And the latter is because clippy happens to be a thing that's widely used and this is the easiest solution to make it stable.

I'm all in favour of practical solutions and it'd be really good if clippy worked on stable so I'm very much not objecting - just wondering what the (very) long term vision is, given there are downsides to being in-tree as well (clippy being bottlenecked by the rust release cycle, the slower CI cycle etc).

@oli-obk
Copy link
Contributor Author

oli-obk commented Mar 31, 2017

rust pins down some stable api for clippy (and other things) to use.

A related stable API that is in the process of being created is the rls-API. It might allow us to move a lot of lints to such a stable API.

Also I've heard some talk that the linting API gets revamped, because it doesn't fit nicely into the on-demand system the compiler is moving to. Everything is in a lot of flux, so right now there's no way to stabilize such an API. But the desire to have stable clippy is strong enough to ignore the downsides for now and move in-tree.

I would very much like to see the linting API becoming stable in the future, but I definitely don't see it on the roadmap this year.

@matklad
Copy link
Member

matklad commented Mar 31, 2017

Also I've heard some talk that the linting API gets revamped, because it doesn't fit nicely into the on-demand system the compiler is moving to.

I know nothing about current linting API and on-demand system, but there are indeed some interesting problems in integrating linting and IDEs.

For Java, IntelliJ IDEA has a lot of clippy-like inspections, and it faces an interesting tradeoff. On the one hand, you want the inspections to be local and very incremental (for example, highlighting unused local variables). On the other hand, some inspections want to access the whole project (for example, highlighting unused public methods). The first category nicely fits into the incremental, highlight as you type framework. The second category needs either to be run on the whole project at once explicitly (much like clippy now), or to apply some heuristics to give approximate results, but without recompiling everything.

@alexcrichton
Copy link
Member

I personally feel like we're not quite ready to do this just yet, AFAIK there hasn't been much discussion of:

  • How to use clippy on stable
  • Whether rustc devs are up for maintaining clippy
  • Whether we want clippy in the main repo

@Manishearth
Copy link
Member

Manishearth commented Apr 2, 2017

I thought we'd had those discussions already? If not, they can be had here.

I don't recall seeing much discussion for RLS either, and AIUI clippy and RLS were both part of the same plan.

How to use clippy on stable

The clippy plugin is a part of the Rust distribution, and cargo-clippy is a thin wrapper (which you can install via cargo install or perhaps rustup component add) that hooks it into your code.

Whether we want clippy in the main repo

From what I recall from earlier discussions, this is basically necessary since y'all want the CI to run the same steps as nightlies (each CI build is a potential nightly build), so components like these would have to be included as well.

I'm okay with keeping clippy out of tree, but then the nightlies will break every now and then.

Whether rustc devs are up for maintaining clippy

FWIW most of the times clippy rustup stuff is just APIs changing; APIs that are used by the rest of rustc anyway, so this is just like adding and maintaining another internal rustc_* crate that uses these internal APIs. The clippy devs shall continue to maintain it, the only burden rustc devs have is ensuring that breaking changes propagate to the plugin code (which we can help with).

@Manishearth
Copy link
Member

Any updates? RLS is chugging along, and I was under the impression that clippy would be able to use the same method of becoming stable. We should try and make this happen.

@oli-obk
Copy link
Contributor Author

oli-obk commented Apr 28, 2017

There's an IRC meeting on the topic on May 4th, 16:00 UTC-04:00 (21:00 CET)

@mcarton
Copy link
Member

mcarton commented Apr 28, 2017

@oli-obk So 22:00 CEST? I'm not sure if "4pm Boston time" includes some kind of summer time in it 😅

@nrc nrc added T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-tools labels May 3, 2017
@nrc
Copy link
Member

nrc commented May 4, 2017

I agree that we need some solution here, but I think moving Clippy in tree is definitely the wrong one.

To be clear, the RLS does not live in-tree, it lives in its own repo and there is a submodule in-tree which is only used for dist builds. That seems like the upper limit on integration we should accept for Clippy.

The goal here is to make Clippy available on stable, IMO it would be great to do that with as little integration with rustc as possible. Ideally, we could use rustup to install Clippy (thus giving it access to the compiler's unstable API, whilst itself being stable) without any involvement in the Rust repo at all (although it might turn out that a submodule is the easiest way).

I think there are questions on what being 'part of the distro' means, neither the RLS nor Clippy will be installed by default for example, and obviously we don't want Rustup distributing a broken Clippy, but there are different ways that can be achieved, I think.

@Manishearth
Copy link
Member

So @brson and @alexcrichton and I have discussed this in the past and the reason the solution was moving it in tree was because the nightly dist build should never fail, basically, and they wanted nightly builds to be the same as any other CI build.

I am okay with the submodule, but the issue was that this creates friction for people who want to make breaking changes to APIs clippy consumes, so the proposal was to move it in-tree to make it easier to contribute to.

"rustup to install clippy" isn't going to work well because there's usually a strict clippy-version-to-nightly mapping, we can't just try to install master and hope it works. It has to be part of the distribution.

By "part of the distribution" we just mean that it should be compiled in a dist build and put on the server for folks to fetch via rustup. cargo clippy can exist out of tree as a small shim that pulls in clippy.

@Manishearth
Copy link
Member

The default plan here is not to have any "integration with rustc", but to make clippy a subfolder in the Rust repository that can be optionally built that CI gates on. The resultant dylib will just float around in the build dir. Rustc won't be aware of it.

(Well, rustc will need to be aware of it a tiny bit so that cargo-clippy can load the plugin without hitting stability issues)

@Manishearth
Copy link
Member

After discussing with @nrc on IRC, we're leaning towards this proposal. It's different from the original:

Clippy is a submodule (or a pinned commit, w/e). Built on each commit, with notifications to clippy devs or something when it breaks. Built in dist, if it builds it is included, if not the dist is partial (but still published!). The notifications bit isn't necessary for this design, but would be a way to prevent partial dists.

If you have run rustup component add clippy, and later rustup update your nightly when the newest nightly is partial, it will refuse to update and instead update to the latest non-partial nightly. It can warn you that this happened or something and give a force option that will remove the component. Or some such UI. We want to avoid people having clippy get removed from under their feet.

Clippy will still live in its own repo and be developed there.

The "I am cargo but also rustc u wot m8" hacks in cargo-clippy can go away. The dist will contain a clippy dylib. cargo-clippy becomes a small shim that just basically calls -Zextra_plugins=clippy or something.

Rustc will need a small fix that lets -Zextra-plugins=clippy be called on stable. Perhaps a different arg.

We'd need to handle the clippy.toml stuff by extending -Zextra-plugins but that can be deferred to later.

It would be nice if we could also make it stable to do #![plugin(clippy)], perhaps via a separate attribute. Then again, standardizing everyone on cargo-clippy works too.

Thoughts?

@oli-obk
Copy link
Contributor Author

oli-obk commented May 4, 2017

Sgtm. I wonder if we could automatically load the plugin if anyone writes #[warn(clippy)]

@llogiq
Copy link
Contributor

llogiq commented May 4, 2017

Good idea – warning on lints has some precedent in stable, and the clippy plugin could be loaded on demand.

@alexcrichton alexcrichton added T-dev-tools Relevant to the dev-tools subteam, which will review and decide on the PR/issue. and removed T-tools labels May 22, 2017
@Mark-Simulacrum Mark-Simulacrum added the C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. label Jul 27, 2017
@alexcrichton
Copy link
Member

In #45285 (comment) I've discovered something slightly more worrisome (but perhaps not so bad in the long run?). Right now clippy is its own workspace with its own Cargo.lock, but in general we're trying to get all our tools into the same workspace to ensure dependencies are the same. This is mostly a problem for dependencies like Cargo where we don't want the cargo executable and the RLS to be using two versions of Cargo, we'd rather ensure that everything is using the same source code.

Folding clippy into the rustc workspace is difficult, however, because clippy itself is already a workspace. I'm not sure how to best solve this...

I believe the only downside of allowing clippy to have its own Cargo.lock is that it may pick up different versions of dependencies than the rest of the tools in the Rust repo. This means larger build times for us (as we're probably building different versions). If clippy were to pick up a dependency on larger tools (aka rls, rustfmt, cargo, etc), then we'd run the risk of version drift. I don't think there's plans for that though?

@Manishearth
Copy link
Member

If clippy were to pick up a dependency on larger tools (aka rls, rustfmt, cargo, etc), then we'd run the risk of version drift. I don't think there's plans for that though?

Nope.

I think clippy doesn't particularly need a lockfile, really. It's fine if y'all use your own.

@alexcrichton
Copy link
Member

Oh the worry is less so about lock files but the fact that clippy is its own workspace (so it's not a member of the main rustc workspace)

@Manishearth
Copy link
Member

@oli-obk if we remove the clippy workspace will that break things?

@oli-obk
Copy link
Contributor Author

oli-obk commented Oct 17, 2017

Nope. Let's do it. That was just an optimization for developing inside the clippy repo. But it's not really necessary.

@ishitatsuyuki
Copy link
Contributor

Can we also add clippy to install.rs so we can install with make install?

@oli-obk
Copy link
Contributor Author

oli-obk commented Apr 9, 2018

not sure, I have never used make install. I think a sensible next step would be to add a clippy-preview component to rustup and start producing this on some nightlies?

@ishitatsuyuki
Copy link
Contributor

Yeah, given that RLS is already shipping with optional clippy we should ship the CLI tool as well.

@oli-obk
Copy link
Contributor Author

oli-obk commented Apr 9, 2018

I am swamped with miri regressions. I'd be very delighted if someone else would tackle that

@crlf0710
Copy link
Member

I think this issue is outdated, maybe we can just close it. @oli-obk @Manishearth

@oli-obk oli-obk closed this as completed Jul 28, 2019
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. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-dev-tools Relevant to the dev-tools subteam, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests