-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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 get_bool_env
for parsing bool-like env vars
#47436
add get_bool_env
for parsing bool-like env vars
#47436
Conversation
d820070
to
c321d82
Compare
Obvious next move after this is merged is to delete the code from Pkg and use this 😃 |
get_bool_env
for parsing bool-like env vars (and is_truthy
, is_falsy
)get_bool_env
for parsing bool-like env vars
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks familiar 😄 But I appreciate the more robust error handling than what's in Pkg now
2fface2
to
40606ca
Compare
5bb8ea2
to
14c2e8e
Compare
What about exporting this? |
It's really just for internal use, right? Also, I can imagine wanting to make breaking changes to it in the future. |
bd342f2
to
6909666
Compare
Well, it's in the manual at the moment |
Oh I missed that change. Personally, I would remove it from the manual, but I don't feel particularly strongly about it. |
as someone with various less-good versions of this in different places, I think this would be pretty useful to have outside of Base! |
base/env.jl
Outdated
""" | ||
function get_bool_env(name::String, default::Bool = false) | ||
haskey(ENV, name) || return default | ||
val = lowercase(get(ENV, name, "")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably this doesn't matter, as this won't be called in a performance critical place, but... maybe we should avoid this allocating when possible, by checking if the string is already lowercase (which i think should be okay overhead in practice since we're not expecting really long strings here)
val = lowercase(get(ENV, name, "")) | |
val = get(ENV, name, "") | |
val = all(islowercase, val) ? val : lowercase(val) |
idk, just an thought
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh on the other hand this is a whole can of worms so maybe ignore this if all(islowercase, str)
is controversial
#46444
(i just want less stuff to allocate 😛)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If calling lowercase
is worrying, adding the explicit list in truthy
is also an option, at least if restricted to all lower or upper cases (i.e. not including "TrUe"
...).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated with the truthy and falsy constructors expanded and moved out as consts
base/env.jl
Outdated
return false | ||
else | ||
error(""" | ||
Failed to parse the value `$val` of environment variable `$name` as Boolean. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Imo, a function that deals with external data like this shouldn't throw. It should instead return something to the user indicating the error.
Otherwise, you are always going to have to wrap usage of this function in a try catch since you cannot predict what is in the env var, and you are unlikely to want to panic just due to a malformed env variable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like returning nothing
would make sense here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good. I just switched it over to this
This feels pretty ad hoc to me. Like how the words for accepting true/false are in english and the exact form of the words that are accepted. To me at least it doesn't immediately feel like something that should be made a part of the language itself. |
How about not making this public API (i.e. removing its mention from NEWS.md and docs)? At least it can be used internally in Julia to make parsing of the environment variables more consistent. Defining a better API can be done at a later stage, if one wants to push for it. |
Co-Authored-By: Mosè Giordano <[email protected]>
6909666
to
cf1bc59
Compare
Yeah, sounds good. Done |
Does this look good to go?
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since it's not public, we can always tweak it further in the future.
Expands and brings @giordano's
get_bool_env
over from Pkg.For another PR: Use where appropriate in Base & stdlibs