Skip to content

Commit a23470c

Browse files
simpler timeout timer close
1 parent 94aa3c6 commit a23470c

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

base/util.jl

+9-10
Original file line numberDiff line numberDiff line change
@@ -309,29 +309,28 @@ Proceed? y/n [n] timeout 5 seconds: timed out
309309
See also `Base.getpass` and `Base.winprompt` for secure entry of passwords.
310310
"""
311311
function prompt(input::IO, output::IO, message::AbstractString; default::AbstractString="", timeout::Union{Nothing, Real} = nothing)
312-
timedout = false
313-
uinput_entered = false
314-
if !isnothing(timeout) && timeout > 0
312+
timeout_timer = if !isnothing(timeout) && timeout > 0
315313
plural = timeout == 1 ? "" : "s"
316314
msg = !isempty(default) ? "$message [$default] timeout $timeout second$(plural): " : "$message: "
317315
Timer(timeout) do t
318-
uinput_entered && return
319-
timedout = true
320316
lock(input.cond)
321317
input.status = Base.StatusEOF
322318
notify(input.cond)
323319
unlock(input.cond)
324320
end
325321
else
326322
msg = !isempty(default) ? "$message [$default]: " : "$message: "
323+
nothing
327324
end
328325
print(output, msg)
329326
uinput = readline(input, keep=true)
330-
if timedout
331-
println(output, "timed out")
332-
return default
333-
else
334-
uinput_entered = true # disable timeout action
327+
if !isnothing(timeout_timer)
328+
if isopen(timeout_timer)
329+
close(timeout_timer)
330+
else
331+
println(output, "timed out")
332+
return default
333+
end
335334
end
336335
isempty(uinput) && return nothing # Encountered an EOF
337336
uinput = chomp(uinput)

0 commit comments

Comments
 (0)