concurrent-ruby 1.2.2 → 1.3.5
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 +4 -4
- data/CHANGELOG.md +44 -2
- data/Gemfile +6 -6
- data/README.md +3 -1
- data/Rakefile +50 -25
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +1 -1
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +1 -1
- data/lib/concurrent-ruby/concurrent/agent.rb +2 -2
- data/lib/concurrent-ruby/concurrent/array.rb +3 -3
- data/lib/concurrent-ruby/concurrent/async.rb +1 -1
- data/lib/concurrent-ruby/concurrent/atom.rb +1 -1
- data/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +23 -20
- data/lib/concurrent-ruby/concurrent/concern/logging.rb +17 -12
- data/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
- data/lib/concurrent-ruby/concurrent/delay.rb +1 -1
- data/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +5 -1
- data/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +4 -7
- data/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +5 -0
- data/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +7 -0
- data/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +1 -1
- data/lib/concurrent-ruby/concurrent/executor/timer_set.rb +6 -2
- data/lib/concurrent-ruby/concurrent/hash.rb +5 -3
- data/lib/concurrent-ruby/concurrent/map.rb +3 -3
- data/lib/concurrent-ruby/concurrent/promise.rb +1 -1
- data/lib/concurrent-ruby/concurrent/promises.rb +33 -23
- data/lib/concurrent-ruby/concurrent/scheduled_task.rb +1 -1
- data/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +1 -1
- data/lib/concurrent-ruby/concurrent/synchronization/object.rb +1 -1
- data/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +1 -1
- data/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +1 -1
- data/lib/concurrent-ruby/concurrent/timer_task.rb +59 -9
- data/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +116 -6
- data/lib/concurrent-ruby/concurrent/version.rb +1 -1
- metadata +2 -4
- data/lib/concurrent-ruby/concurrent/collection/map/atomic_reference_map_backend.rb +0 -927
- data/lib/concurrent-ruby/concurrent/thread_safe/util/cheap_lockable.rb +0 -81
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14d5a264c6fdc7b6087131a0f0a2fc1ce661d18029440e426e094443eb359ca6
|
4
|
+
data.tar.gz: 42e7b1b8fb885aec9b7b08488c6682af2743e65ad6dcd731f8c86d34f7768981
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31b6cf4fcc533349681610e74f6261c95e5c664583014d86101578f0380a6889288b29a89314a5da59e92cd422bcd97783c34d99c3e5c21a90db0f0d3fcc57e1
|
7
|
+
data.tar.gz: 4438de87d8ec3ff1cc6d7d246821002bbb76d5a9ddd8b77ebf4a15c0449f1509d694c4f57936b1e1a69e19f32736f21518fd8e82b8cdfbb99d5e2948976c230e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,47 @@
|
|
1
1
|
## Current
|
2
2
|
|
3
|
+
## Release v1.3.5, edge v0.7.2 (15 January 2025)
|
4
|
+
|
5
|
+
concurrent-ruby:
|
6
|
+
|
7
|
+
* (#1062) Remove dependency on logger.
|
8
|
+
|
9
|
+
concurrent-ruby-edge:
|
10
|
+
|
11
|
+
* (#1062) Remove dependency on logger.
|
12
|
+
|
13
|
+
## Release v1.3.4 (10 August 2024)
|
14
|
+
|
15
|
+
* (#1060) Fix bug with return value of `Concurrent.available_processor_count` when `cpu.cfs_quota_us` is -1.
|
16
|
+
* (#1058) Add `Concurrent.cpu_shares` that is cgroups aware.
|
17
|
+
|
18
|
+
## Release v1.3.3 (9 June 2024)
|
19
|
+
|
20
|
+
* (#1053) Improve the speed of `Concurrent.physical_processor_count` on Windows.
|
21
|
+
|
22
|
+
## Release v1.3.2, edge v0.7.1 (7 June 2024)
|
23
|
+
|
24
|
+
concurrent-ruby:
|
25
|
+
|
26
|
+
* (#1051) Remove dependency on `win32ole`.
|
27
|
+
|
28
|
+
concurrent-ruby-edge:
|
29
|
+
|
30
|
+
* (#1052) Fix dependency on `concurrent-ruby` to allow the latest release.
|
31
|
+
|
32
|
+
## Release v1.3.1 (29 May 2024)
|
33
|
+
|
34
|
+
* Release 1.3.0 was broken when pushed to RubyGems. 1.3.1 is a packaging fix.
|
35
|
+
|
36
|
+
## Release v1.3.0 (28 May 2024)
|
37
|
+
|
38
|
+
* (#1042) Align Java Executor Service behavior for `shuttingdown?`, `shutdown?`
|
39
|
+
* (#1038) Add `Concurrent.available_processor_count` that is cgroups aware.
|
40
|
+
|
41
|
+
## Release v1.2.3 (16 Jan 2024)
|
42
|
+
|
43
|
+
* See [the GitHub release](https://github.com/ruby-concurrency/concurrent-ruby/releases/tag/v1.2.3) for details.
|
44
|
+
|
3
45
|
## Release v1.2.2 (24 Feb 2023)
|
4
46
|
|
5
47
|
* (#993) Fix arguments passed to `Concurrent::Map`'s `default_proc`.
|
@@ -264,7 +306,7 @@ concurrent-ruby-edge:
|
|
264
306
|
* Simplification of `RubySingleThreadExecutor`
|
265
307
|
* `Async` improvements
|
266
308
|
- Each object uses its own `SingleThreadExecutor` instead of the global thread pool.
|
267
|
-
- No
|
309
|
+
- No longer supports executor injection
|
268
310
|
- Much better documentation
|
269
311
|
* `Atom` updates
|
270
312
|
- No longer `Dereferenceable`
|
@@ -439,7 +481,7 @@ Please see the [roadmap](https://github.com/ruby-concurrency/concurrent-ruby/iss
|
|
439
481
|
* Fixed bug with return value of `Concurrent::Actor::Utils::Pool#ask`
|
440
482
|
* Fixed timing bug in `TimerTask`
|
441
483
|
* Fixed bug when creating a `JavaThreadPoolExecutor` with minimum pool size of zero
|
442
|
-
* Removed confusing warning when not using native
|
484
|
+
* Removed confusing warning when not using native extensions
|
443
485
|
* Improved documentation
|
444
486
|
|
445
487
|
## Release v0.7.0 (13 August 2014)
|
data/Gemfile
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
version = File.read("#{__dir__}/lib/concurrent-ruby/concurrent/version.rb")[/'(.+)'/, 1] or raise
|
4
|
+
edge_version = File.read("#{__dir__}/lib/concurrent-ruby-edge/concurrent/edge/version.rb")[/'(.+)'/, 1] or raise
|
5
5
|
|
6
6
|
no_path = ENV['NO_PATH']
|
7
7
|
options = no_path ? {} : { path: '.' }
|
8
8
|
|
9
|
-
gem 'concurrent-ruby',
|
10
|
-
gem 'concurrent-ruby-edge',
|
11
|
-
gem 'concurrent-ruby-ext',
|
9
|
+
gem 'concurrent-ruby', version, options
|
10
|
+
gem 'concurrent-ruby-edge', edge_version, options
|
11
|
+
gem 'concurrent-ruby-ext', version, options.merge(platform: :mri)
|
12
12
|
|
13
13
|
group :development do
|
14
14
|
gem 'rake', '~> 13.0'
|
15
|
-
gem 'rake-compiler', '~> 1.0', '>= 1.0.7'
|
15
|
+
gem 'rake-compiler', '~> 1.0', '>= 1.0.7', '!= 1.2.4'
|
16
16
|
gem 'rake-compiler-dock', '~> 1.0'
|
17
17
|
gem 'pry', '~> 0.11', platforms: :mri
|
18
18
|
end
|
data/README.md
CHANGED
@@ -284,7 +284,7 @@ To use the tools in the Edge gem it must be required separately:
|
|
284
284
|
require 'concurrent-edge'
|
285
285
|
```
|
286
286
|
|
287
|
-
If the library does not behave as expected, `Concurrent.
|
287
|
+
If the library does not behave as expected, `Concurrent.use_simple_logger(:DEBUG)` could
|
288
288
|
help to reveal the problem.
|
289
289
|
|
290
290
|
## Installation
|
@@ -375,6 +375,8 @@ best practice is to depend on `concurrent-ruby` and let users to decide if they
|
|
375
375
|
* [Benoit Daloze](https://github.com/eregon)
|
376
376
|
* [Matthew Draper](https://github.com/matthewd)
|
377
377
|
* [Rafael França](https://github.com/rafaelfranca)
|
378
|
+
* [Charles Oliver Nutter](https://github.com/headius)
|
379
|
+
* [Ben Sheldon](https://github.com/bensheldon)
|
378
380
|
* [Samuel Williams](https://github.com/ioquatix)
|
379
381
|
|
380
382
|
### Special Thanks to
|
data/Rakefile
CHANGED
@@ -1,6 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require_relative 'lib/concurrent-ruby/concurrent/utility/engine'
|
1
|
+
version = File.read("#{__dir__}/lib/concurrent-ruby/concurrent/version.rb")[/'(.+)'/, 1] or raise
|
2
|
+
edge_version = File.read("#{__dir__}/lib/concurrent-ruby-edge/concurrent/edge/version.rb")[/'(.+)'/, 1] or raise
|
4
3
|
|
5
4
|
core_gemspec = Gem::Specification.load File.join(__dir__, 'concurrent-ruby.gemspec')
|
6
5
|
ext_gemspec = Gem::Specification.load File.join(__dir__, 'concurrent-ruby-ext.gemspec')
|
@@ -8,14 +7,16 @@ edge_gemspec = Gem::Specification.load File.join(__dir__, 'concurrent-ruby-edge.
|
|
8
7
|
|
9
8
|
require 'rake/javaextensiontask'
|
10
9
|
|
11
|
-
ENV['JRUBY_HOME'] = ENV['CONCURRENT_JRUBY_HOME'] if ENV['CONCURRENT_JRUBY_HOME'] &&
|
10
|
+
ENV['JRUBY_HOME'] = ENV['CONCURRENT_JRUBY_HOME'] if ENV['CONCURRENT_JRUBY_HOME'] && RUBY_ENGINE != 'jruby'
|
12
11
|
|
13
12
|
Rake::JavaExtensionTask.new('concurrent_ruby', core_gemspec) do |ext|
|
14
13
|
ext.ext_dir = 'ext/concurrent-ruby'
|
15
14
|
ext.lib_dir = 'lib/concurrent-ruby/concurrent'
|
15
|
+
ext.source_version = '8'
|
16
|
+
ext.target_version = '8'
|
16
17
|
end
|
17
18
|
|
18
|
-
|
19
|
+
if RUBY_ENGINE == 'ruby'
|
19
20
|
require 'rake/extensiontask'
|
20
21
|
|
21
22
|
Rake::ExtensionTask.new('concurrent_ruby_ext', ext_gemspec) do |ext|
|
@@ -28,6 +29,10 @@ unless Concurrent.on_jruby? || Concurrent.on_truffleruby?
|
|
28
29
|
end
|
29
30
|
end
|
30
31
|
|
32
|
+
def which?(executable)
|
33
|
+
!`which #{executable} 2>/dev/null`.empty?
|
34
|
+
end
|
35
|
+
|
31
36
|
require 'rake_compiler_dock'
|
32
37
|
namespace :repackage do
|
33
38
|
desc '* with Windows fat distributions'
|
@@ -42,12 +47,19 @@ namespace :repackage do
|
|
42
47
|
Rake::Task['lib/concurrent-ruby/concurrent/concurrent_ruby.jar'].invoke
|
43
48
|
|
44
49
|
# build all gem files
|
50
|
+
rack_compiler_dock_kwargs = {}
|
51
|
+
if which?('podman') and (!which?('docker') || `docker --version`.include?('podman'))
|
52
|
+
# podman and only podman available, so RakeCompilerDock will use podman, otherwise it uses docker
|
53
|
+
rack_compiler_dock_kwargs = {
|
54
|
+
options: ['--privileged'], # otherwise the directory in the image is empty
|
55
|
+
runas: false
|
56
|
+
}
|
57
|
+
end
|
45
58
|
%w[x86-mingw32 x64-mingw32].each do |plat|
|
46
59
|
RakeCompilerDock.sh(
|
47
60
|
"bundle install --local && bundle exec rake native:#{plat} gem --trace",
|
48
61
|
platform: plat,
|
49
|
-
|
50
|
-
runas: false)
|
62
|
+
**rack_compiler_dock_kwargs)
|
51
63
|
end
|
52
64
|
end
|
53
65
|
end
|
@@ -57,7 +69,7 @@ require 'rubygems'
|
|
57
69
|
require 'rubygems/package_task'
|
58
70
|
|
59
71
|
Gem::PackageTask.new(core_gemspec) {} if core_gemspec
|
60
|
-
Gem::PackageTask.new(ext_gemspec) {} if ext_gemspec &&
|
72
|
+
Gem::PackageTask.new(ext_gemspec) {} if ext_gemspec && RUBY_ENGINE != 'jruby'
|
61
73
|
Gem::PackageTask.new(edge_gemspec) {} if edge_gemspec
|
62
74
|
|
63
75
|
CLEAN.include(
|
@@ -85,9 +97,9 @@ begin
|
|
85
97
|
task :installed do
|
86
98
|
Bundler.with_original_env do
|
87
99
|
Dir.chdir(__dir__) do
|
88
|
-
sh "gem install pkg/concurrent-ruby-#{
|
89
|
-
sh "gem install pkg/concurrent-ruby-ext-#{
|
90
|
-
sh "gem install pkg/concurrent-ruby-edge-#{
|
100
|
+
sh "gem install pkg/concurrent-ruby-#{version}.gem"
|
101
|
+
sh "gem install pkg/concurrent-ruby-ext-#{version}.gem" if RUBY_ENGINE == 'ruby'
|
102
|
+
sh "gem install pkg/concurrent-ruby-edge-#{edge_version}.gem"
|
91
103
|
ENV['NO_PATH'] = 'true'
|
92
104
|
sh 'bundle update'
|
93
105
|
sh 'bundle exec rake spec:ci'
|
@@ -117,7 +129,7 @@ rescue LoadError => e
|
|
117
129
|
puts 'RSpec is not installed, skipping test task definitions: ' + e.message
|
118
130
|
end
|
119
131
|
|
120
|
-
current_yard_version_name =
|
132
|
+
current_yard_version_name = version
|
121
133
|
|
122
134
|
begin
|
123
135
|
require 'yard'
|
@@ -221,6 +233,8 @@ namespace :release do
|
|
221
233
|
# Depends on environment of @pitr-ch
|
222
234
|
|
223
235
|
task :checks do
|
236
|
+
raise '$CONCURRENT_JRUBY_HOME must be set' unless ENV['CONCURRENT_JRUBY_HOME']
|
237
|
+
|
224
238
|
Dir.chdir(__dir__) do
|
225
239
|
sh 'test -z "$(git status --porcelain)"' do |ok, res|
|
226
240
|
unless ok
|
@@ -251,15 +265,19 @@ namespace :release do
|
|
251
265
|
|
252
266
|
desc '* test actual installed gems instead of cloned repository on MRI and JRuby'
|
253
267
|
task :test do
|
268
|
+
raise '$CONCURRENT_JRUBY_HOME must be set' unless ENV['CONCURRENT_JRUBY_HOME']
|
269
|
+
|
254
270
|
Dir.chdir(__dir__) do
|
255
271
|
puts "Testing with the installed gem"
|
256
272
|
|
257
273
|
Bundler.with_original_env do
|
258
274
|
sh 'ruby -v'
|
275
|
+
sh 'bundle install'
|
259
276
|
sh 'bundle exec rake spec:installed'
|
260
277
|
|
261
|
-
env = { "PATH" => "#{ENV
|
278
|
+
env = { "PATH" => "#{ENV.fetch('CONCURRENT_JRUBY_HOME')}/bin:#{ENV['PATH']}" }
|
262
279
|
sh env, 'ruby -v'
|
280
|
+
sh env, 'bundle install'
|
263
281
|
sh env, 'bundle exec rake spec:installed'
|
264
282
|
end
|
265
283
|
|
@@ -271,8 +289,8 @@ namespace :release do
|
|
271
289
|
task :publish => ['publish:ask', 'publish:tag', 'publish:rubygems', 'publish:post_steps']
|
272
290
|
|
273
291
|
namespace :publish do
|
274
|
-
publish_base =
|
275
|
-
publish_edge =
|
292
|
+
publish_base = nil
|
293
|
+
publish_edge = nil
|
276
294
|
|
277
295
|
task :ask do
|
278
296
|
begin
|
@@ -280,8 +298,15 @@ namespace :release do
|
|
280
298
|
input = STDIN.gets.strip.downcase
|
281
299
|
end until %w(y n).include?(input)
|
282
300
|
exit 1 if input == 'n'
|
301
|
+
|
302
|
+
begin
|
303
|
+
STDOUT.puts 'Do you want to publish `concurrent-ruby`? (y/n)'
|
304
|
+
input = STDIN.gets.strip.downcase
|
305
|
+
end until %w(y n).include?(input)
|
306
|
+
publish_base = input == 'y'
|
307
|
+
|
283
308
|
begin
|
284
|
-
STDOUT.puts '
|
309
|
+
STDOUT.puts 'Do you want to publish `concurrent-ruby-edge`? (y/n)'
|
285
310
|
input = STDIN.gets.strip.downcase
|
286
311
|
end until %w(y n).include?(input)
|
287
312
|
publish_edge = input == 'y'
|
@@ -290,21 +315,21 @@ namespace :release do
|
|
290
315
|
desc '** tag HEAD with current version and push to github'
|
291
316
|
task :tag => :ask do
|
292
317
|
Dir.chdir(__dir__) do
|
293
|
-
sh "git tag v#{
|
294
|
-
sh "git push origin v#{
|
295
|
-
sh "git tag edge-v#{
|
296
|
-
sh "git push origin edge-v#{
|
318
|
+
sh "git tag v#{version}" if publish_base
|
319
|
+
sh "git push origin v#{version}" if publish_base
|
320
|
+
sh "git tag edge-v#{edge_version}" if publish_edge
|
321
|
+
sh "git push origin edge-v#{edge_version}" if publish_edge
|
297
322
|
end
|
298
323
|
end
|
299
324
|
|
300
325
|
desc '** push all *.gem files to rubygems'
|
301
326
|
task :rubygems => :ask do
|
302
327
|
Dir.chdir(__dir__) do
|
303
|
-
sh "gem push pkg/concurrent-ruby-#{
|
304
|
-
sh "gem push pkg/concurrent-ruby-edge-#{
|
305
|
-
sh "gem push pkg/concurrent-ruby-ext-#{
|
306
|
-
sh "gem push pkg/concurrent-ruby-ext-#{
|
307
|
-
sh "gem push pkg/concurrent-ruby-ext-#{
|
328
|
+
sh "gem push pkg/concurrent-ruby-#{version}.gem" if publish_base
|
329
|
+
sh "gem push pkg/concurrent-ruby-edge-#{edge_version}.gem" if publish_edge
|
330
|
+
sh "gem push pkg/concurrent-ruby-ext-#{version}.gem" if publish_base
|
331
|
+
sh "gem push pkg/concurrent-ruby-ext-#{version}-x64-mingw32.gem" if publish_base
|
332
|
+
sh "gem push pkg/concurrent-ruby-ext-#{version}-x86-mingw32.gem" if publish_base
|
308
333
|
end
|
309
334
|
end
|
310
335
|
|
@@ -481,7 +481,7 @@ public class ConcurrentHashMapV8<K, V>
|
|
481
481
|
*
|
482
482
|
* Maintaining API and serialization compatibility with previous
|
483
483
|
* versions of this class introduces several oddities. Mainly: We
|
484
|
-
* leave untouched but unused constructor arguments
|
484
|
+
* leave untouched but unused constructor arguments referring to
|
485
485
|
* concurrencyLevel. We accept a loadFactor constructor argument,
|
486
486
|
* but apply it only to initial table capacity (which is the only
|
487
487
|
* time that we can guarantee to honor it.) We also declare an
|
@@ -484,7 +484,7 @@ public class ConcurrentHashMapV8<K, V>
|
|
484
484
|
*
|
485
485
|
* Maintaining API and serialization compatibility with previous
|
486
486
|
* versions of this class introduces several oddities. Mainly: We
|
487
|
-
* leave untouched but unused constructor arguments
|
487
|
+
* leave untouched but unused constructor arguments referring to
|
488
488
|
* concurrencyLevel. We accept a loadFactor constructor argument,
|
489
489
|
* but apply it only to initial table capacity (which is the only
|
490
490
|
* time that we can guarantee to honor it.) We also declare an
|
@@ -371,7 +371,7 @@ module Concurrent
|
|
371
371
|
# @param [Float] timeout the maximum number of seconds to wait
|
372
372
|
# @return [Boolean] true if all actions complete before timeout
|
373
373
|
#
|
374
|
-
# @raise [Concurrent::TimeoutError] when
|
374
|
+
# @raise [Concurrent::TimeoutError] when timeout is reached
|
375
375
|
#
|
376
376
|
# @!macro agent_await_warning
|
377
377
|
def await_for!(timeout)
|
@@ -477,7 +477,7 @@ module Concurrent
|
|
477
477
|
# @param [Array<Concurrent::Agent>] agents the Agents on which to wait
|
478
478
|
# @return [Boolean] true if all actions complete before timeout
|
479
479
|
#
|
480
|
-
# @raise [Concurrent::TimeoutError] when
|
480
|
+
# @raise [Concurrent::TimeoutError] when timeout is reached
|
481
481
|
# @!macro agent_await_warning
|
482
482
|
def await_for!(timeout, *agents)
|
483
483
|
raise Concurrent::TimeoutError unless await_for(timeout, *agents)
|
@@ -21,9 +21,9 @@ module Concurrent
|
|
21
21
|
# @!macro internal_implementation_note
|
22
22
|
ArrayImplementation = case
|
23
23
|
when Concurrent.on_cruby?
|
24
|
-
# Array is thread-safe
|
25
|
-
#
|
26
|
-
#
|
24
|
+
# Array is not fully thread-safe on CRuby, see
|
25
|
+
# https://github.com/ruby-concurrency/concurrent-ruby/issues/929
|
26
|
+
# So we will need to add synchronization here
|
27
27
|
::Array
|
28
28
|
|
29
29
|
when Concurrent.on_jruby?
|
@@ -218,7 +218,7 @@ module Concurrent
|
|
218
218
|
|
219
219
|
# @!method self.new(*args, &block)
|
220
220
|
#
|
221
|
-
#
|
221
|
+
# Instantiate a new object and ensure proper initialization of the
|
222
222
|
# synchronization mechanisms.
|
223
223
|
#
|
224
224
|
# @param [Array<Object>] args Zero or more arguments to be passed to the
|
@@ -113,7 +113,7 @@ module Concurrent
|
|
113
113
|
# @option opts [Proc] :validator (nil) Optional proc used to validate new
|
114
114
|
# values. It must accept one and only one argument which will be the
|
115
115
|
# intended new value. The validator will return true if the new value
|
116
|
-
# is acceptable else return false (
|
116
|
+
# is acceptable else return false (preferably) or raise an exception.
|
117
117
|
#
|
118
118
|
# @!macro deref_options
|
119
119
|
#
|
@@ -8,74 +8,77 @@ module Concurrent
|
|
8
8
|
# @!visibility private
|
9
9
|
class SynchronizedMapBackend < NonConcurrentMapBackend
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
def initialize(*args, &block)
|
12
|
+
super
|
13
|
+
|
14
|
+
# WARNING: Mutex is a non-reentrant lock, so the synchronized methods are
|
15
|
+
# not allowed to call each other.
|
16
|
+
@mutex = Mutex.new
|
17
|
+
end
|
15
18
|
|
16
19
|
def [](key)
|
17
|
-
synchronize { super }
|
20
|
+
@mutex.synchronize { super }
|
18
21
|
end
|
19
22
|
|
20
23
|
def []=(key, value)
|
21
|
-
synchronize { super }
|
24
|
+
@mutex.synchronize { super }
|
22
25
|
end
|
23
26
|
|
24
27
|
def compute_if_absent(key)
|
25
|
-
synchronize { super }
|
28
|
+
@mutex.synchronize { super }
|
26
29
|
end
|
27
30
|
|
28
31
|
def compute_if_present(key)
|
29
|
-
synchronize { super }
|
32
|
+
@mutex.synchronize { super }
|
30
33
|
end
|
31
34
|
|
32
35
|
def compute(key)
|
33
|
-
synchronize { super }
|
36
|
+
@mutex.synchronize { super }
|
34
37
|
end
|
35
38
|
|
36
39
|
def merge_pair(key, value)
|
37
|
-
synchronize { super }
|
40
|
+
@mutex.synchronize { super }
|
38
41
|
end
|
39
42
|
|
40
43
|
def replace_pair(key, old_value, new_value)
|
41
|
-
synchronize { super }
|
44
|
+
@mutex.synchronize { super }
|
42
45
|
end
|
43
46
|
|
44
47
|
def replace_if_exists(key, new_value)
|
45
|
-
synchronize { super }
|
48
|
+
@mutex.synchronize { super }
|
46
49
|
end
|
47
50
|
|
48
51
|
def get_and_set(key, value)
|
49
|
-
synchronize { super }
|
52
|
+
@mutex.synchronize { super }
|
50
53
|
end
|
51
54
|
|
52
55
|
def key?(key)
|
53
|
-
synchronize { super }
|
56
|
+
@mutex.synchronize { super }
|
54
57
|
end
|
55
58
|
|
56
59
|
def delete(key)
|
57
|
-
synchronize { super }
|
60
|
+
@mutex.synchronize { super }
|
58
61
|
end
|
59
62
|
|
60
63
|
def delete_pair(key, value)
|
61
|
-
synchronize { super }
|
64
|
+
@mutex.synchronize { super }
|
62
65
|
end
|
63
66
|
|
64
67
|
def clear
|
65
|
-
synchronize { super }
|
68
|
+
@mutex.synchronize { super }
|
66
69
|
end
|
67
70
|
|
68
71
|
def size
|
69
|
-
synchronize { super }
|
72
|
+
@mutex.synchronize { super }
|
70
73
|
end
|
71
74
|
|
72
75
|
def get_or_default(key, default_value)
|
73
|
-
synchronize { super }
|
76
|
+
@mutex.synchronize { super }
|
74
77
|
end
|
75
78
|
|
76
79
|
private
|
77
80
|
def dupped_backend
|
78
|
-
synchronize { super }
|
81
|
+
@mutex.synchronize { super }
|
79
82
|
end
|
80
83
|
end
|
81
84
|
end
|
@@ -1,4 +1,3 @@
|
|
1
|
-
require 'logger'
|
2
1
|
require 'concurrent/atomic/atomic_reference'
|
3
2
|
|
4
3
|
module Concurrent
|
@@ -8,10 +7,12 @@ module Concurrent
|
|
8
7
|
#
|
9
8
|
# @!visibility private
|
10
9
|
module Logging
|
11
|
-
|
10
|
+
# The same as Logger::Severity but we copy it here to avoid a dependency on the logger gem just for these 7 constants
|
11
|
+
DEBUG, INFO, WARN, ERROR, FATAL, UNKNOWN = 0, 1, 2, 3, 4, 5
|
12
|
+
SEV_LABEL = %w[DEBUG INFO WARN ERROR FATAL ANY].freeze
|
12
13
|
|
13
14
|
# Logs through {Concurrent.global_logger}, it can be overridden by setting @logger
|
14
|
-
# @param [Integer] level one of
|
15
|
+
# @param [Integer] level one of Concurrent::Concern::Logging constants
|
15
16
|
# @param [String] progname e.g. a path of an Actor
|
16
17
|
# @param [String, nil] message when nil block is used to generate the message
|
17
18
|
# @yieldreturn [String] a message
|
@@ -23,7 +24,7 @@ module Concurrent
|
|
23
24
|
end
|
24
25
|
logger.call level, progname, message, &block
|
25
26
|
rescue => error
|
26
|
-
$stderr.puts "`Concurrent.
|
27
|
+
$stderr.puts "`Concurrent.global_logger` failed to log #{[level, progname, message, block]}\n" +
|
27
28
|
"#{error.message} (#{error.class})\n#{error.backtrace.join "\n"}"
|
28
29
|
end
|
29
30
|
end
|
@@ -33,8 +34,10 @@ end
|
|
33
34
|
module Concurrent
|
34
35
|
extend Concern::Logging
|
35
36
|
|
36
|
-
#
|
37
|
-
def self.create_simple_logger(level =
|
37
|
+
# Create a simple logger with provided level and output.
|
38
|
+
def self.create_simple_logger(level = :FATAL, output = $stderr)
|
39
|
+
level = Concern::Logging.const_get(level) unless level.is_a?(Integer)
|
40
|
+
|
38
41
|
# TODO (pitr-ch 24-Dec-2016): figure out why it had to be replaced, stdlogger was deadlocking
|
39
42
|
lambda do |severity, progname, message = nil, &block|
|
40
43
|
return false if severity < level
|
@@ -52,7 +55,7 @@ module Concurrent
|
|
52
55
|
|
53
56
|
output.print format "[%s] %5s -- %s: %s\n",
|
54
57
|
Time.now.strftime('%Y-%m-%d %H:%M:%S.%L'),
|
55
|
-
|
58
|
+
Concern::Logging::SEV_LABEL[severity],
|
56
59
|
progname,
|
57
60
|
formatted_message
|
58
61
|
true
|
@@ -60,13 +63,15 @@ module Concurrent
|
|
60
63
|
end
|
61
64
|
|
62
65
|
# Use logger created by #create_simple_logger to log concurrent-ruby messages.
|
63
|
-
def self.use_simple_logger(level =
|
66
|
+
def self.use_simple_logger(level = :FATAL, output = $stderr)
|
64
67
|
Concurrent.global_logger = create_simple_logger level, output
|
65
68
|
end
|
66
69
|
|
67
|
-
#
|
70
|
+
# Create a stdlib logger with provided level and output.
|
71
|
+
# If you use this deprecated method you might need to add logger to your Gemfile to avoid warnings from Ruby 3.3.5+.
|
68
72
|
# @deprecated
|
69
|
-
def self.create_stdlib_logger(level =
|
73
|
+
def self.create_stdlib_logger(level = :FATAL, output = $stderr)
|
74
|
+
require 'logger'
|
70
75
|
logger = Logger.new(output)
|
71
76
|
logger.level = level
|
72
77
|
logger.formatter = lambda do |severity, datetime, progname, msg|
|
@@ -93,7 +98,7 @@ module Concurrent
|
|
93
98
|
|
94
99
|
# Use logger created by #create_stdlib_logger to log concurrent-ruby messages.
|
95
100
|
# @deprecated
|
96
|
-
def self.use_stdlib_logger(level =
|
101
|
+
def self.use_stdlib_logger(level = :FATAL, output = $stderr)
|
97
102
|
Concurrent.global_logger = create_stdlib_logger level, output
|
98
103
|
end
|
99
104
|
|
@@ -103,7 +108,7 @@ module Concurrent
|
|
103
108
|
NULL_LOGGER = lambda { |level, progname, message = nil, &block| }
|
104
109
|
|
105
110
|
# @!visibility private
|
106
|
-
GLOBAL_LOGGER = AtomicReference.new(create_simple_logger(
|
111
|
+
GLOBAL_LOGGER = AtomicReference.new(create_simple_logger(:WARN))
|
107
112
|
private_constant :GLOBAL_LOGGER
|
108
113
|
|
109
114
|
def self.global_logger
|
Binary file
|
@@ -19,7 +19,7 @@ module Concurrent
|
|
19
19
|
#
|
20
20
|
# When a `Delay` is created its state is set to `pending`. The value and
|
21
21
|
# reason are both `nil`. The first time the `#value` method is called the
|
22
|
-
# enclosed
|
22
|
+
# enclosed operation will be run and the calling thread will block. Other
|
23
23
|
# threads attempting to call `#value` will block as well. Once the operation
|
24
24
|
# is complete the *value* will be set to the result of the operation or the
|
25
25
|
# *reason* will be set to the raised exception, as appropriate. All threads
|
@@ -39,6 +39,10 @@ module Concurrent
|
|
39
39
|
# The number of tasks that have been completed by the pool since construction.
|
40
40
|
# @return [Integer] The number of tasks that have been completed by the pool since construction.
|
41
41
|
|
42
|
+
# @!macro thread_pool_executor_method_active_count
|
43
|
+
# The number of threads that are actively executing tasks.
|
44
|
+
# @return [Integer] The number of threads that are actively executing tasks.
|
45
|
+
|
42
46
|
# @!macro thread_pool_executor_attr_reader_idletime
|
43
47
|
# The number of seconds that a thread may be idle before being reclaimed.
|
44
48
|
# @return [Integer] The number of seconds that a thread may be idle before being reclaimed.
|
@@ -79,7 +83,7 @@ module Concurrent
|
|
79
83
|
#
|
80
84
|
# This is a no-op on some pool implementation (e.g. the Java one). The Ruby
|
81
85
|
# pool will auto-prune each time a new job is posted. You will need to call
|
82
|
-
# this method
|
86
|
+
# this method explicitly in case your application post jobs in bursts (a
|
83
87
|
# lot of jobs and then nothing for long periods)
|
84
88
|
|
85
89
|
# @!macro thread_pool_executor_public_api
|
@@ -57,15 +57,11 @@ if Concurrent.on_jruby?
|
|
57
57
|
end
|
58
58
|
|
59
59
|
def ns_shuttingdown?
|
60
|
-
|
61
|
-
@executor.isTerminating
|
62
|
-
else
|
63
|
-
false
|
64
|
-
end
|
60
|
+
@executor.isShutdown && !@executor.isTerminated
|
65
61
|
end
|
66
62
|
|
67
63
|
def ns_shutdown?
|
68
|
-
@executor.
|
64
|
+
@executor.isTerminated
|
69
65
|
end
|
70
66
|
|
71
67
|
class Job
|
@@ -88,10 +84,11 @@ if Concurrent.on_jruby?
|
|
88
84
|
|
89
85
|
def initialize(daemonize = true)
|
90
86
|
@daemonize = daemonize
|
87
|
+
@java_thread_factory = java.util.concurrent.Executors.defaultThreadFactory
|
91
88
|
end
|
92
89
|
|
93
90
|
def newThread(runnable)
|
94
|
-
thread =
|
91
|
+
thread = @java_thread_factory.newThread(runnable)
|
95
92
|
thread.setDaemon(@daemonize)
|
96
93
|
return thread
|
97
94
|
end
|
@@ -73,6 +73,11 @@ if Concurrent.on_jruby?
|
|
73
73
|
@executor.getCompletedTaskCount
|
74
74
|
end
|
75
75
|
|
76
|
+
# @!macro thread_pool_executor_method_active_count
|
77
|
+
def active_count
|
78
|
+
@executor.getActiveCount
|
79
|
+
end
|
80
|
+
|
76
81
|
# @!macro thread_pool_executor_attr_reader_idletime
|
77
82
|
def idletime
|
78
83
|
@executor.getKeepAliveTime(java.util.concurrent.TimeUnit::SECONDS)
|
@@ -61,6 +61,13 @@ module Concurrent
|
|
61
61
|
synchronize { @completed_task_count }
|
62
62
|
end
|
63
63
|
|
64
|
+
# @!macro thread_pool_executor_method_active_count
|
65
|
+
def active_count
|
66
|
+
synchronize do
|
67
|
+
@pool.length - @ready.length
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
64
71
|
# @!macro executor_service_method_can_overflow_question
|
65
72
|
def can_overflow?
|
66
73
|
synchronize { ns_limited_queue? }
|
@@ -27,7 +27,7 @@ module Concurrent
|
|
27
27
|
# is received. This pattern has several issues. The thread itself is highly
|
28
28
|
# susceptible to errors during processing. Also, the thread itself must be
|
29
29
|
# constantly monitored and restarted should it die. `SingleThreadExecutor`
|
30
|
-
# encapsulates all these
|
30
|
+
# encapsulates all these behaviors. The task processor is highly resilient
|
31
31
|
# to errors from within tasks. Also, should the thread die it will
|
32
32
|
# automatically be restarted.
|
33
33
|
#
|