polyphony 0.36 → 0.42
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/.github/workflows/test.yml +11 -2
- data/.gitignore +2 -2
- data/.rubocop.yml +30 -0
- data/CHANGELOG.md +28 -2
- data/Gemfile +0 -11
- data/Gemfile.lock +15 -14
- data/README.md +2 -1
- data/Rakefile +7 -3
- data/TODO.md +28 -95
- data/docs/_config.yml +56 -7
- data/docs/_sass/custom/custom.scss +0 -30
- data/docs/_sass/overrides.scss +0 -46
- data/docs/{user-guide → _user-guide}/all-about-timers.md +0 -0
- data/docs/_user-guide/index.md +9 -0
- data/docs/{user-guide → _user-guide}/web-server.md +0 -0
- data/docs/api-reference/fiber.md +2 -2
- data/docs/api-reference/index.md +9 -0
- data/docs/api-reference/polyphony-process.md +1 -1
- data/docs/api-reference/thread.md +1 -1
- data/docs/faq.md +21 -11
- data/docs/getting-started/index.md +10 -0
- data/docs/getting-started/installing.md +2 -6
- data/docs/getting-started/overview.md +507 -0
- data/docs/getting-started/tutorial.md +27 -19
- data/docs/index.md +3 -2
- data/docs/main-concepts/concurrency.md +0 -5
- data/docs/main-concepts/design-principles.md +69 -21
- data/docs/main-concepts/extending.md +1 -1
- data/docs/main-concepts/index.md +9 -0
- data/examples/core/01-spinning-up-fibers.rb +1 -0
- data/examples/core/03-interrupting.rb +4 -1
- data/examples/core/04-handling-signals.rb +19 -0
- data/examples/core/xx-agent.rb +102 -0
- data/examples/core/xx-fork-cleanup.rb +22 -0
- data/examples/core/xx-sleeping.rb +14 -6
- data/examples/io/tunnel.rb +48 -0
- data/examples/io/xx-irb.rb +1 -1
- data/examples/performance/thread-vs-fiber/polyphony_mt_server.rb +7 -6
- data/examples/performance/thread-vs-fiber/polyphony_server.rb +13 -36
- data/examples/performance/thread-vs-fiber/polyphony_server_read_loop.rb +58 -0
- data/examples/performance/xx-array.rb +11 -0
- data/examples/performance/xx-fiber-switch.rb +9 -0
- data/examples/performance/xx-snooze.rb +15 -0
- data/ext/{gyro → polyphony}/extconf.rb +2 -2
- data/ext/{gyro → polyphony}/fiber.c +18 -22
- data/ext/{gyro → polyphony}/libev.c +0 -0
- data/ext/{gyro → polyphony}/libev.h +0 -0
- data/ext/polyphony/libev_agent.c +718 -0
- data/ext/polyphony/libev_queue.c +216 -0
- data/ext/{gyro/gyro.c → polyphony/polyphony.c} +16 -46
- data/ext/{gyro/gyro.h → polyphony/polyphony.h} +25 -39
- data/ext/polyphony/polyphony_ext.c +23 -0
- data/ext/{gyro → polyphony}/socket.c +21 -18
- data/ext/polyphony/thread.c +206 -0
- data/ext/{gyro → polyphony}/tracing.c +1 -1
- data/lib/polyphony.rb +40 -44
- data/lib/polyphony/adapters/fs.rb +1 -4
- data/lib/polyphony/adapters/irb.rb +1 -1
- data/lib/polyphony/adapters/postgres.rb +6 -5
- data/lib/polyphony/adapters/process.rb +27 -23
- data/lib/polyphony/adapters/trace.rb +110 -105
- data/lib/polyphony/core/channel.rb +35 -35
- data/lib/polyphony/core/exceptions.rb +29 -29
- data/lib/polyphony/core/global_api.rb +94 -91
- data/lib/polyphony/core/resource_pool.rb +83 -83
- data/lib/polyphony/core/sync.rb +16 -16
- data/lib/polyphony/core/thread_pool.rb +49 -37
- data/lib/polyphony/core/throttler.rb +30 -23
- data/lib/polyphony/event.rb +27 -0
- data/lib/polyphony/extensions/core.rb +25 -17
- data/lib/polyphony/extensions/fiber.rb +269 -267
- data/lib/polyphony/extensions/io.rb +56 -26
- data/lib/polyphony/extensions/openssl.rb +5 -9
- data/lib/polyphony/extensions/socket.rb +29 -10
- data/lib/polyphony/extensions/thread.rb +19 -12
- data/lib/polyphony/net.rb +64 -60
- data/lib/polyphony/version.rb +1 -1
- data/polyphony.gemspec +4 -7
- data/test/helper.rb +14 -1
- data/test/stress.rb +17 -12
- data/test/test_agent.rb +124 -0
- data/test/{test_async.rb → test_event.rb} +15 -7
- data/test/test_ext.rb +25 -4
- data/test/test_fiber.rb +19 -10
- data/test/test_global_api.rb +4 -4
- data/test/test_io.rb +46 -24
- data/test/test_queue.rb +74 -0
- data/test/test_signal.rb +3 -40
- data/test/test_socket.rb +33 -0
- data/test/test_thread.rb +38 -16
- data/test/test_thread_pool.rb +2 -2
- data/test/test_throttler.rb +0 -1
- data/test/test_trace.rb +6 -5
- metadata +41 -57
- data/docs/_includes/nav.html +0 -51
- data/docs/_includes/prevnext.html +0 -17
- data/docs/_layouts/default.html +0 -106
- data/docs/api-reference.md +0 -11
- data/docs/api-reference/gyro-async.md +0 -57
- data/docs/api-reference/gyro-child.md +0 -29
- data/docs/api-reference/gyro-queue.md +0 -44
- data/docs/api-reference/gyro-timer.md +0 -51
- data/docs/api-reference/gyro.md +0 -25
- data/docs/getting-started.md +0 -10
- data/docs/main-concepts.md +0 -10
- data/docs/user-guide.md +0 -10
- data/examples/core/forever_sleep.rb +0 -19
- data/ext/gyro/async.c +0 -148
- data/ext/gyro/child.c +0 -127
- data/ext/gyro/gyro_ext.c +0 -33
- data/ext/gyro/io.c +0 -474
- data/ext/gyro/queue.c +0 -142
- data/ext/gyro/selector.c +0 -205
- data/ext/gyro/signal.c +0 -118
- data/ext/gyro/thread.c +0 -298
- data/ext/gyro/timer.c +0 -134
- data/test/test_timer.rb +0 -56
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e284cae2a5eb2332bc8671090412bbe0cf7d57dbc163d68ba387f4d9635a8adf
|
4
|
+
data.tar.gz: 58eba5a2607df83c7471b1a6b72cc350aa468e9a562e3d1e8f7451eaae12d068
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10b7bcf9240ea8f7355c75d025bd6c5e1bd00c86e7985f71440091cc149c629279b16eaf1c863d85de29e278739926b499625c77238db8eb803aa235395771a4
|
7
|
+
data.tar.gz: 9001df441fdc058a3234bca05f6cca55d3a27edcf0b5b0d126a9c371d37bd0ffecc4d13d8f13c614d9b7182630f94d54481035f6d83fb044aebdf3238f83b03a
|
data/.github/workflows/test.yml
CHANGED
@@ -4,12 +4,21 @@ on: [push]
|
|
4
4
|
|
5
5
|
jobs:
|
6
6
|
build:
|
7
|
-
|
7
|
+
strategy:
|
8
|
+
fail-fast: false
|
9
|
+
matrix:
|
10
|
+
os: [ubuntu-latest]
|
11
|
+
ruby: [2.6, 2.7]
|
12
|
+
|
13
|
+
name: >-
|
14
|
+
${{matrix.os}}, ${{matrix.ruby}}
|
15
|
+
|
16
|
+
runs-on: ${{matrix.os}}
|
8
17
|
steps:
|
9
18
|
- uses: actions/checkout@v1
|
10
19
|
- uses: actions/setup-ruby@v1
|
11
20
|
with:
|
12
|
-
ruby-version:
|
21
|
+
ruby-version: ${{matrix.ruby}}
|
13
22
|
- name: Install dependencies
|
14
23
|
run: |
|
15
24
|
gem install bundler
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -143,3 +143,33 @@ Style/HashTransformKeys:
|
|
143
143
|
|
144
144
|
Style/HashTransformValues:
|
145
145
|
Enabled: true
|
146
|
+
|
147
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
148
|
+
Enabled: true
|
149
|
+
|
150
|
+
Layout/SpaceAroundMethodCallOperator:
|
151
|
+
Enabled: true
|
152
|
+
|
153
|
+
Lint/DeprecatedOpenSSLConstant:
|
154
|
+
Enabled: true
|
155
|
+
|
156
|
+
Lint/MixedRegexpCaptureTypes:
|
157
|
+
Enabled: true
|
158
|
+
|
159
|
+
Lint/RaiseException:
|
160
|
+
Enabled: true
|
161
|
+
|
162
|
+
Lint/StructNewOverride:
|
163
|
+
Enabled: true
|
164
|
+
|
165
|
+
Style/ExponentialNotation:
|
166
|
+
Enabled: true
|
167
|
+
|
168
|
+
Style/RedundantRegexpCharacterClass:
|
169
|
+
Enabled: true
|
170
|
+
|
171
|
+
Style/RedundantRegexpEscape:
|
172
|
+
Enabled: true
|
173
|
+
|
174
|
+
Style/SlicingWithRange:
|
175
|
+
Enabled: true
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,29 @@
|
|
1
|
+
## 0.42 2020-07-03
|
2
|
+
|
3
|
+
* Improve documentation
|
4
|
+
* Fix backtrace on SIGINT
|
5
|
+
* Implement LibevAgent#accept_loop, #read_loop
|
6
|
+
* Move ref counting from thread to agent
|
7
|
+
* Short circuit switchpoint if continuing with the same fiber
|
8
|
+
* Always do a switchpoint in #read, #write, #accept
|
9
|
+
|
10
|
+
## 0.41 2020-06-27
|
11
|
+
|
12
|
+
* Introduce System Agent design, remove all `Gyro` classes
|
13
|
+
|
14
|
+
## 0.40 2020-05-04
|
15
|
+
|
16
|
+
* More improvements to stability after fork
|
17
|
+
|
18
|
+
## 0.38 2020-04-13
|
19
|
+
|
20
|
+
* Fix post-fork segfault if parent process has multiple threads with active watchers
|
21
|
+
|
22
|
+
## 0.37 2020-04-07
|
23
|
+
|
24
|
+
* Explicitly kill threads on exit to prevent possible segfault
|
25
|
+
* Remove Modulation dependency
|
26
|
+
|
1
27
|
## 0.36 2020-03-31
|
2
28
|
|
3
29
|
* More docs
|
@@ -8,13 +34,13 @@
|
|
8
34
|
|
9
35
|
* Rename `Fiber#cancel!` to `Fiber#cancel`
|
10
36
|
* Rename `Gyro::Async#signal!` to `Gyro::Async#signal`
|
11
|
-
* Use `Fiber#
|
37
|
+
* Use `Fiber#auto_watcher` in thread pool, thread extension
|
12
38
|
* Implement `Fiber#auto_io` for reusing IO watcher instances
|
13
39
|
* Refactor C code
|
14
40
|
|
15
41
|
## 0.34 2020-03-25
|
16
42
|
|
17
|
-
* Add `Fiber#
|
43
|
+
* Add `Fiber#auto_watcher` mainly for use in places like `Gyro::Queue#shift`
|
18
44
|
* Refactor C extension
|
19
45
|
* Improved GC'ing for watchers
|
20
46
|
* Implement process supervisor (`Polyphony::ProcessSupervisor`)
|
data/Gemfile
CHANGED
@@ -1,14 +1,3 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
3
|
gemspec
|
4
|
-
|
5
|
-
# gem "jekyll", "~> 3.8.6"
|
6
|
-
# gem "jekyll-remote-theme"
|
7
|
-
# gem "jekyll-seo-tag"
|
8
|
-
# gem "just-the-docs"
|
9
|
-
|
10
|
-
# # gem "github-pages", group: :jekyll_plugins
|
11
|
-
|
12
|
-
# group :jekyll_plugins do
|
13
|
-
# gem "jekyll-feed", "~> 0.6"
|
14
|
-
# end
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
polyphony (0.
|
5
|
-
modulation (~> 1.0)
|
4
|
+
polyphony (0.42)
|
6
5
|
|
7
6
|
GEM
|
8
7
|
remote: https://rubygems.org/
|
@@ -28,7 +27,6 @@ GEM
|
|
28
27
|
multi_xml (>= 0.5.2)
|
29
28
|
i18n (0.9.5)
|
30
29
|
concurrent-ruby (~> 1.0)
|
31
|
-
jaro_winkler (1.5.4)
|
32
30
|
jekyll (3.8.6)
|
33
31
|
addressable (~> 2.4)
|
34
32
|
colorator (~> 1.0)
|
@@ -53,10 +51,10 @@ GEM
|
|
53
51
|
jekyll-watch (2.2.1)
|
54
52
|
listen (~> 3.0)
|
55
53
|
json (2.3.0)
|
56
|
-
just-the-docs (0.
|
57
|
-
jekyll (
|
54
|
+
just-the-docs (0.3.0)
|
55
|
+
jekyll (>= 3.8.5)
|
58
56
|
jekyll-seo-tag (~> 2.0)
|
59
|
-
rake (
|
57
|
+
rake (>= 12.3.1, < 13.1.0)
|
60
58
|
kramdown (1.17.0)
|
61
59
|
liquid (4.0.3)
|
62
60
|
listen (3.2.1)
|
@@ -73,14 +71,13 @@ GEM
|
|
73
71
|
builder
|
74
72
|
minitest (>= 5.0)
|
75
73
|
ruby-progressbar
|
76
|
-
modulation (1.0)
|
77
74
|
multi_xml (0.6.0)
|
78
75
|
parallel (1.19.1)
|
79
76
|
parser (2.7.0.2)
|
80
77
|
ast (~> 2.4.0)
|
81
78
|
pathutil (0.16.2)
|
82
79
|
forwardable-extended (~> 2.6)
|
83
|
-
pg (1.1.
|
80
|
+
pg (1.1.4)
|
84
81
|
public_suffix (4.0.3)
|
85
82
|
rainbow (3.0.0)
|
86
83
|
rake (12.3.3)
|
@@ -90,16 +87,20 @@ GEM
|
|
90
87
|
rb-inotify (0.10.1)
|
91
88
|
ffi (~> 1.0)
|
92
89
|
redis (4.1.0)
|
90
|
+
regexp_parser (1.7.1)
|
93
91
|
rexml (3.2.4)
|
94
92
|
rouge (3.15.0)
|
95
|
-
rubocop (0.
|
96
|
-
jaro_winkler (~> 1.5.1)
|
93
|
+
rubocop (0.85.1)
|
97
94
|
parallel (~> 1.10)
|
98
95
|
parser (>= 2.7.0.1)
|
99
96
|
rainbow (>= 2.2.2, < 4.0)
|
97
|
+
regexp_parser (>= 1.7)
|
100
98
|
rexml
|
99
|
+
rubocop-ast (>= 0.0.3)
|
101
100
|
ruby-progressbar (~> 1.7)
|
102
|
-
unicode-display_width (>= 1.4.0, <
|
101
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
102
|
+
rubocop-ast (0.0.3)
|
103
|
+
parser (>= 2.7.0.1)
|
103
104
|
ruby-progressbar (1.10.1)
|
104
105
|
rubyzip (2.0.0)
|
105
106
|
safe_yaml (1.0.5)
|
@@ -125,15 +126,15 @@ DEPENDENCIES
|
|
125
126
|
jekyll (~> 3.8.6)
|
126
127
|
jekyll-remote-theme (~> 0.4.1)
|
127
128
|
jekyll-seo-tag (~> 2.6.1)
|
128
|
-
just-the-docs (~> 0.
|
129
|
+
just-the-docs (~> 0.3.0)
|
129
130
|
localhost (= 1.1.4)
|
130
131
|
minitest (= 5.13.0)
|
131
132
|
minitest-reporters (= 1.4.2)
|
132
|
-
pg (= 1.1.
|
133
|
+
pg (= 1.1.4)
|
133
134
|
polyphony!
|
134
135
|
rake-compiler (= 1.0.5)
|
135
136
|
redis (= 4.1.0)
|
136
|
-
rubocop (= 0.
|
137
|
+
rubocop (= 0.85.1)
|
137
138
|
simplecov (= 0.17.1)
|
138
139
|
|
139
140
|
BUNDLED WITH
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# Polyphony - Fine-Grained Concurrency for Ruby
|
2
2
|
|
3
|
+
|
3
4
|
[](http://rubygems.org/gems/polyphony)
|
4
5
|
[](https://github.com/digital-fabric/polyphony/actions?query=workflow%3ATests)
|
5
6
|
[](https://github.com/digital-fabric/polyphony/blob/master/LICENSE)
|
@@ -46,4 +47,4 @@ The complete documentation for Polyphony could be found on the
|
|
46
47
|
|
47
48
|
Issues and pull requests will be gladly accepted. Please use the [Polyphony git
|
48
49
|
repository](https://github.com/digital-fabric/polyphony) as your primary point
|
49
|
-
of departure for contributing.
|
50
|
+
of departure for contributing.
|
data/Rakefile
CHANGED
@@ -4,8 +4,8 @@ require "bundler/gem_tasks"
|
|
4
4
|
require "rake/clean"
|
5
5
|
|
6
6
|
require "rake/extensiontask"
|
7
|
-
Rake::ExtensionTask.new("
|
8
|
-
ext.ext_dir = "ext/
|
7
|
+
Rake::ExtensionTask.new("polyphony_ext") do |ext|
|
8
|
+
ext.ext_dir = "ext/polyphony"
|
9
9
|
end
|
10
10
|
|
11
11
|
task :recompile => [:clean, :compile]
|
@@ -15,8 +15,12 @@ task :test do
|
|
15
15
|
exec 'ruby test/run.rb'
|
16
16
|
end
|
17
17
|
|
18
|
+
task :stress_test do
|
19
|
+
exec 'ruby test/stress.rb'
|
20
|
+
end
|
21
|
+
|
18
22
|
task :docs do
|
19
|
-
exec 'RUBYOPT=-W0 jekyll serve -s docs'
|
23
|
+
exec 'RUBYOPT=-W0 jekyll serve -s docs -H ec2-35-158-110-38.eu-central-1.compute.amazonaws.com'
|
20
24
|
end
|
21
25
|
|
22
26
|
CLEAN.include "**/*.o", "**/*.so", "**/*.bundle", "**/*.jar", "pkg", "tmp"
|
data/TODO.md
CHANGED
@@ -1,39 +1,11 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
The use case is being able to supervise fibers that run on separate threads.
|
4
|
-
This might be useful for distributing jobs (such as handling HTTP connections)
|
5
|
-
over multiple threads.
|
1
|
+
## 0.42
|
6
2
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
thread (in `Thread#initialize`).
|
12
|
-
- An API:
|
13
|
-
|
14
|
-
```ruby
|
15
|
-
spin(on_thread: thread) { do_something_important }
|
16
|
-
```
|
17
|
-
|
18
|
-
An alternative is to turn the main fiber of spawned threads into a child of
|
19
|
-
the spawning fiber. But since a lot of people might start threads without any
|
20
|
-
regard to fibers, it might be better to implement this in a new API. An
|
21
|
-
example of the top of my head for threads that shouldn't be children of the
|
22
|
-
spawning fiber is our own test helper, which kills all child fibers after each
|
23
|
-
test. MiniTest has some threads it spawns for running tests in parallel, and
|
24
|
-
we don't want to stop them after each test!
|
25
|
-
|
26
|
-
So, a good solution would be:
|
27
|
-
|
28
|
-
```ruby
|
29
|
-
t = Thread.new { do_stuff }
|
30
|
-
t.parent_fiber = Fiber.current
|
31
|
-
# or otherwise:
|
32
|
-
Fiber.current.add_child_fiber(t.main_fiber)
|
33
|
-
```
|
34
|
-
|
35
|
-
## 0.36 Some more API work, more docs
|
3
|
+
- Reimplement ResourcePool, Channel, Mutex using LibevQueue
|
4
|
+
-- Add `Fiber#schedule_with_priority` method, aliased by `Fiber#wakeup`
|
5
|
+
- Implement agent interface is virtual function table
|
6
|
+
- Implement proxy agent for plugging in a user-provided agent class
|
36
7
|
|
8
|
+
## 0.43
|
37
9
|
- Debugging
|
38
10
|
- Eat your own dogfood: need a good tool to check what's going on when some
|
39
11
|
test fails
|
@@ -142,17 +114,14 @@
|
|
142
114
|
- Docs
|
143
115
|
- landing page:
|
144
116
|
- links to the interesting stuff
|
145
|
-
- concurrency overview
|
146
|
-
- faq
|
147
117
|
- benchmarks
|
148
118
|
- explain difference between `sleep` and `suspend`
|
149
|
-
- add explanation about async vs sync
|
150
119
|
- discuss using `snooze` for ensuring responsiveness when executing CPU-bound work
|
151
120
|
|
152
|
-
- Check why first call to `#sleep` returns too early in tests. Check the
|
153
|
-
sleep behaviour in a spawned thread.
|
154
121
|
|
155
|
-
## 0.
|
122
|
+
## 0.44
|
123
|
+
|
124
|
+
### Some more API work, more docs
|
156
125
|
|
157
126
|
- sintra app with database access (postgresql)
|
158
127
|
|
@@ -162,13 +131,16 @@
|
|
162
131
|
- test performance
|
163
132
|
- proceed from there
|
164
133
|
|
165
|
-
|
134
|
+
|
135
|
+
## 0.45
|
136
|
+
|
137
|
+
### Sinatra / Sidekiq
|
166
138
|
|
167
139
|
- Pull out redis/postgres code, put into new `polyphony-xxx` gems
|
168
140
|
|
169
|
-
## 0.
|
141
|
+
## 0.46
|
170
142
|
|
171
|
-
|
143
|
+
### Testing && Docs
|
172
144
|
|
173
145
|
- More tests
|
174
146
|
- Implement some basic stuff missing:
|
@@ -178,11 +150,11 @@
|
|
178
150
|
- `IO.foreach`
|
179
151
|
- `Process.waitpid`
|
180
152
|
|
181
|
-
## 0.
|
153
|
+
## 0.47
|
182
154
|
|
183
|
-
|
155
|
+
### Real IO#gets and IO#read
|
184
156
|
|
185
|
-
## 0.
|
157
|
+
## 0.48 DNS
|
186
158
|
|
187
159
|
### DNS client
|
188
160
|
|
@@ -215,56 +187,17 @@ Prior art:
|
|
215
187
|
|
216
188
|
- https://github.com/socketry/async-dns
|
217
189
|
|
218
|
-
|
219
|
-
|
220
|
-
- Introduce mailbox limiting:
|
221
|
-
- add API for limiting mailbox size:
|
222
|
-
|
223
|
-
```ruby
|
224
|
-
Fiber.current.mailbox_limit = 1000
|
225
|
-
```
|
226
|
-
|
227
|
-
- Add the limit for `Gyro::Queue`
|
228
|
-
|
229
|
-
```ruby
|
230
|
-
Gyro::Queue.new(1000)
|
231
|
-
```
|
232
|
-
|
233
|
-
- Pushing to a limited queue will block if limit is reached
|
234
|
-
|
235
|
-
- Introduce selective receive:
|
236
|
-
|
237
|
-
```ruby
|
238
|
-
# returns (or waits for) the first message for which the block returns true
|
239
|
-
(_, item) = receive { |msg| msg.first == ref }
|
240
|
-
```
|
241
|
-
|
242
|
-
Possible implementation:
|
243
|
-
|
244
|
-
```ruby
|
245
|
-
def receive
|
246
|
-
return @mailbox.shift unless block_given?
|
247
|
-
|
248
|
-
loop
|
249
|
-
msg = @mailbox.shift
|
250
|
-
return msg if yield(msg)
|
251
|
-
|
252
|
-
# message didn't match condition, put it back in queue
|
253
|
-
@mailbox.push msg
|
254
|
-
end
|
255
|
-
end
|
256
|
-
```
|
190
|
+
## Work on API
|
257
191
|
|
258
192
|
- Add option for setting the exception raised on cancelling using `#cancel_after`:
|
259
193
|
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
```
|
194
|
+
```ruby
|
195
|
+
cancel_after(3, with_error: MyErrorClass) do
|
196
|
+
do_my_thing
|
197
|
+
end
|
198
|
+
# or a RuntimeError with message
|
199
|
+
cancel_after(3, with_error: 'Cancelled due to timeout') do
|
200
|
+
do_my_thing
|
201
|
+
end
|
202
|
+
```
|
270
203
|
|
data/docs/_config.yml
CHANGED
@@ -1,15 +1,64 @@
|
|
1
1
|
title: "Polyphony"
|
2
|
+
description: Fine-grained concurrency for Ruby
|
2
3
|
|
4
|
+
plugins:
|
5
|
+
- jekyll-remote-theme
|
6
|
+
|
7
|
+
permalink: pretty
|
3
8
|
remote_theme: pmarsceill/just-the-docs
|
4
|
-
color_scheme:
|
9
|
+
color_scheme: light
|
5
10
|
|
6
11
|
search_enabled: true
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
+
search:
|
13
|
+
# Split pages into sections that can be searched individually
|
14
|
+
# Supports 1 - 6, default: 2
|
15
|
+
heading_level: 2
|
16
|
+
# Maximum amount of previews per search result
|
17
|
+
# Default: 3
|
18
|
+
previews: 3
|
19
|
+
# Maximum amount of words to display before a matched word in the preview
|
20
|
+
# Default: 5
|
21
|
+
preview_words_before: 5
|
22
|
+
# Maximum amount of words to display after a matched word in the preview
|
23
|
+
# Default: 10
|
24
|
+
preview_words_after: 10
|
25
|
+
# Set the search token separator
|
26
|
+
# Default: /[\s\-/]+/
|
27
|
+
# Example: enable support for hyphenated search words
|
28
|
+
tokenizer_separator: /[\s/]+/
|
29
|
+
# Display the relative url in search results
|
30
|
+
# Supports true (default) or false
|
31
|
+
rel_url: true
|
32
|
+
# Enable or disable the search button that appears in the bottom right corner of every page
|
33
|
+
# Supports true or false (default)
|
34
|
+
button: false
|
12
35
|
|
13
36
|
aux_links:
|
14
37
|
"Polyphony on GitHub":
|
15
|
-
- "//github.com/digital-fabric/polyphony"
|
38
|
+
- "//github.com/digital-fabric/polyphony"
|
39
|
+
|
40
|
+
# Makes Aux links open in a new tab. Default is false
|
41
|
+
aux_links_new_tab: false
|
42
|
+
|
43
|
+
# Enable or disable heading anchors
|
44
|
+
heading_anchors: true
|
45
|
+
|
46
|
+
back_to_top: true
|
47
|
+
back_to_top_text: "Back to top"
|
48
|
+
|
49
|
+
footer_content: "Copyright © 2018-2020 Sharon Rosner. Distributed by an <a href=\"https://github.com/digital-fabric/polyphony/tree/master/LICENSE.txt\">MIT license.</a>"
|
50
|
+
|
51
|
+
# Footer "Edit this page on GitHub" link text
|
52
|
+
gh_edit_link: true # show or hide edit this page link
|
53
|
+
gh_edit_link_text: "Edit this page on GitHub"
|
54
|
+
gh_edit_repository: "https://github.com/digital-fabric/polyphony" # the github URL for your repo
|
55
|
+
gh_edit_branch: "master" # the branch that your docs is served from
|
56
|
+
gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
|
57
|
+
|
58
|
+
compress_html:
|
59
|
+
clippings: all
|
60
|
+
comments: all
|
61
|
+
endings: all
|
62
|
+
startings: []
|
63
|
+
blanklines: false
|
64
|
+
profile: false
|