i’v bin programming for about 2 week now and just about completed
http://pine.fm/LearnToProgram/
but for a change of pace i started something of my own but i cant seem
to get my program to wait X-seconds for user input.
basicly what i got is:
input= “empty”
input= gets.chomp
if input == “empty”
puts “no input”
else
puts input
end
all i want it to do is wait like 10 seconds and if there has bin no user
input it should just continue with input= “empty”
i feel like i’m missing something real simple
thnx in advance
-Bakakyoo-
results = select [STDIN], nil, nil, X-seconds
if !results
puts “no input”
else
puts gets.chomp
end
On Fri, Mar 26, 2010 at 10:17 AM, Rico K. [email protected] wrote:
if input == “empty”
puts “no input”
else
puts input
end
all i want it to do is wait like 10 seconds and if there has bin no user
input it should just continue with input= “empty”
i feel like i’m missing something real simple
Timeout is in the standard lib:
require ‘timeout’
begin
answer = Timeout::timeout(5) do
gets
end
rescue Timeout::Error
answer = “empty”
end
puts answer
Jesus.
Jesús Gabriel y Galán wrote:
On Fri, Mar 26, 2010 at 10:17 AM, Rico K. [email protected] wrote:
if input == “empty”
�puts “no input”
else
�puts input
end
all i want it to do is wait like 10 seconds and if there has bin no user
input it should just continue with input= “empty”
i feel like i’m missing something real simple
Timeout is in the standard lib:
require ‘timeout’
begin
answer = Timeout::timeout(5) do
gets
end
rescue Timeout::Error
answer = “empty”
end
puts answer
Jesus.
it didn’t seem to work,
it just kept waiting for me to input something.
i even tried to run just that code.
its still blinking, waiting for input on the background.
am i doing something wrong?
On Fri, Mar 26, 2010 at 11:59 AM, Rico K. [email protected] wrote:
it didn’t seem to work,
it just kept waiting for me to input something.
i even tried to run just that code.
its still blinking, waiting for input on the background.
am i doing something wrong?
It might depend on which operating system and/or Ruby version you are
using.
I tried the code underneath on Windows Vista, using the Ruby Windows
versions,
and Ruby. It works for me using Ruby 1.9 for Windows.
But using Ruby 1.8.6 and using the JRuby 1.8 equivalent seemed to work,
or rather not work, in the way you described in your latest post.
Colin B.
[* same post as just made, but this time I’ve remembered to add the code
*]
On Fri, Mar 26, 2010 at 11:59 AM, Rico K. [email protected] wrote:
it didn’t seem to work,
it just kept waiting for me to input something.
i even tried to run just that code.
its still blinking, waiting for input on the background.
am i doing something wrong?
It might depend on which operating system and/or Ruby version you are
using.
I tried the code underneath on Windows Vista, using the Ruby Windows
versions,
and Ruby. It works for me using Ruby 1.9 for Windows.
But using Ruby 1.8.6 and using the JRuby 1.8 equivalent seemed to work,
or rather not work, in the way you described in your latest post.
Colin B.
require “timeout”
def gets_timeout( prompt, secs )
puts
print prompt + "[timeout=#{secs}secs]: "
Timeout::timeout( secs ) { gets }
rescue Timeout::Error
puts “*timeout”
nil # return nil if timeout
end
rr = gets_timeout "Do not input. Wait for timeout. ", 5
p rr #=> nil
rr = gets_timeout "Input something before timeout: ", 10
p rr #=> “something\n”
On Fri, Mar 26, 2010 at 4:23 PM, Colin B.
[email protected] wrote:
I tried the code underneath on Windows Vista, using the Ruby Windows versions,
and Ruby. It works for me using Ruby 1.9 for Windows.
But using Ruby 1.8.6 and using the JRuby 1.8 equivalent seemed to work,
or rather not work, in the way you described in your latest post.
I tested my version in Ubuntu and it worked fine.
Jesus.
On Fri, Mar 26, 2010 at 10:23 AM, Colin B.
[email protected] wrote:
It might depend on which operating system and/or Ruby version you are using.
I tried the code underneath on Windows Vista, using the Ruby Windows versions,
and Ruby. It works for me using Ruby 1.9 for Windows.
But using Ruby 1.8.6 Â and using the JRuby 1.8 equivalent seemed to work,
or rather not work, in the way you described in your latest post.
At least for JRuby, we can’t do a proper select on stdio because the
JVM does not provide such a capability. So timeout can’t interrupt
stdio.