smparkes-eventmachine 0.12.10
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +15 -0
- data/README +81 -0
- data/Rakefile +374 -0
- data/docs/COPYING +60 -0
- data/docs/ChangeLog +211 -0
- data/docs/DEFERRABLES +133 -0
- data/docs/EPOLL +141 -0
- data/docs/GNU +281 -0
- data/docs/INSTALL +13 -0
- data/docs/KEYBOARD +38 -0
- data/docs/LEGAL +25 -0
- data/docs/LIGHTWEIGHT_CONCURRENCY +70 -0
- data/docs/PURE_RUBY +75 -0
- data/docs/RELEASE_NOTES +94 -0
- data/docs/SMTP +2 -0
- data/docs/SPAWNED_PROCESSES +89 -0
- data/docs/TODO +8 -0
- data/eventmachine.gemspec +40 -0
- data/examples/ex_channel.rb +43 -0
- data/examples/ex_queue.rb +2 -0
- data/examples/helper.rb +2 -0
- data/ext/binder.cpp +125 -0
- data/ext/binder.h +46 -0
- data/ext/cmain.cpp +827 -0
- data/ext/cplusplus.cpp +202 -0
- data/ext/ed.cpp +1901 -0
- data/ext/ed.h +424 -0
- data/ext/em.cpp +2288 -0
- data/ext/em.h +229 -0
- data/ext/emwin.cpp +300 -0
- data/ext/emwin.h +94 -0
- data/ext/epoll.cpp +26 -0
- data/ext/epoll.h +25 -0
- data/ext/eventmachine.h +122 -0
- data/ext/eventmachine_cpp.h +96 -0
- data/ext/extconf.rb +150 -0
- data/ext/fastfilereader/extconf.rb +85 -0
- data/ext/fastfilereader/mapper.cpp +214 -0
- data/ext/fastfilereader/mapper.h +59 -0
- data/ext/fastfilereader/rubymain.cpp +127 -0
- data/ext/files.cpp +94 -0
- data/ext/files.h +65 -0
- data/ext/kb.cpp +81 -0
- data/ext/page.cpp +107 -0
- data/ext/page.h +51 -0
- data/ext/pipe.cpp +349 -0
- data/ext/project.h +156 -0
- data/ext/rubymain.cpp +1194 -0
- data/ext/sigs.cpp +89 -0
- data/ext/sigs.h +32 -0
- data/ext/ssl.cpp +460 -0
- data/ext/ssl.h +94 -0
- data/java/.classpath +8 -0
- data/java/.project +17 -0
- data/java/src/com/rubyeventmachine/EmReactor.java +570 -0
- data/java/src/com/rubyeventmachine/EmReactorException.java +40 -0
- data/java/src/com/rubyeventmachine/EventableChannel.java +69 -0
- data/java/src/com/rubyeventmachine/EventableDatagramChannel.java +189 -0
- data/java/src/com/rubyeventmachine/EventableSocketChannel.java +364 -0
- data/java/src/com/rubyeventmachine/application/Application.java +194 -0
- data/java/src/com/rubyeventmachine/application/Connection.java +74 -0
- data/java/src/com/rubyeventmachine/application/ConnectionFactory.java +37 -0
- data/java/src/com/rubyeventmachine/application/DefaultConnectionFactory.java +46 -0
- data/java/src/com/rubyeventmachine/application/PeriodicTimer.java +38 -0
- data/java/src/com/rubyeventmachine/application/Timer.java +54 -0
- data/java/src/com/rubyeventmachine/tests/ApplicationTest.java +109 -0
- data/java/src/com/rubyeventmachine/tests/ConnectTest.java +148 -0
- data/java/src/com/rubyeventmachine/tests/EMTest.java +80 -0
- data/java/src/com/rubyeventmachine/tests/TestDatagrams.java +53 -0
- data/java/src/com/rubyeventmachine/tests/TestServers.java +75 -0
- data/java/src/com/rubyeventmachine/tests/TestTimers.java +90 -0
- data/lib/em/buftok.rb +138 -0
- data/lib/em/callback.rb +26 -0
- data/lib/em/channel.rb +57 -0
- data/lib/em/connection.rb +564 -0
- data/lib/em/deferrable.rb +192 -0
- data/lib/em/file_watch.rb +54 -0
- data/lib/em/future.rb +61 -0
- data/lib/em/messages.rb +66 -0
- data/lib/em/process_watch.rb +44 -0
- data/lib/em/processes.rb +119 -0
- data/lib/em/protocols/header_and_content.rb +138 -0
- data/lib/em/protocols/httpclient.rb +263 -0
- data/lib/em/protocols/httpclient2.rb +590 -0
- data/lib/em/protocols/line_and_text.rb +125 -0
- data/lib/em/protocols/linetext2.rb +161 -0
- data/lib/em/protocols/memcache.rb +323 -0
- data/lib/em/protocols/object_protocol.rb +45 -0
- data/lib/em/protocols/postgres3.rb +247 -0
- data/lib/em/protocols/saslauth.rb +175 -0
- data/lib/em/protocols/smtpclient.rb +357 -0
- data/lib/em/protocols/smtpserver.rb +547 -0
- data/lib/em/protocols/socks4.rb +66 -0
- data/lib/em/protocols/stomp.rb +200 -0
- data/lib/em/protocols/tcptest.rb +53 -0
- data/lib/em/protocols.rb +36 -0
- data/lib/em/queue.rb +61 -0
- data/lib/em/spawnable.rb +85 -0
- data/lib/em/streamer.rb +130 -0
- data/lib/em/timers.rb +56 -0
- data/lib/em/version.rb +3 -0
- data/lib/eventmachine.rb +1592 -0
- data/lib/evma/callback.rb +32 -0
- data/lib/evma/container.rb +75 -0
- data/lib/evma/factory.rb +77 -0
- data/lib/evma/protocol.rb +87 -0
- data/lib/evma/reactor.rb +48 -0
- data/lib/evma.rb +32 -0
- data/lib/jeventmachine.rb +257 -0
- data/lib/pr_eventmachine.rb +1022 -0
- data/setup.rb +1585 -0
- data/tasks/cpp.rake_example +77 -0
- data/tests/client.crt +31 -0
- data/tests/client.key +51 -0
- data/tests/test_attach.rb +126 -0
- data/tests/test_basic.rb +284 -0
- data/tests/test_channel.rb +63 -0
- data/tests/test_connection_count.rb +35 -0
- data/tests/test_defer.rb +47 -0
- data/tests/test_epoll.rb +160 -0
- data/tests/test_error_handler.rb +35 -0
- data/tests/test_errors.rb +82 -0
- data/tests/test_exc.rb +55 -0
- data/tests/test_file_watch.rb +49 -0
- data/tests/test_futures.rb +198 -0
- data/tests/test_get_sock_opt.rb +30 -0
- data/tests/test_handler_check.rb +37 -0
- data/tests/test_hc.rb +218 -0
- data/tests/test_httpclient.rb +218 -0
- data/tests/test_httpclient2.rb +153 -0
- data/tests/test_inactivity_timeout.rb +50 -0
- data/tests/test_kb.rb +60 -0
- data/tests/test_ltp.rb +182 -0
- data/tests/test_ltp2.rb +317 -0
- data/tests/test_next_tick.rb +133 -0
- data/tests/test_object_protocol.rb +37 -0
- data/tests/test_pause.rb +70 -0
- data/tests/test_pending_connect_timeout.rb +48 -0
- data/tests/test_process_watch.rb +48 -0
- data/tests/test_processes.rb +128 -0
- data/tests/test_proxy_connection.rb +92 -0
- data/tests/test_pure.rb +125 -0
- data/tests/test_queue.rb +44 -0
- data/tests/test_running.rb +42 -0
- data/tests/test_sasl.rb +72 -0
- data/tests/test_send_file.rb +242 -0
- data/tests/test_servers.rb +76 -0
- data/tests/test_smtpclient.rb +83 -0
- data/tests/test_smtpserver.rb +85 -0
- data/tests/test_spawn.rb +322 -0
- data/tests/test_ssl_args.rb +79 -0
- data/tests/test_ssl_methods.rb +50 -0
- data/tests/test_ssl_verify.rb +82 -0
- data/tests/test_timers.rb +162 -0
- data/tests/test_ud.rb +36 -0
- data/tests/testem.rb +31 -0
- data/web/whatis +7 -0
- metadata +237 -0
data/docs/ChangeLog
ADDED
@@ -0,0 +1,211 @@
|
|
1
|
+
01Oct06: Replaced EventMachine#open_datagram_server with a version that can
|
2
|
+
take a Class or a Module, instead of just a Module. Thanks to Tobias
|
3
|
+
Gustafsson for pointing out the missing case.
|
4
|
+
04Oct06: Supported subsecond timer resolutions, per request by Jason Roelofs.
|
5
|
+
05Oct06: Added EventMachine#set_quantum, which sets the timer resolution.
|
6
|
+
15Nov06: Added Connection#set_comm_inactivity_timeout.
|
7
|
+
15Nov06: Checked in a Line-and-Text Protocol Handler.
|
8
|
+
18Nov06: Checked in a Header-and-Body Protocol Handler.
|
9
|
+
22Nov06: Changed EventMachine#reconnect: no longer excepts when called on an
|
10
|
+
already-connected handler.
|
11
|
+
28Nov06: Supported a binary-unix gem.
|
12
|
+
19Dec06: Added EventMachine#set_effective_user.
|
13
|
+
05Jan07: Upped max outstanding timers to 1000.
|
14
|
+
15May07: Applied Solaris patches from Brett Eisenberg
|
15
|
+
22May07: Cleaned up the license text in all the source files.
|
16
|
+
22May07: Released version 0.7.2
|
17
|
+
|
18
|
+
23May07: Per suggestion from Bill Kelly, fixed a bug with the initialization
|
19
|
+
of the network libraries under Windows. The goal is to enable EM to
|
20
|
+
be used without Ruby.
|
21
|
+
28May07: Applied patch from Bill Kelly, refactors the declarations of
|
22
|
+
event names to make EM easier to use from C programs without Ruby.
|
23
|
+
31May07: Added a preliminary implementation of EventMachine#popen.
|
24
|
+
01Jun07: Added EM, a "pseudo-alias" for EventMachine.
|
25
|
+
01Jun07: Added EM#next_tick.
|
26
|
+
01Jun07: Added EM::Connection#get_outbound_data_size
|
27
|
+
05Jun07: Removed the code which loads a pure-Ruby EM library in case the
|
28
|
+
compiled extension is unavailable. Suggested by Moshe Litvin.
|
29
|
+
06Jun07: Preliminary epoll implementation.
|
30
|
+
12Jun07: Added an evented popen implementation that, like Ruby's, is
|
31
|
+
full-duplex and makes the subprocess PID available to the caller.
|
32
|
+
06Jul07: Performance-tweaked the callback dispatcher in eventmachine.rb.
|
33
|
+
10Jul07: Released version 0.8.0.
|
34
|
+
12Jul07: Applied patches from Tim Pease to fix Solaris build problems.
|
35
|
+
15Jul07: Created a new provisional source branch, experiments/jruby-1.
|
36
|
+
This is a preliminary implementation of the EM reactor in Java,
|
37
|
+
suitable for use with JRuby.
|
38
|
+
17Jul07: Added EventMachine#stop_server, per request from Kirk Haines,
|
39
|
+
and associated unit tests.
|
40
|
+
22Jul07: Added EventMachine#stream_file_data. This is a very fast and scalable
|
41
|
+
way of sending data from static files over network connections. It
|
42
|
+
has separate implementations for small files and large file, and
|
43
|
+
has tunings to minimize memory consumption.
|
44
|
+
26Jul07: Added some patches by Kirk Haines to improve the behavior of
|
45
|
+
EM::Connection#send_file_data_to_connection.
|
46
|
+
26Jul07: Added a C++ module for directly integrating EM into C++ programs
|
47
|
+
with no Ruby dependencies. Needs example code.
|
48
|
+
29Jul07: Added EventMachine::Protocols::LineText2.
|
49
|
+
29Jul07: Added EventMachine::Protocols::Stomp.
|
50
|
+
30Jul07: Added sys/stat.h to project.h to fix compilation bug on Darwin.
|
51
|
+
13Aug07: Added EventMachine#reactor_running?
|
52
|
+
15Aug07: Added parameters for EventMachine::Connection:start_tls that can be
|
53
|
+
used to specify client-side private keys and certificates.
|
54
|
+
17Aug07: Added EventMachine#run_block, a sugaring for a common use case.
|
55
|
+
24Aug07: Added a preliminary keyboard handler. Needs docs and testing on
|
56
|
+
windows.
|
57
|
+
26Aug07: Created EventMachine::Spawnable, an implementation of Erlang-like
|
58
|
+
processes.
|
59
|
+
27Aug07: Silenced some -w warnings, requested by James Edward Gray II.
|
60
|
+
30Aug07: Added cookies to EM::HttpClient#request.
|
61
|
+
04Sep07: Added an initial implementation of an evented SMTP client.
|
62
|
+
04Sep07: Added an initial implementation of an evented SMTP server.
|
63
|
+
10Sep07: Changed EM#spawn to run spawned blocks in the context of the
|
64
|
+
SpawnedProcess object, not of whatever was the active object at the
|
65
|
+
time of the spawn.
|
66
|
+
14Sep07: Heartbeats weren't working with EPOLL. Noticed by Brian Candler.
|
67
|
+
15Sep07: Added some features, tests and documents to Deferrable.
|
68
|
+
16Sep07: Added [:content] parameter to EM::Protocols::SmtpClient#send.
|
69
|
+
16Sep07: Bumped version to 0.9.0 in anticipation of a release.
|
70
|
+
18Sep07: Released version 0.9.0.
|
71
|
+
19Sep07: Added #receive_reset to EM::Protocols::SmtpServer.
|
72
|
+
19Sep07: User overrides of EM::Protocols::SmtpServer#receive_recipient can now
|
73
|
+
return a Deferrable. Also fixed bug: SmtpClient now raises a protocol
|
74
|
+
error if none of its RCPT TO: commands are accepted by the server.
|
75
|
+
26Sep07: Fixed missing keyboard support for Windows.
|
76
|
+
03Oct07: Added a default handler for RuntimeErrors emitted from user-written
|
77
|
+
code. Suggested by Brian Candler.
|
78
|
+
19Oct07: Set the SO_BROADCAST option automatically on all UDP sockets.
|
79
|
+
10Nov07: Forced integer conversion of send_datagram's port parameter.
|
80
|
+
Suggested by Matthieu Riou.
|
81
|
+
12Nov07: Added saslauth.rb, a protocol module to replace the Cyrus SASL
|
82
|
+
daemons saslauthd and pwcheck.
|
83
|
+
15Nov07: Fixed bug reported by Mark Zvillius. We were failing to dispatch
|
84
|
+
zero-length datagrams under certain conditions.
|
85
|
+
19Nov07: Added EventMachine#set_max_timers. Requested by Matthieu Riou and
|
86
|
+
others.
|
87
|
+
19Nov07: Fixed bug with EM::Connection#start_tls. Was not working with server
|
88
|
+
connections. Reported by Michael S. Fischer.
|
89
|
+
26Nov07: Supported a hack for EventMachine#popen so it can return an exit
|
90
|
+
status from subprocesses. Requested by Michael S. Fischer.
|
91
|
+
30Nov07: Changed Pipe descriptors so that the child-side of the socketpair is
|
92
|
+
NOT set nonblocking. Suggested by Duane Johnson.
|
93
|
+
05Dec07: Re-enabled the pure-Ruby implementation.
|
94
|
+
06Dec07: Released Version 0.10.0.
|
95
|
+
13Dec07: Added EM::DeferrableChildProcess
|
96
|
+
24Dec07: Added a SASL client for simple password authentication.
|
97
|
+
27Dec07: Removed the hookable error handler. No one was using it and it significantly
|
98
|
+
degraded performance.
|
99
|
+
30Dec07: Implemented Kqueue support for OSX and BSD.
|
100
|
+
04Jan08: Fixed bug in epoll ("Bad file descriptor"), patch supplied by Chris
|
101
|
+
Heath.
|
102
|
+
04Jan08: Fixed bug reported by Michael S. Fischer. We were terminating
|
103
|
+
SSL connections that sent data before the handshake was complete.
|
104
|
+
08Jan08: Added an OpenBSD branch for extconf.rb, contributed by Guillaume
|
105
|
+
Sellier.
|
106
|
+
19Jan08: Added EM::Connection::get_sockname per request by Michael Fischer.
|
107
|
+
19Jan08: Supported IPv6 addresses.
|
108
|
+
30Apr08: Set the NODELAY option on sockets that we connect to other servers.
|
109
|
+
Omission noted by Roger Pack.
|
110
|
+
14May08: Generated a 0.12 release.
|
111
|
+
15May08: Supported EM#get_sockname for acceptors (TCP server sockets).
|
112
|
+
Requested by Roger Pack.
|
113
|
+
15May08; Accepted a patch from Dan Aquino that allows the interval of a
|
114
|
+
PeriodicTimer to be changed on the fly.
|
115
|
+
15Jun08: Supported nested calls to EM#run. Many people contributed ideas to
|
116
|
+
this, notably raggi and tmm1.
|
117
|
+
20Jul08: Accepted patch from tmm1 for EM#fork_reactor.
|
118
|
+
28Jul08: Added a Postgres3 implementation, written by FCianfrocca.
|
119
|
+
14Aug08: Added a patch by Mike Murphy to support basic auth in the http
|
120
|
+
client.
|
121
|
+
28Aug08: Added a patch by tmm1 to fix a longstanding problem with Java
|
122
|
+
data-sends.
|
123
|
+
13Sep08: Added LineText2#set_binary_mode, a back-compatibility alias.
|
124
|
+
13Sep08: Modified the load order of protocol libraries in eventmachine.rb
|
125
|
+
to permit a modification of HeaderAndContentProtocol.
|
126
|
+
13Sep08: Modified HeaderAndContent to use LineText2, which is less buggy
|
127
|
+
than LineAndTextProtocol. This change may be reversed if we can fix
|
128
|
+
the bugs in buftok.
|
129
|
+
13Sep08: Improved the password handling in the Postgres protocol handler.
|
130
|
+
15Sep08: Added attach/detach, contributed by Aman Gupta (tmm1) and Riham Aldakkak,
|
131
|
+
to support working with file descriptors not created in the reactor.
|
132
|
+
16Sep08: Added an optional version string to the HTTP client. This is a hack
|
133
|
+
that allows a client to specify a version 1.0 request, which
|
134
|
+
keeps the server from sending a chunked response. The right way to
|
135
|
+
solve this, of course, is to support chunked responses.
|
136
|
+
23Sep08: ChangeLog Summary for Merge of branches/raggi
|
137
|
+
Most notable work and patches by Aman Gupta, Roger Pack, and James Tucker.
|
138
|
+
Patches / Tickets also submitted by: Jeremy Evans, aanand, darix, mmmurf,
|
139
|
+
danielaquino, macournoyer.
|
140
|
+
- Moved docs into docs/ dir
|
141
|
+
- Major refactor of rakefile, added generic rakefile helpers in tasks
|
142
|
+
- Added example CPP build rakefile in tasks/cpp.rake
|
143
|
+
- Moved rake tests out to tasks/tests.rake
|
144
|
+
- Added svn ignores where appropriate
|
145
|
+
- Fixed jruby build on older java platforms
|
146
|
+
- Gem now builds from Rakefile rather than directly via extconf
|
147
|
+
- Gem unified for jruby, C++ and pure ruby.
|
148
|
+
- Correction for pure C++ build, removing ruby dependency
|
149
|
+
- Fix for CYGWIN builds on ipv6
|
150
|
+
- Major refactor for extconf.rb
|
151
|
+
- Working mingw builds
|
152
|
+
- extconf optionally uses pkg_config over manual configuration
|
153
|
+
- extconf builds for 1.9 on any system that has 1.9
|
154
|
+
- extconf no longer links pthread explicitly
|
155
|
+
- looks for kqueue on all *nix systems
|
156
|
+
- better error output on std::runtime_error, now says where it came from
|
157
|
+
- Fixed some tests on jruby
|
158
|
+
- Added test for general send_data flaw, required for a bugfix in jruby build
|
159
|
+
- Added timeout to epoll tests
|
160
|
+
- Added fixes for java reactor ruby api
|
161
|
+
- Small addition of some docs in httpclient.rb and httpcli2.rb
|
162
|
+
- Some refactor and fixes in smtpserver.rb
|
163
|
+
- Added parenthesis where possible to avoid excess ruby warnings
|
164
|
+
- Refactor of $eventmachine_library logic for accuracy and maintenance, jruby
|
165
|
+
- EM::start_server now supports unix sockets
|
166
|
+
- EM::connect now supports unix sockets
|
167
|
+
- EM::defer @threadqueue now handled more gracefully
|
168
|
+
- Added better messages on exceptions raised
|
169
|
+
- Fix edge case in timer fires
|
170
|
+
- Explicitly require buftok.rb
|
171
|
+
- Add protocols to autoload, rather than require them all immediately
|
172
|
+
- Fix a bug in pr_eventmachine for outbound_q
|
173
|
+
- Refactors to take some of the use of defer out of tests.
|
174
|
+
- Fixes in EM.defer under start/stop conditions. Reduced scope of threads.
|
175
|
+
23Sep08: Added patch from tmm1 to avoid popen errors on exit.
|
176
|
+
30Sep08: Added File.exists? checks in the args for start_tls, as suggested by
|
177
|
+
Brian Lopez (brianmario).
|
178
|
+
10Nov08: ruby 1.9 compatibility enhancements
|
179
|
+
28Nov08: Allow for older ruby builds where RARRAY_LEN is not defined
|
180
|
+
03Dec08: allow passing arguments to popen handlers
|
181
|
+
13Jan09: SSL support for httpclient2 (David Smalley)
|
182
|
+
22Jan09: Fixed errors on OSX with the kqueue reactor, fixed errors in the pure
|
183
|
+
ruby reactor. Added EM.current_time. Added EM.epoll? and EM.kqueue?
|
184
|
+
27Jan09: Reactor errors are now raised as ruby RuntimeErrors.
|
185
|
+
28Jan09: Documentation patch from alloy
|
186
|
+
29Jan09: (Late sign-off) Use a longer timeout for connect_server (Ilya
|
187
|
+
Grigorik)
|
188
|
+
07Feb09: Fix signal handling issues with threads+epoll
|
189
|
+
07Feb09: Use rb_thread_schedule in the epoll reactor
|
190
|
+
07Feb09: Use TRAP_BEG/END and rb_thread_schedule in kqueue reactor
|
191
|
+
08Feb09: Added fastfilereader from swiftiply
|
192
|
+
08Feb09: 1.9 fix for rb_trap_immediate
|
193
|
+
08Feb09: Enable rb_thread_blocking_region for 1.9.0 and 1.9.1
|
194
|
+
10Feb09: Support win32 builds for fastfilereader
|
195
|
+
10Feb09: Added a new event to indicate completion of SSL handshake on TCP
|
196
|
+
connections
|
197
|
+
10Feb09: Working get_peer_cert method. Returns the certificate as a Ruby
|
198
|
+
String in PEM format. (Jake Douglas)
|
199
|
+
10Feb09: Added EM.get_max_timers
|
200
|
+
11Feb09: Fix compile options for sun compiler (Alasdairrr)
|
201
|
+
11Feb09: get_status returns a Process::Status object
|
202
|
+
12Feb09: Add EM::Protocols::Memcache with simple get/set functionality
|
203
|
+
19Feb09: Add catch-all EM.error_handler
|
204
|
+
20Feb09: Support miniunit (1.9)
|
205
|
+
20Feb09: Return success on content-length = 0 instead of start waiting forever
|
206
|
+
(Ugo Riboni)
|
207
|
+
25Feb09: Allow next_tick to be used to pre-schedule reactor operations before
|
208
|
+
EM.run
|
209
|
+
26Feb09: Added EM.get_connection_count
|
210
|
+
01Mar09: Switch back to extconf for compiling gem extensions
|
211
|
+
01Mar09: fixed a small bug with basic auth (mmmurf)
|
data/docs/DEFERRABLES
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
EventMachine (EM) adds two different formalisms for lightweight concurrency to the Ruby programmer's toolbox: spawned processes and deferrables. This note will show you how to use deferrables. For more information, see the separate document LIGHTWEIGHT_CONCURRENCY.
|
2
|
+
|
3
|
+
=== What are Deferrables?
|
4
|
+
|
5
|
+
EventMachine's Deferrable borrows heavily from the "deferred" object in Python's "Twisted" event-handling framework. Here's a minimal example that illustrates Deferrable:
|
6
|
+
|
7
|
+
require 'eventmachine'
|
8
|
+
|
9
|
+
class MyClass
|
10
|
+
include EM::Deferrable
|
11
|
+
|
12
|
+
def print_value x
|
13
|
+
puts "MyClass instance received #{x}"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
EM.run {
|
18
|
+
df = MyClass.new
|
19
|
+
df.callback {|x|
|
20
|
+
df.print_value(x)
|
21
|
+
EM.stop
|
22
|
+
}
|
23
|
+
|
24
|
+
EM::Timer.new(2) {
|
25
|
+
df.set_deferred_status :succeeded, 100
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
|
30
|
+
This program will spin for two seconds, print out the string "MyClass instance received 100" and then exit. The Deferrable pattern relies on an unusual metaphor that may be unfamiliar to you, unless you've used Python's Twisted. You may need to read the following material through more than once before you get the idea.
|
31
|
+
|
32
|
+
EventMachine::Deferrable is simply a Ruby Module that you can include in your own classes. (There also is a class named EventMachine::DefaultDeferrable for when you want to create one without including it in code of your own.)
|
33
|
+
|
34
|
+
An object that includes EventMachine::Deferrable is like any other Ruby object: it can be created whenever you want, returned from your functions, or passed as an argument to other functions.
|
35
|
+
|
36
|
+
The Deferrable pattern allows you to specify any number of Ruby code blocks (callbacks or errbacks) that will be executed at some future time when the status of the Deferrable object changes.
|
37
|
+
|
38
|
+
How might that be useful? Well, imagine that you're implementing an HTTP server, but you need to make a call to some other server in order to fulfill a client request.
|
39
|
+
|
40
|
+
When you receive a request from one of your clients, you can create and return a Deferrable object. Some other section of your program can add a callback to the Deferrable that will cause the client's request to be fulfilled. Simultaneously, you initiate an event-driven or threaded client request to some different server. And then your EM program will continue to process other events and service other client requests.
|
41
|
+
|
42
|
+
When your client request to the other server completes some time later, you will call the #set_deferred_status method on the Deferrable object, passing either a success or failure status, and an arbitrary number of parameters (which might include the data you received from the other server).
|
43
|
+
|
44
|
+
At that point, the status of the Deferrable object becomes known, and its callback or errback methods are immediately executed. Callbacks and errbacks are code blocks that are attached to Deferrable objects at any time through the methods #callback and #errback.
|
45
|
+
|
46
|
+
The deep beauty of this pattern is that it decouples the disposition of one operation (such as a client request to an outboard server) from the subsequent operations that depend on that disposition (which may include responding to a different client or any other operation).
|
47
|
+
|
48
|
+
The code which invokes the deferred operation (that will eventually result in a success or failure status together with associated data) is completely separate from the code which depends on that status and data. This achieves one of the primary goals for which threading is typically used in sophisticated applications, with none of the nondeterminacy or debugging difficulties of threads.
|
49
|
+
|
50
|
+
As soon as the deferred status of a Deferrable becomes known by way of a call to #set_deferred_status, the Deferrable will IMMEDIATELY execute all of its callbacks or errbacks in the order in which they were added to the Deferrable.
|
51
|
+
|
52
|
+
Callbacks and errbacks can be added to a Deferrable object at any time, not just when the object is created. They can even be added after the status of the object has been determined! (In this case, they will be executed immediately when they are added.)
|
53
|
+
|
54
|
+
A call to Deferrable#set_deferred_status takes :succeeded or :failed as its first argument. (This determines whether the object will call its callbacks or its errbacks.) #set_deferred_status also takes zero or more additional parameters, that will in turn be passed as parameters to the callbacks or errbacks.
|
55
|
+
|
56
|
+
In general, you can only call #set_deferred_status ONCE on a Deferrable object. A call to #set_deferred_status will not return until all of the associated callbacks or errbacks have been called. If you add callbacks or errbacks AFTER making a call to #set_deferred_status, those additional callbacks or errbacks will execute IMMEDIATELY. Any given callback or errback will be executed AT MOST once.
|
57
|
+
|
58
|
+
It's possible to call #set_deferred_status AGAIN, during the execution a callback or errback. This makes it possible to change the parameters which will be sent to the callbacks or errbacks farther down the chain, enabling some extremely elegant use-cases. You can transform the data returned from a deferred operation in arbitrary ways as needed by subsequent users, without changing any of the code that generated the original data.
|
59
|
+
|
60
|
+
A call to #set_deferred_status will not return until all of the associated callbacks or errbacks have been called. If you add callbacks or errbacks AFTER making a call to #set_deferred_status, those additional callbacks or errbacks will execute IMMEDIATELY.
|
61
|
+
|
62
|
+
Let's look at some more sample code. It turns out that many of the internal protocol implementations in the EventMachine package rely on Deferrable. One of these is EM::Protocols::HttpClient.
|
63
|
+
|
64
|
+
To make an evented HTTP request, use the module function EM::Protocols::HttpClient#request, which returns a Deferrable object. Here's how:
|
65
|
+
|
66
|
+
require 'eventmachine'
|
67
|
+
|
68
|
+
EM.run {
|
69
|
+
df = EM::Protocols::HttpClient.request( :host=>"www.example.com", :request=>"/index.html" )
|
70
|
+
|
71
|
+
df.callback {|response|
|
72
|
+
puts "Succeeded: #{response[:content]}"
|
73
|
+
EM.stop
|
74
|
+
}
|
75
|
+
|
76
|
+
df.errback {|response|
|
77
|
+
puts "ERROR: #{response[:status]}"
|
78
|
+
EM.stop
|
79
|
+
}
|
80
|
+
}
|
81
|
+
|
82
|
+
(See the documentation of EventMachine::Protocols::HttpClient for information on the object returned by #request.)
|
83
|
+
|
84
|
+
In this code, we make a call to HttpClient#request, which immediately returns a Deferrable object. In the background, an HTTP client request is being made to www.example.com, although your code will continue to run concurrently.
|
85
|
+
|
86
|
+
At some future point, the HTTP client request will complete, and the code in EM::Protocols::HttpClient will process either a valid HTTP response (including returned content), or an error.
|
87
|
+
|
88
|
+
At that point, EM::Protocols::HttpClient will call EM::Deferrable#set_deferred_status on the Deferrable object that was returned to your program, as the return value from EM::Protocols::HttpClient.request. You don't have to do anything to make this happen. All you have to do is tell the Deferrable what to do in case of either success, failure, or both.
|
89
|
+
|
90
|
+
In our code sample, we set one callback and one errback. The former will be called if the HTTP call succeeds, and the latter if it fails. (For simplicity, we have both of them calling EM#stop to end the program, although real programs would be very unlikely to do this.)
|
91
|
+
|
92
|
+
Setting callbacks and errbacks is optional. They are handlers to defined events in the lifecycle of the Deferrable event. It's not an error if you fail to set either a callback, an errback, or both. But of course your program will then fail to receive those notifications.
|
93
|
+
|
94
|
+
If through some bug it turns out that #set_deferred_status is never called on a Deferrable object, then that object's callbacks or errbacks will NEVER be called. It's also possible to set a timeout on a Deferrable. If the timeout elapses before any other call to #set_deferred_status, the Deferrable object will behave as is you had called set_deferred_status(:failed) on it.
|
95
|
+
|
96
|
+
|
97
|
+
Now let's modify the example to illustrate some additional points:
|
98
|
+
|
99
|
+
require 'eventmachine'
|
100
|
+
|
101
|
+
EM.run {
|
102
|
+
df = EM::Protocols::HttpClient.request( :host=>"www.example.com", :request=>"/index.html" )
|
103
|
+
|
104
|
+
df.callback {|response|
|
105
|
+
df.set_deferred_status :succeeded, response[:content]
|
106
|
+
}
|
107
|
+
|
108
|
+
df.callback {|string|
|
109
|
+
puts "Succeeded: #{string}"
|
110
|
+
EM.stop
|
111
|
+
}
|
112
|
+
|
113
|
+
df.errback {|response|
|
114
|
+
puts "ERROR: #{response[:status]}"
|
115
|
+
EM.stop
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
|
120
|
+
Just for the sake of illustration, we've now set two callbacks instead of one. If the deferrable operation (the HTTP client-request) succeeds, then both of the callbacks will be executed in order.
|
121
|
+
|
122
|
+
But notice that we've also made our own call to #set_deferred_status in the first callback. This isn't required, because the HttpClient implementation already made a call to #set_deferred_status. (Otherwise, of course, the callback would not be executing.)
|
123
|
+
|
124
|
+
But we used #set_deferred_status in the first callback in order to change the parameters that will be sent to subsequent callbacks in the chain. In this way, you can construct powerful sequences of layered functionality. If you want, you can even change the status of the Deferrable from :succeeded to :failed, which would abort the chain of callback calls, and invoke the chain of errbacks instead.
|
125
|
+
|
126
|
+
Now of course it's somewhat trivial to define two callbacks in the same method, even with the parameter-changing effect we just described. It would be much more interesting to pass the Deferrable to some other function (for example, a function defined in another module or a different gem), that would in turn add callbacks and/or errbacks of its own. That would illustrate the true power of the Deferrable pattern: to isolate the HTTP client-request from other functions that use the data that it returns without caring where those data came from.
|
127
|
+
|
128
|
+
Remember that you can add a callback or an errback to a Deferrable at any point in time, regardless of whether the status of the deferred operation is known (more precisely, regardless of when #set_deferred_status is called on the object). Even hours or days later.
|
129
|
+
|
130
|
+
When you add a callback or errback to a Deferrable object on which #set_deferred_status has not yet been called, the callback/errback is queued up for future execution, inside the Deferrable object. When you add a callback or errback to a Deferrable on which #set_deferred_status has already been called, the callback/errback will be executed immediately. Your code doesn't have to worry about the ordering, and there are no timing issues, as there would be with a threaded approach.
|
131
|
+
|
132
|
+
For more information on Deferrables and their typical usage patterns, look in the EM unit tests. There are also quite a few sugarings (including EM::Deferrable#future) that make typical Deferrable usages syntactically easier to work with.
|
133
|
+
|
data/docs/EPOLL
ADDED
@@ -0,0 +1,141 @@
|
|
1
|
+
EventMachine now supports epoll, bringing large increases in performance and scalability to Ruby programs.
|
2
|
+
|
3
|
+
Epoll(7) is a alternative mechanism for multiplexed I/O that is available in Linux 2.6 kernels.
|
4
|
+
It features significantly greater performance than the standard select(2) mechanism, when used in
|
5
|
+
applications that require very large numbers of open I/O descriptors.
|
6
|
+
|
7
|
+
EventMachine has always used select(2) because its behavior is well standardized and broadly supported.
|
8
|
+
But select becomes unreasonably slow when a program has a
|
9
|
+
very large number of file descriptors or sockets. Ruby's version of select hardcodes a limit
|
10
|
+
of 1024 descriptors per process, but heavily loaded processes will start to show performance
|
11
|
+
degradation even after only a few hundred descriptors are in use.
|
12
|
+
|
13
|
+
Epoll is an extended version of the poll(2) call, and it solves the problems with select. Programs
|
14
|
+
based on epoll can easily scale past Ruby's 1024-descriptor limit, potentially to tens of thousands
|
15
|
+
of connectors, with no significant impact on performance.
|
16
|
+
|
17
|
+
(Another alternative which is very similar to epoll in principle is kqueue, supplied on BSD and its
|
18
|
+
variants.)
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
This note shows you how to use epoll in your programs.
|
23
|
+
|
24
|
+
=== Compiling EventMachine to use epoll.
|
25
|
+
|
26
|
+
You don't have to do anything to get epoll support in EventMachine.
|
27
|
+
When you compile EventMachine on a platform that supports epoll, EM will
|
28
|
+
automatically generate a Makefile that includes epoll. (At this writing, this will only work
|
29
|
+
on Linux 2.6 kernels.) If you compile EM on a platform without epoll, then epoll support will
|
30
|
+
be omitted from the Makefile, and EM will work just as it always has.
|
31
|
+
|
32
|
+
=== Using epoll in your programs.
|
33
|
+
|
34
|
+
First, you need to tell EventMachine to use epoll instead of select (but see below, as this requirement
|
35
|
+
will be removed in a future EventMachine version). Second, you need to prepare your program to use
|
36
|
+
more than 1024 descriptors, an operation that generally requires superuser privileges. Third, you will probably
|
37
|
+
want your process to drop the superuser privileges after you increase your process's descriptor limit.
|
38
|
+
|
39
|
+
=== Using EventMachine#epoll
|
40
|
+
|
41
|
+
Call the method EventMachine#epoll anytime before you call EventMachine#run, and your program will
|
42
|
+
automatically use epoll, if available. It's safe to call EventMachine#epoll on any platform because
|
43
|
+
it compiles to a no-op on platforms that don't support epoll.
|
44
|
+
|
45
|
+
require 'rubygems'
|
46
|
+
require 'eventmachine'
|
47
|
+
|
48
|
+
EM.epoll
|
49
|
+
EM.run {
|
50
|
+
...
|
51
|
+
}
|
52
|
+
|
53
|
+
|
54
|
+
EventMachine#epoll was included in this initial release only to avoid changing the behavior of existing
|
55
|
+
programs. However, it's expected that a future release of EM will convert EventMachine#epoll to a no-op,
|
56
|
+
and run epoll by default on platforms that support it.
|
57
|
+
|
58
|
+
=== Using EventMachine#set_descriptor_table_size
|
59
|
+
|
60
|
+
In Linux (as in every Unix-like platform), every process has a internal table that determines the maximum
|
61
|
+
number of file and socket descriptors you may have open at any given time. The size of this table is
|
62
|
+
generally fixed at 1024, although it may be increased within certain system-defined hard and soft limits.
|
63
|
+
|
64
|
+
If you want your EventMachine program to support more than 1024 total descriptors, you must use
|
65
|
+
EventMachine#set_descriptor_table_size, as follows:
|
66
|
+
|
67
|
+
require 'rubygems'
|
68
|
+
require 'eventmachine'
|
69
|
+
|
70
|
+
new_size = EM.set_descriptor_table_size( 60000 )
|
71
|
+
$>.puts "New descriptor-table size is #{new_size}"
|
72
|
+
|
73
|
+
EM.run {
|
74
|
+
...
|
75
|
+
}
|
76
|
+
|
77
|
+
If successful, this example will increase the maximum number of descriptors that epoll can use to 60,000.
|
78
|
+
Call EventMachine#set_descriptor_table_size without an argument at any time to find out the current
|
79
|
+
size of the descriptor table.
|
80
|
+
|
81
|
+
Using EventMachine#set_descriptor_table_size ONLY affects the number of descriptors that can be used
|
82
|
+
by epoll. It has no useful effect on platforms that don't support epoll, and it does NOT increase the
|
83
|
+
number of descriptors that Ruby's own I/O functions can use.
|
84
|
+
|
85
|
+
#set_descriptor_table_size can fail if your process is not running as superuser, or if you try to set a
|
86
|
+
table size that exceeds the hard limits imposed by your system. In the latter case, try a smaller number.
|
87
|
+
|
88
|
+
|
89
|
+
=== Using EventMachine#set_effective_user
|
90
|
+
|
91
|
+
In general, you must run your program with elevated or superuser privileges if you want to increase
|
92
|
+
your descriptor-table size beyond 1024 descriptors. This is easy enough to verify. Try running the
|
93
|
+
sample program given above, that increases the descriptor limit to 60,000. You will probably find that
|
94
|
+
the table size will not be increased if you don't run your program as root or with elevated privileges.
|
95
|
+
|
96
|
+
But of course network servers, especially long-running ones, should not run with elevated privileges.
|
97
|
+
You will want to drop superuser privileges as soon as possible after initialization. To do this,
|
98
|
+
use EventMachine#set_effective_user:
|
99
|
+
|
100
|
+
require 'rubygems'
|
101
|
+
require 'eventmachine'
|
102
|
+
|
103
|
+
# (Here, program is running as superuser)
|
104
|
+
|
105
|
+
EM.set_descriptor_table_size( 60000 )
|
106
|
+
EM.set_effective_user( "nobody" )
|
107
|
+
# (Here, program is running as nobody)
|
108
|
+
|
109
|
+
EM.run {
|
110
|
+
...
|
111
|
+
}
|
112
|
+
|
113
|
+
Of course, you will need to replace "nobody" in the example with the name of an unprivileged user
|
114
|
+
that is valid on your system. What if you want to drop privileges after opening a server socket
|
115
|
+
on a privileged (low-numbered) port? Easy, just call #set_effective_user after opening your sockets:
|
116
|
+
|
117
|
+
require 'rubygems'
|
118
|
+
require 'eventmachine'
|
119
|
+
|
120
|
+
# (Here, program is running as superuser)
|
121
|
+
|
122
|
+
EM.set_descriptor_table_size( 60000 )
|
123
|
+
|
124
|
+
EM.run {
|
125
|
+
EM.start_server( "0.0.0.0", 80, MyHttpServer )
|
126
|
+
EM.start_server( "0.0.0.0", 443, MyEncryptedHttpServer )
|
127
|
+
|
128
|
+
EM.set_effective_user( "nobody" )
|
129
|
+
# (Here, program is running as nobody)
|
130
|
+
|
131
|
+
...
|
132
|
+
}
|
133
|
+
|
134
|
+
|
135
|
+
Because EventMachine#set_effective_user is used to enforce security
|
136
|
+
requirements, it has no nonfatal errors. If you try to set a nonexistent or invalid effective user,
|
137
|
+
#set_effective_user will abort your program, rather than continue to run with elevated privileges.
|
138
|
+
|
139
|
+
EventMachine#set_effective_user is a silent no-op on platforms that don't support it, such as Windows.
|
140
|
+
|
141
|
+
|