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 get_bool_env for parsing bool-like env vars #47436

Merged
merged 4 commits into from
Dec 21, 2022

Conversation

IanButterworth
Copy link
Member

@IanButterworth IanButterworth commented Nov 2, 2022

Expands and brings @giordano's get_bool_env over from Pkg.

For another PR: Use where appropriate in Base & stdlibs

@StefanKarpinski
Copy link
Member

Obvious next move after this is merged is to delete the code from Pkg and use this 😃

@IanButterworth IanButterworth changed the title add get_bool_env for parsing bool-like env vars (and is_truthy, is_falsy) add get_bool_env for parsing bool-like env vars Nov 2, 2022
Copy link
Contributor

@giordano giordano left a 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

@rfourquet
Copy link
Member

What about exporting this?

@DilumAluthge
Copy link
Member

It's really just for internal use, right? Also, I can imagine wanting to make breaking changes to it in the future.

@giordano
Copy link
Contributor

giordano commented Nov 3, 2022

It's really just for internal use, right?

Well, it's in the manual at the moment

@DilumAluthge
Copy link
Member

Oh I missed that change. Personally, I would remove it from the manual, but I don't feel particularly strongly about it.

@ericphanson
Copy link
Contributor

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, ""))
Copy link
Contributor

@nickrobinson251 nickrobinson251 Nov 3, 2022

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)

Suggested change
val = lowercase(get(ENV, name, ""))
val = get(ENV, name, "")
val = all(islowercase, val) ? val : lowercase(val)

idk, just an thought

Copy link
Contributor

@nickrobinson251 nickrobinson251 Nov 3, 2022

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 😛)

Copy link
Member

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"...).

Copy link
Member Author

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.
Copy link
Member

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.

Copy link
Member

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?

Copy link
Member Author

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

@KristofferC
Copy link
Member

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.

@giordano
Copy link
Contributor

giordano commented Dec 6, 2022

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]>
@IanButterworth
Copy link
Member Author

How about not making this public API (i.e. removing its mention from NEWS.md and docs)?

Yeah, sounds good. Done

@IanButterworth
Copy link
Member Author

Does this look good to go?

julia> @time Base.get_bool_env("FOO", true)
  0.000002 seconds
true

julia> ENV["FOO"] = ""
""

julia> @time Base.get_bool_env("FOO", true)
  0.000007 seconds
true

julia> ENV["FOO"] = "0"
"0"

julia> @time Base.get_bool_env("FOO", true)
  0.000007 seconds (3 allocations: 88 bytes)
false

julia> ENV["FOO"] = "1"
"1"

julia> @time Base.get_bool_env("FOO", true)
  0.000008 seconds (2 allocations: 56 bytes)
true

julia> 

julia> ENV["FOO"] = "11"
"11"

julia> @time Base.get_bool_env("FOO", true)
  0.000007 seconds (3 allocations: 88 bytes)

julia> 

Copy link
Member

@DilumAluthge DilumAluthge left a 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.

@IanButterworth IanButterworth merged commit 5c5e490 into JuliaLang:master Dec 21, 2022
@IanButterworth IanButterworth deleted the ib/get_bool_env branch December 22, 2022 23:54
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 this pull request may close these issues.

8 participants