ruby_timeout_safe 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fc2f4c28c6c3ab39dda99ecbddfba1e0128954b7361ae18605594b84175ca36
4
- data.tar.gz: 35b8c41ab8c1f413b493c77d1b272fb532dfcb58c16e3dfac1a2aa6c67b5bab0
3
+ metadata.gz: 5d30dd51132db09c3107ad7e6fc71d95bd7c85ae0f3eff1959234075824f972c
4
+ data.tar.gz: eb1ac80ea077fd5203aac39bc2c613aed7dc7890e3c61d1c6048695e2a1fd712
5
5
  SHA512:
6
- metadata.gz: 377bda663c266dacaf4d9c18227fdd176bbe868c5911abc6cf8ef07d274ac71ba6a6bc967964acd382d1f58b99eb3489c860d82710e6e070523eac00e6c7747c
7
- data.tar.gz: 29c8399c8f0a37752bb379535d8b0118ccd9e39d11e4a3aa05afe696f21428bce5dd6fcb95ab977fefbfe6cf7ca6ce135e07d2543c1d3797f651e523199294d2
6
+ metadata.gz: 7f76f10c6b55a0975f16be1f1c0320afa7544a7db6191e860f09923da550449fff49beabebc5f1f7efc05829bbf8c84795271dd67357024a8149db8c471deb69
7
+ data.tar.gz: 5b6b833ee878f43f13c17573d82f49cda53c69d4fa6d5cb1938aa4a90ff5f409b1eb9373b164a09351d51605be106c31000dd07003e398cb0294e05dc454c51d
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyTimeoutSafe
4
- VERSION = '0.1.0'
4
+ VERSION = '0.2.0'
5
5
  end
@@ -5,21 +5,25 @@ require_relative 'ruby_timeout_safe/version'
5
5
 
6
6
  # A safe timeout implementation for Ruby using monotonic time.
7
7
  module RubyTimeoutSafe
8
- def self.timeout(seconds) # rubocop:disable Metrics/MethodLength
9
- raise ArgumentError, 'timeout value must be at least 1 second' if seconds.nil? || seconds < 1.0
8
+ def self.timeout(seconds=nil) # rubocop:disable Metrics/MethodLength
9
+ return yield if seconds.nil? || seconds.zero?
10
+
11
+ raise ArgumentError, 'timeout value must be at least 0.1 second' if seconds < 0.1
12
+ current_thread = Thread.current
10
13
 
11
14
  start_time = Process.clock_gettime(Process::CLOCK_MONOTONIC)
12
- thread = Thread.new do
13
- sleep(seconds)
14
- Thread.main.raise Timeout::Error, 'execution expired'
15
- end
15
+ s_thread = Thread.new do
16
+ loop do
17
+ elapsed_time = Process.clock_gettime(Process::CLOCK_MONOTONIC) - start_time
18
+ break if elapsed_time >= seconds
16
19
 
17
- begin
18
- yield
19
- ensure
20
- elapsed_time = Process.clock_gettime(Process::CLOCK_MONOTONIC) - start_time
21
- remaining_time = seconds - elapsed_time
22
- thread.kill if remaining_time.positive?
20
+ sleep(0.05) # Sleep briefly to prevent busy-waiting
21
+ end
22
+ current_thread.raise Timeout::Error, 'execution expired'
23
23
  end
24
+
25
+ yield
26
+ ensure
27
+ s_thread.kill if s_thread&.alive?
24
28
  end
25
29
  end
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
 
18
18
  The gem defines a `RubyTimeoutSafe` module with a `timeout` method that executes a given
19
19
  Ruby block with a specified timeout duration. If the block execution exceeds the timeout,
20
- a `TimeoutError` exception is raised.
20
+ a `Timeout::Error` exception is raised.
21
21
 
22
22
  This implementation leverages Ruby's built-in threading and monotonic time functions to
23
23
  provide a robust timeout mechanism.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_timeout_safe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - sebi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-04 00:00:00.000000000 Z
11
+ date: 2024-07-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  ruby-timeout-safe is a Ruby library that provides a safe and reliable timeout
@@ -18,7 +18,7 @@ description: |
18
18
 
19
19
  The gem defines a `RubyTimeoutSafe` module with a `timeout` method that executes a given
20
20
  Ruby block with a specified timeout duration. If the block execution exceeds the timeout,
21
- a `TimeoutError` exception is raised.
21
+ a `Timeout::Error` exception is raised.
22
22
 
23
23
  This implementation leverages Ruby's built-in threading and monotonic time functions to
24
24
  provide a robust timeout mechanism.