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

Change usage of anyhow to more specific error enums #10160

Open
kornelski opened this issue Dec 4, 2021 · 5 comments
Open

Change usage of anyhow to more specific error enums #10160

kornelski opened this issue Dec 4, 2021 · 5 comments
Labels
A-cargo-api Area: cargo-the-library API and internal code issues A-diagnostics Area: Error and warning messages generated by Cargo itself. C-feature-request Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted` E-hard Experience: Hard S-needs-design Status: Needs someone to work further on the design for the feature or fix. NOT YET accepted.

Comments

@kornelski
Copy link
Contributor

kornelski commented Dec 4, 2021

Problem

Most of Cargo's internal helper functions return anyhow::Error. This makes it difficult for callers of such functions to implement custom, specific error handling other than by downcasting. Fallible downcasting of anyhow Error to specific error types seems fragile: the error types are not checked at compile time, so if a helper method changes its implementation, error handling in callers can break at runtime.

Places where a specific error type could be useful:

Proposed Solution

I suggest gradually moving away from use of anyhow::Error (edit: for the internal helper functions and library interfaces, not all of Cargo), and use concrete error types (function or module-specific structs or enums). For a start this could be limited to private APIs.

Notes

No response

@kornelski kornelski added the C-feature-request Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted` label Dec 4, 2021
kornelski added a commit to kornelski/cargo that referenced this issue Dec 5, 2021
@ehuss ehuss added the A-cargo-api Area: cargo-the-library API and internal code issues label Dec 6, 2021
@alexcrichton
Copy link
Member

Personally I don't really know what your goal here is but you've come to a pretty large Rust project and by saying:

I suggest gradually moving away from use of anyhow::Error

You've basically said "please redo your entire error handling strategy". That's a very large change to a project like Cargo and naturally isn't really one we'd just sort of off-hand agree with and start accepting PRs for. Cargo's error handling was designed long ago and hasn't really changed since. That's not to say that it's perfect but I don't think it's necessarily the most productive route to not ask for or try to understand historical context and simply propose complete 180 turnaround changes from Cargo's error handling strategy today.

Cargo's error-handling strategy is designed to not be a maintenance burden on us while also enabling more sophisticated handling of errors where necessary. It's not really clear to me why Cargo's error handling today cannot be used to solve the issues you've mentioned here. I think it would be much better to reuse what Cargo does today instead of trying to design something new out-of-the-blue and completely change Cargo's internal idioms because of a few issues.

@kornelski
Copy link
Contributor Author

kornelski commented Dec 13, 2021

Thanks for the response! It may sound like an ask for a rewrite, but I don't think it is that major. It's more of an ask for permission change a few places where an unnecessary layer of abstraction gets in the way of better error handling.

I hope you agree that in the wider Rust ecosystem there's now an established pattern to use enums or structs (thiserror-like approach) in libraries, and dyn Error/anyhow-like approaches in applications that consume the libraries. It's not that one is better than the other, they just have different trade-offs of exposing vs encapsulating error information. This allows libraries to give specific data in errors to make them actionable, and allows applications to ignore the details when they don't need them.

Cargo is big indeed, so it plays both roles at once, different in different parts of the codebase. In the library-like parts of Cargo, anyhow is not helpful. anyhow is fine and quite easy for the CLI parts of Cargo that mainly just print an error and exit. For more core parts that need to handle specific errors in specific ways, the "anonymizing" nature of anyhow gets in the way, and requires downcasting.

While downcasting technically works, it's not great:

  1. It adds boilerplate and dead code. If you look at the PR Avoid downcasting to ProcessError #10163 you'll find that I was able to remove several instances of redundant downcasts and checks that asked "is this a ProcessError or another type of error?" in places that can only ever get a ProcessError. Because of dynamic typing of anyhow errors, it wasn't clear that such checks were unnecessary and a dead code.

  2. Downcasting is not checked at compile time. If the underlying implementation details change, then anyhow can start carrying a different type of the underlying error at any time, which can make downcasts fail. While this can be compensated for with unit tests, I'd feel more confident using compile-time type-safe errors.

  3. It is a hindrance for contributors:

  • I've struggled with it when I was improving handling for ssh authentication errors. It required extra detective work to see what error type was behind the veil of anyhow. If the ssh code used enum-based error type instead, the solution would have been a couple of rust-analyzer-assisted clicks away. I also wasn't confident that my downcast-based solution wasn't a "hack". Also Cargo uses a line-based simple pattern matching to test error output, but lack of control of anyhow's chain of errors makes it difficult to make tests that are effective and not flaky. That one simple change was remarkably difficult to land.

  • Contributor who wanted to improve error handling of cargo new in workspaces noticed the same issue with type-erased errors and would resort to "dirty string comparison or duplicating the whole logic" to handle the error. That is not a good error strategy, and anyhow stopped them from contributing a fix.

  • I wanted to improve clarity of errors printed when a build.rs fails. This was again problematic due to a general-purpose anyhow error that hid build script output away deeper in the chain of error sources. This is why I've looked at refactoring ProcessError first, so that I could handle this case properly before it's wrapped in anyhow.

@alexcrichton
Copy link
Member

Sorry for the delayed response, but there's a lot of changes and PRs in flight in Cargo which are all quite large and at least my own personal time for Cargo is quite limited. I basically don't have time to discuss the nuances of error handling in Cargo. I'm only one member of the Cargo team though and others might be interested in talking about this.

@weihanglo weihanglo added the S-needs-design Status: Needs someone to work further on the design for the feature or fix. NOT YET accepted. label Jun 2, 2023
@weihanglo
Copy link
Member

Just had a talk with @Muscraft. This is mostly my idea but it would be great if we have this kind of error overhaul. It will help things like JSON format message (#8283) or developing Cargo's own lint rules with -Zlints (#12115). It would also open a door to diagonostics translation (rust-lang/rust#100717). Probably the modularization of Cargo could benefit from it as well.

@weihanglo
Copy link
Member

Triage: This is not extremely hard from the angle of technical aspect, though they are tremendously large amount of code need to touch. Hence @rustbot label +E-hard

@rustbot rustbot added the E-hard Experience: Hard label Jun 2, 2023
@weihanglo weihanglo added the A-diagnostics Area: Error and warning messages generated by Cargo itself. label Jun 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-cargo-api Area: cargo-the-library API and internal code issues A-diagnostics Area: Error and warning messages generated by Cargo itself. C-feature-request Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted` E-hard Experience: Hard S-needs-design Status: Needs someone to work further on the design for the feature or fix. NOT YET accepted.
Projects
None yet
Development

No branches or pull requests

5 participants