timeout 0.3.2 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/lib/timeout.rb +16 -20
- data/timeout.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19bdc6e927cfc023688f6d4e08a55b1d483257bd450db6e203e1965158bb7ed4
|
4
|
+
data.tar.gz: 742db38b61ab633ca1baef82a73338b0e2d9e4a0d10bdf3908fc8ed87d04f4c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6836956b4e59cebd6a14d0a9d3857c700a1bd65a566ff1d41be3657631b3e33a443910d4123dae1b81eaa81198896442f5c0f2a32e3b7182ad2144fdc39cbcfc
|
7
|
+
data.tar.gz: a7a4a1a176dcbf09297133476914684db3ae8c77c37d510af6d6200279f17fa0b1829c6b2ad19fa29b6be1c62f9b60aba6e362c47affcd71ec36ce934e8a391a
|
data/Gemfile
CHANGED
data/lib/timeout.rb
CHANGED
@@ -23,29 +23,26 @@
|
|
23
23
|
# Copyright:: (C) 2000 Information-technology Promotion Agency, Japan
|
24
24
|
|
25
25
|
module Timeout
|
26
|
-
VERSION = "0.
|
26
|
+
VERSION = "0.4.0"
|
27
|
+
|
28
|
+
# Internal error raised to when a timeout is triggered.
|
29
|
+
class ExitException < Exception
|
30
|
+
def exception(*)
|
31
|
+
self
|
32
|
+
end
|
33
|
+
end
|
27
34
|
|
28
35
|
# Raised by Timeout.timeout when the block times out.
|
29
36
|
class Error < RuntimeError
|
30
|
-
|
37
|
+
def self.handle_timeout(message)
|
38
|
+
exc = ExitException.new(message)
|
31
39
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
end
|
38
|
-
|
39
|
-
def exception(*)
|
40
|
-
# TODO: use Fiber.current to see if self can be thrown
|
41
|
-
if self.thread == Thread.current
|
42
|
-
bt = caller
|
43
|
-
begin
|
44
|
-
throw(@catch_value, bt)
|
45
|
-
rescue UncaughtThrowError
|
46
|
-
end
|
40
|
+
begin
|
41
|
+
yield exc
|
42
|
+
rescue ExitException => e
|
43
|
+
raise new(message) if exc.equal?(e)
|
44
|
+
raise
|
47
45
|
end
|
48
|
-
super
|
49
46
|
end
|
50
47
|
end
|
51
48
|
|
@@ -195,8 +192,7 @@ module Timeout
|
|
195
192
|
if klass
|
196
193
|
perform.call(klass)
|
197
194
|
else
|
198
|
-
|
199
|
-
raise Error, message, backtrace
|
195
|
+
Error.handle_timeout(message, &perform)
|
200
196
|
end
|
201
197
|
end
|
202
198
|
module_function :timeout
|
data/timeout.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
name = File.basename(__FILE__, ".gemspec")
|
4
|
-
version = ["lib", Array.new(name.count("-")+1, "
|
4
|
+
version = ["lib", Array.new(name.count("-")+1, ".").join("/")].find do |dir|
|
5
5
|
break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
|
6
6
|
/^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
|
7
7
|
end rescue nil
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: timeout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yukihiro Matsumoto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Auto-terminate potentially long-running operations in Ruby.
|
14
14
|
email:
|