rbsafecircuit 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: cd861744f8366c9aa9daa35ae58adaf5949d1332b99e461e89d1e512948de0cd
4
+ data.tar.gz: 0fb40867dee016efaa68d7817f814d60ac6ed970bfe8112fb05ca0f72da03808
5
+ SHA512:
6
+ metadata.gz: 48b4a46b90becc52facd6fc81b6094408f70258152931bffbff34071c3810b209d33734176a04cf2b771bd9d34faebec49b5940159c6e76f0aebac48a608cc8b
7
+ data.tar.gz: a13af84505ce51c389d5e34af27045bd1f793e400129d679ceaeb66d843f2ec13bf921932d944f9292c489de4cf6045287950ef5c5702bfd2ad0821f4376e268
data/LICENSE ADDED
@@ -0,0 +1,23 @@
1
+
2
+
3
+ MIT License
4
+
5
+ Copyright (c) [2024] [fadedreams7@gmail.com]
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,63 @@
1
+ # rbsafecircuit
2
+
3
+ rbsafecircuit is a Ruby gem for implementing a circuit breaker pattern with event handling capabilities using `event_emitter`.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'rbsafecircuit'
11
+ ```
12
+ And then execute:
13
+ ```ruby
14
+ bundle install
15
+ ```
16
+ Or install it yourself as:
17
+ ```ruby
18
+ gem install rbsafecircuit
19
+ ```
20
+ ### Example Usage
21
+
22
+ ```ruby
23
+ require 'rbsafecircuit'
24
+
25
+ # Example usage of CircuitBreaker
26
+ max_failures = 3
27
+ timeout = 10
28
+ pause_time = 5 # in seconds for simplicity
29
+ max_consecutive_successes = 2
30
+
31
+ cb = CircuitBreaker.new(max_failures, timeout, pause_time, max_consecutive_successes)
32
+
33
+ # Define a function to be executed (replace with your actual function)
34
+ test_function = lambda do
35
+ # Simulate some work that might succeed or fail
36
+ if rand < 0.8 # 80% success chance
37
+ puts "Function succeeded!"
38
+ "Success"
39
+ else
40
+ puts "Function failed!"
41
+ raise StandardError.new("Function failed")
42
+ end
43
+ end
44
+
45
+ # Execute the function with CircuitBreaker protection
46
+ cb.execute(&test_function)
47
+
48
+ # Event handling examples
49
+ cb.on_success { |result| puts "Success: #{result}" }
50
+ cb.on_failure { |error| puts "Error: #{error.message}" }
51
+ cb.set_on_open(lambda { puts "Circuit breaker is open!" })
52
+ cb.set_on_close(lambda { puts "Circuit breaker is closed." })
53
+ cb.set_on_half_open(lambda { puts "Circuit breaker is half-open." })
54
+
55
+ # Example: Let's wait for a while to see the events (just for demonstration)
56
+ sleep(15)
57
+
58
+ # Cleanup or final operations
59
+ # ...
60
+ ```
61
+
62
+ ### License
63
+ The gem is available as open source under the terms of the MIT License.
@@ -0,0 +1,105 @@
1
+
2
+ require 'event_emitter'
3
+
4
+ module CircuitBreakerState
5
+ CLOSED = 'closed'
6
+ OPEN = 'open'
7
+ HALF_OPEN = 'half_open'
8
+ end
9
+
10
+ class CircuitBreaker
11
+ include EventEmitter
12
+
13
+ def initialize(max_failures, timeout, pause_time, max_consecutive_successes)
14
+ super()
15
+ @state = CircuitBreakerState::CLOSED
16
+ @consecutive_failures = 0
17
+ @total_failures = 0
18
+ @total_successes = 0
19
+ @max_failures = max_failures
20
+ @timeout = timeout
21
+ @open_timeout = Time.at(0)
22
+ @pause_time = pause_time
23
+ @consecutive_successes = 0
24
+ @max_consecutive_successes = max_consecutive_successes
25
+ end
26
+
27
+ def execute(&fn)
28
+ thread = Thread.new do
29
+ begin
30
+ result = fn.call
31
+ handle_success
32
+ emit('success', result)
33
+ rescue StandardError => error
34
+ handle_failure
35
+ emit('failure', error)
36
+ end
37
+ end
38
+
39
+ thread.join
40
+
41
+ case @state
42
+ when CircuitBreakerState::OPEN
43
+ if Time.now > @open_timeout
44
+ @state = CircuitBreakerState::HALF_OPEN
45
+ emit('halfOpen')
46
+ else
47
+ emit('open')
48
+ raise RuntimeError.new("Circuit breaker is open")
49
+ end
50
+ when CircuitBreakerState::HALF_OPEN
51
+ delay(@pause_time)
52
+ return
53
+ end
54
+ end
55
+
56
+ def handle_failure
57
+ @consecutive_failures += 1
58
+ @total_failures += 1
59
+ trip if @consecutive_failures >= @max_failures
60
+ end
61
+
62
+ def handle_success
63
+ reset
64
+ @total_successes += 1
65
+ end
66
+
67
+ def trip
68
+ @state = CircuitBreakerState::OPEN
69
+ @consecutive_failures = 0
70
+ @consecutive_successes = 0
71
+ @open_timeout = Time.now + @timeout
72
+ emit('open')
73
+ end
74
+
75
+ def reset
76
+ @state = CircuitBreakerState::CLOSED
77
+ @consecutive_failures = 0
78
+ @consecutive_successes = 0
79
+ emit('close')
80
+ end
81
+
82
+ def delay(ms)
83
+ sleep(ms / 1000.0)
84
+ end
85
+
86
+ def on_success(&block)
87
+ on('success', &block)
88
+ end
89
+
90
+ def on_failure(&block)
91
+ on('failure', &block)
92
+ end
93
+
94
+ def set_on_open(callback)
95
+ on('open', &callback)
96
+ end
97
+
98
+ def set_on_close(callback)
99
+ on('close', &callback)
100
+ end
101
+
102
+ def set_on_half_open(callback)
103
+ on('halfOpen', &callback)
104
+ end
105
+ end
@@ -0,0 +1,4 @@
1
+
2
+ module Rbsafecircuit
3
+ VERSION = "0.1.0" # Replace with your actual gem version
4
+ end
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rbsafecircuit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - fadedreams7
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-06-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: event_emitter
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ description: rbsafecircuit is a Ruby gem that provides a robust implementation of
28
+ the circuit breaker pattern, designed to enhance the resilience of applications
29
+ by managing failures and reducing the impact of network or service-related issues.
30
+ It includes features such as state management (closed, open, half-open), failure
31
+ thresholds, timeout handling, and event-driven callbacks for handling success, failure,
32
+ open, close, and half-open states. Built with flexibility and reliability in mind,
33
+ rbsafecircuit helps developers ensure their applications remain responsive and reliable
34
+ in the face of unreliable external dependencies.
35
+ email:
36
+ - fadedreams7@gmail.com
37
+ executables: []
38
+ extensions: []
39
+ extra_rdoc_files: []
40
+ files:
41
+ - LICENSE
42
+ - README.md
43
+ - lib/rbsafecircuit/circuit_breaker.rb
44
+ - lib/rbsafecircuit/version.rb
45
+ homepage: https://github.com/fadedreams/rbsafecircuit
46
+ licenses:
47
+ - MIT
48
+ metadata: {}
49
+ post_install_message:
50
+ rdoc_options: []
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '2.5'
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ requirements: []
64
+ rubygems_version: 3.5.9
65
+ signing_key:
66
+ specification_version: 4
67
+ summary: A Ruby gem for implementing a circuit breaker pattern with event handling
68
+ capabilities.
69
+ test_files: []