process_executer 3.1.0 → 3.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: c6cedd27c98fa7e8e5d7ac1d134a514cdad1bac02fec17e88045729c644d978d
4
- data.tar.gz: 3c61d911e0134dd3d083be1773d44910b0218c268733e7bd10b547b83b67dfe4
3
+ metadata.gz: 3af694308b0e9c5119b2ff63d11b6b351a25cc9f7d66ac2dd482c8525736595a
4
+ data.tar.gz: a669d2c3cceadeb7544be9765793eff22addc8c7bde10e13e4d36de447b26cb5
5
5
  SHA512:
6
- metadata.gz: 1963744fe4e899bc099f1641587e3e9d722bcf8f4ee1c88795918eadddc9b4f55324d59779f2be0804bf08a2c47267b0d28d6e625fba2588c1dedd075049f484
7
- data.tar.gz: 004562c12d9ba5ff76a6a9a0b028c0817631eb3fddbca2dac329a1d594ca843ba08e44b6b33cbaea7292b073d2bdd861bb47b738f7d4eaba506ead916606b5d4
6
+ metadata.gz: 670dcd425f0879def69e0875a90edae0f79280b44d4ea73d117b3875ad3eeb1cd6329f4b2d8a6a8c0d601f7b79eb72989288255d57067714f2e830f4dde3ddb2
7
+ data.tar.gz: 6a18db9777ecb26ebaa7b30c3fbadb81ae8adba1dcd60c92bf6d30510f30275336ef34c4b1c05c5df6356bcd62cd5b783736adb25462dd55d9d87deec6015945
data/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to the process_executer gem will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## v3.2.0 (2025-04-04)
9
+
10
+ [Full Changelog](https://github.com/main-branch/process_executer/compare/v3.1.0..v3.2.0)
11
+
12
+ Changes since v3.1.0:
13
+
14
+ * 272d246 test: fix flaky test that fails on windows
15
+ * 1e121d8 test: add test for raising a SpawnError when Process.spawn raises an error
16
+ * 2a2aaac refactor: improve synchronization of the monitored pipe state
17
+
8
18
  ## v3.1.0 (2025-04-01)
9
19
 
10
20
  [Full Changelog](https://github.com/main-branch/process_executer/compare/v3.0.0..v3.1.0)
@@ -58,14 +58,12 @@ module ProcessExecuter
58
58
 
59
59
  assert_destination_is_compatible_with_monitored_pipe
60
60
 
61
+ @mutex = Mutex.new
62
+ @condition_variable = ConditionVariable.new
61
63
  @chunk_size = chunk_size
62
64
  @pipe_reader, @pipe_writer = IO.pipe
63
65
  @state = :open
64
- @thread = Thread.new do
65
- Thread.current.report_on_exception = false
66
- Thread.current.abort_on_exception = false
67
- monitor
68
- end
66
+ @thread = start_monitoring_thread
69
67
  end
70
68
 
71
69
  # Set the state to `:closing` and wait for the state to be set to `:closed`
@@ -84,10 +82,17 @@ module ProcessExecuter
84
82
  # @return [void]
85
83
  #
86
84
  def close
87
- return unless state == :open
85
+ mutex.synchronize do
86
+ return unless state == :open
88
87
 
89
- @state = :closing
90
- sleep 0.001 until state == :closed
88
+ @state = :closing
89
+ end
90
+
91
+ mutex.synchronize do
92
+ condition_variable.wait(mutex) while @state != :closed
93
+ end
94
+
95
+ thread.join
91
96
 
92
97
  destination.close
93
98
  end
@@ -152,9 +157,11 @@ module ProcessExecuter
152
157
  # @api private
153
158
  #
154
159
  def write(data)
155
- raise IOError, 'closed stream' unless state == :open
160
+ mutex.synchronize do
161
+ raise IOError, 'closed stream' unless state == :open
156
162
 
157
- pipe_writer.write(data)
163
+ pipe_writer.write(data)
164
+ end
158
165
  end
159
166
 
160
167
  # @!attribute [r]
@@ -255,6 +262,28 @@ module ProcessExecuter
255
262
 
256
263
  private
257
264
 
265
+ # @!attribute [r]
266
+ #
267
+ # The mutex used to synchronize access to the state variable
268
+ #
269
+ # @return [Mutex]
270
+ #
271
+ # @api private
272
+ #
273
+ attr_reader :mutex
274
+
275
+ # @!attribute [r]
276
+ #
277
+ # The condition variable used to synchronize access to the state
278
+ #
279
+ # In particular, it is used while waiting for the state to change to :closed
280
+ #
281
+ # @return [ConditionVariable]
282
+ #
283
+ # @api private
284
+ #
285
+ attr_reader :condition_variable
286
+
258
287
  # Raise an error if the destination is not compatible with MonitoredPipe
259
288
  # @return [void]
260
289
  # @raise [ArgumentError] if the destination is not compatible with MonitoredPipe
@@ -265,6 +294,17 @@ module ProcessExecuter
265
294
  raise ArgumentError, "Destination #{destination.destination} is not compatible with MonitoredPipe"
266
295
  end
267
296
 
297
+ # Start the thread to monitor the pipe and write data to the destination
298
+ # @return [void]
299
+ # @api private
300
+ def start_monitoring_thread
301
+ Thread.new do
302
+ Thread.current.report_on_exception = false
303
+ Thread.current.abort_on_exception = false
304
+ monitor
305
+ end
306
+ end
307
+
268
308
  # Read data from the pipe until `#state` is changed to `:closing`
269
309
  #
270
310
  # The state is changed to `:closed` by calling `#close`.
@@ -275,8 +315,12 @@ module ProcessExecuter
275
315
  # @api private
276
316
  def monitor
277
317
  monitor_pipe until state == :closing
318
+ ensure
278
319
  close_pipe
279
- @state = :closed
320
+ mutex.synchronize do
321
+ @state = :closed
322
+ condition_variable.signal
323
+ end
280
324
  end
281
325
 
282
326
  # Read data from the pipe until `#state` is changed to `:closing`
@@ -310,8 +354,10 @@ module ProcessExecuter
310
354
  def write_data(data)
311
355
  destination.write(data)
312
356
  rescue StandardError => e
313
- @exception = e
314
- @state = :closing
357
+ mutex.synchronize do
358
+ @exception = e
359
+ @state = :closing
360
+ end
315
361
  end
316
362
 
317
363
  # Read any remaining data from the pipe and close it
@@ -2,5 +2,5 @@
2
2
 
3
3
  module ProcessExecuter
4
4
  # The current Gem version
5
- VERSION = '3.1.0'
5
+ VERSION = '3.2.0'
6
6
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: process_executer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-04-01 00:00:00.000000000 Z
10
+ date: 2025-04-05 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bundler-audit
@@ -250,8 +250,8 @@ metadata:
250
250
  allowed_push_host: https://rubygems.org
251
251
  homepage_uri: https://github.com/main-branch/process_executer
252
252
  source_code_uri: https://github.com/main-branch/process_executer
253
- documentation_uri: https://rubydoc.info/gems/process_executer/3.1.0
254
- changelog_uri: https://rubydoc.info/gems/process_executer/3.1.0/file/CHANGELOG.md
253
+ documentation_uri: https://rubydoc.info/gems/process_executer/3.2.0
254
+ changelog_uri: https://rubydoc.info/gems/process_executer/3.2.0/file/CHANGELOG.md
255
255
  rubygems_mfa_required: 'true'
256
256
  rdoc_options: []
257
257
  require_paths: