mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/timeout.rb (Timeout#timeout): set
async_interrupt_timeing(:on_blocking) by default. [Bug #7503] [ruby-core:50524] * test/test_timeout.rb (#test_timeout_blocking): test for the above. * test/test_timeout.rb (test_timeout_immediate): ditto * test/test_timeout.rb (test_timeout_immediate2): ditto. * NEWS: news for the above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38216 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4a572d5bb4
commit
a400c94d72
4 changed files with 111 additions and 30 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
Wed Dec 5 04:50:17 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
* lib/timeout.rb (Timeout#timeout): set
|
||||||
|
async_interrupt_timeing(:on_blocking) by default.
|
||||||
|
[Bug #7503] [ruby-core:50524]
|
||||||
|
|
||||||
|
* test/test_timeout.rb (#test_timeout_blocking): test for the above.
|
||||||
|
* test/test_timeout.rb (test_timeout_immediate): ditto
|
||||||
|
* test/test_timeout.rb (test_timeout_immediate2): ditto.
|
||||||
|
|
||||||
|
* NEWS: news for the above.
|
||||||
|
|
||||||
Wed Dec 5 23:50:23 2012 Narihiro Nakamura <authornari@gmail.com>
|
Wed Dec 5 23:50:23 2012 Narihiro Nakamura <authornari@gmail.com>
|
||||||
|
|
||||||
* gc.c (getrusage_time): uses clock_gettime() with
|
* gc.c (getrusage_time): uses clock_gettime() with
|
||||||
|
|
7
NEWS
7
NEWS
|
@ -332,6 +332,13 @@ with all sufficient information, see the ChangeLog file.
|
||||||
are introduced for easy detection of available constants on a
|
are introduced for easy detection of available constants on a
|
||||||
running system.
|
running system.
|
||||||
|
|
||||||
|
* timeout
|
||||||
|
* Timeout.timeout supports immediate optional keyword parameter.
|
||||||
|
* incompatible changes:
|
||||||
|
* Timeout.timeout now use async_interrupt_timing(:on_blocking) by default.
|
||||||
|
And then, timeout is only happen on blocking point (e.g. sleep, read,
|
||||||
|
write, Mutex#lock and so on).
|
||||||
|
|
||||||
* tmpdir
|
* tmpdir
|
||||||
* incompatible changes:
|
* incompatible changes:
|
||||||
* Dir.mktmpdir uses FileUtils.remove_entry instead of
|
* Dir.mktmpdir uses FileUtils.remove_entry instead of
|
||||||
|
|
|
@ -47,8 +47,9 @@ module Timeout
|
||||||
# Note that this is both a method of module Timeout, so you can <tt>include
|
# Note that this is both a method of module Timeout, so you can <tt>include
|
||||||
# Timeout</tt> into your classes so they have a #timeout method, as well as
|
# Timeout</tt> into your classes so they have a #timeout method, as well as
|
||||||
# a module method, so you can call it directly as Timeout.timeout().
|
# a module method, so you can call it directly as Timeout.timeout().
|
||||||
def timeout(sec, klass = nil) #:yield: +sec+
|
def timeout(sec, klass = nil, immediate: false) #:yield: +sec+
|
||||||
return yield(sec) if sec == nil or sec.zero?
|
return yield(sec) if sec == nil or sec.zero?
|
||||||
|
Thread.async_interrupt_timing(klass ? klass : ExitException => immediate ? :immediate : :on_blocking) do
|
||||||
exception = klass || Class.new(ExitException)
|
exception = klass || Class.new(ExitException)
|
||||||
begin
|
begin
|
||||||
begin
|
begin
|
||||||
|
@ -82,6 +83,7 @@ module Timeout
|
||||||
raise Error, e.message, e.backtrace
|
raise Error, e.message, e.backtrace
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
module_function :timeout
|
module_function :timeout
|
||||||
end
|
end
|
||||||
|
|
|
@ -18,7 +18,7 @@ class TestTimeout < Test::Unit::TestCase
|
||||||
}
|
}
|
||||||
assert_nothing_raised("[ruby-dev:38319]") do
|
assert_nothing_raised("[ruby-dev:38319]") do
|
||||||
Timeout.timeout(1) {
|
Timeout.timeout(1) {
|
||||||
nil while @flag
|
sleep 0.01 while @flag
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
assert !@flag, "[ruby-dev:38319]"
|
assert !@flag, "[ruby-dev:38319]"
|
||||||
|
@ -29,4 +29,65 @@ class TestTimeout < Test::Unit::TestCase
|
||||||
def (n = Object.new).zero?; false; end
|
def (n = Object.new).zero?; false; end
|
||||||
assert_raise(TypeError, bug3168) {Timeout.timeout(n) { sleep 0.1 }}
|
assert_raise(TypeError, bug3168) {Timeout.timeout(n) { sleep 0.1 }}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_timeout_immediate
|
||||||
|
begin
|
||||||
|
t = Thread.new {
|
||||||
|
Timeout.timeout(0.1, immediate: true) {
|
||||||
|
# loop forever, but can be interrupted
|
||||||
|
loop {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sleep 0.5
|
||||||
|
t.raise RuntimeError
|
||||||
|
assert_raise(Timeout::Error) {
|
||||||
|
t.join
|
||||||
|
}
|
||||||
|
ensure
|
||||||
|
t.kill if t.alive?
|
||||||
|
begin
|
||||||
|
t.join
|
||||||
|
rescue Exception
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_timeout_immediate2
|
||||||
|
begin
|
||||||
|
t = Thread.new {
|
||||||
|
Timeout.timeout(0.1) {
|
||||||
|
# loop forever, must not interrupted
|
||||||
|
loop {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sleep 0.5
|
||||||
|
t.raise RuntimeError
|
||||||
|
assert_raise(RuntimeError) {
|
||||||
|
t.join
|
||||||
|
}
|
||||||
|
ensure
|
||||||
|
t.kill if t.alive?
|
||||||
|
begin
|
||||||
|
t.join
|
||||||
|
rescue Exception
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_timeout_blocking
|
||||||
|
t0 = Time.now
|
||||||
|
begin
|
||||||
|
Timeout.timeout(0.1) {
|
||||||
|
while true do
|
||||||
|
t1 = Time.now
|
||||||
|
break if t1 - t0 > 1
|
||||||
|
end
|
||||||
|
sleep 2
|
||||||
|
}
|
||||||
|
rescue Timeout::Error
|
||||||
|
end
|
||||||
|
t1 = Time.now
|
||||||
|
assert (t1 - t0) >= 1
|
||||||
|
assert (t1 - t0) < 2
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue