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

std::env::VarError should capture name #22122

Closed
scott-ainsworth opened this issue Feb 9, 2015 · 7 comments · Fixed by #22869
Closed

std::env::VarError should capture name #22122

scott-ainsworth opened this issue Feb 9, 2015 · 7 comments · Fixed by #22869
Milestone

Comments

@scott-ainsworth
Copy link

I have been refactoring command-line program code to use the patterns implied by Improved Error Handling in Rust. Errors are bubbled up to main() using the std::error::Error and std::error::FromError traits. This allows most user messaging to occur in a central location (especially panic-level failures), simplifying testing and internationalization.

One issue I have encountered has to do with missing environment variables. std::env::VarError does not capture the the environment variable name (which std::env calls a key); therefore, the messages from Error::description() and Display::fmt() do not tell the user which environment variable is missing. To work around this issue, I have wrapped VarError in another struct. It would be much simpler if VarError captured the environment variable name and included it in the messages.

I realize this is likely to require heap allocation to save a copy of the name. In most (sane) cases, environment variables are accessed once during program initialization and the value stored for future use. Therefore, I believe the benefit of knowing which environment variable is missing outweighs the heap allocation cost.

@alexcrichton
Copy link
Member

cc @aturon

@aturon
Copy link
Member

aturon commented Feb 16, 2015

Nominating for 1.0-beta P-backcompat-libs.

@pnkfelix
Copy link
Member

1.0-beta P-backcompat-libs

alexcrichton added a commit to alexcrichton/rust that referenced this issue Feb 27, 2015
Now that the `std::env` module has had some time to bake this commit marks most
of its APIs as `#[stable]`. Some notable APIs that are **not** stable (and still
use the same `env` feature gate) are:

* `{set,get}_exit_status` - there are still questions about whether this is the
  right interface for setting/getting the exit status of a process.
* `page_size` - this may change location in the future or perhaps name as well.

This also effectively closes rust-lang#22122 as the variants of `VarError` are
`#[stable]` now. (this is done intentionally)
Manishearth added a commit to Manishearth/rust that referenced this issue Feb 28, 2015
 Now that the `std::env` module has had some time to bake this commit marks most
of its APIs as `#[stable]`. Some notable APIs that are **not** stable (and still
use the same `env` feature gate) are:

* `{set,get}_exit_status` - there are still questions about whether this is the
  right interface for setting/getting the exit status of a process.
* `page_size` - this may change location in the future or perhaps name as well.

This also effectively closes rust-lang#22122 as the variants of `VarError` are
`#[stable]` now. (this is done intentionally)
@mhristache
Copy link

Can someone explain why this was closed without changing the behaviour? Or am I missing something?
Thanks

@alexcrichton
Copy link
Member

@maximih some more details are in #22869, but the decision was that these sorts of detailed errors are not necessarily in the domain of the standard library. There is a cost overhead for capturing this sort of information which is not necessarily desired by all consumers of the API, so it's up to libraries to provide the extra contextual information where necessary.

@scott-ainsworth
Copy link
Author

I understand that not all consumers require that the environment variable name be captured. However, by not providing a simple method to identify the environment variable in error, I suspect many application administrators will be subjected errors missing this critical piece of information (because deadlines force compromises).

I was really hoping this would make it into v1.0 because adding the name is likely to be a breaking change for consumers of VarError.

Anyway, if it does not make v1.0, consumers will need to capture the environment variable name if it is needed. Here is my solution: https://gist.github.com/galsondor/d1aadf821300f982ac1f

BTW, the "NotUnicode" enum variant captures the error data, which is also not required by all consumers and probably even less useful than the name.

@aturon
Copy link
Member

aturon commented Mar 3, 2015

FWIW, #22949 talks more generally about the issue of forward-compatibility with situations like this. I think we should make the enum variants opaque to allow expansion with more information in the future.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants