wj_eventmachine 1.3.0.dev.1
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 +7 -0
- data/CHANGELOG.md +179 -0
- data/GNU +281 -0
- data/LICENSE +60 -0
- data/README.md +110 -0
- data/docs/DocumentationGuidesIndex.md +27 -0
- data/docs/GettingStarted.md +520 -0
- data/docs/old/ChangeLog +211 -0
- data/docs/old/DEFERRABLES +246 -0
- data/docs/old/EPOLL +141 -0
- data/docs/old/INSTALL +13 -0
- data/docs/old/KEYBOARD +42 -0
- data/docs/old/LEGAL +25 -0
- data/docs/old/LIGHTWEIGHT_CONCURRENCY +130 -0
- data/docs/old/PURE_RUBY +75 -0
- data/docs/old/RELEASE_NOTES +94 -0
- data/docs/old/SMTP +4 -0
- data/docs/old/SPAWNED_PROCESSES +148 -0
- data/docs/old/TODO +8 -0
- data/examples/guides/getting_started/01_eventmachine_echo_server.rb +18 -0
- data/examples/guides/getting_started/02_eventmachine_echo_server_that_recognizes_exit_command.rb +22 -0
- data/examples/guides/getting_started/03_simple_chat_server.rb +149 -0
- data/examples/guides/getting_started/04_simple_chat_server_step_one.rb +27 -0
- data/examples/guides/getting_started/05_simple_chat_server_step_two.rb +43 -0
- data/examples/guides/getting_started/06_simple_chat_server_step_three.rb +98 -0
- data/examples/guides/getting_started/07_simple_chat_server_step_four.rb +121 -0
- data/examples/guides/getting_started/08_simple_chat_server_step_five.rb +141 -0
- data/examples/old/ex_channel.rb +43 -0
- data/examples/old/ex_queue.rb +2 -0
- data/examples/old/ex_tick_loop_array.rb +15 -0
- data/examples/old/ex_tick_loop_counter.rb +32 -0
- data/examples/old/helper.rb +2 -0
- data/ext/binder.cpp +124 -0
- data/ext/binder.h +52 -0
- data/ext/cmain.cpp +1046 -0
- data/ext/ed.cpp +2238 -0
- data/ext/ed.h +460 -0
- data/ext/em.cpp +2378 -0
- data/ext/em.h +266 -0
- data/ext/eventmachine.h +152 -0
- data/ext/extconf.rb +285 -0
- data/ext/fastfilereader/extconf.rb +120 -0
- data/ext/fastfilereader/mapper.cpp +214 -0
- data/ext/fastfilereader/mapper.h +59 -0
- data/ext/fastfilereader/rubymain.cpp +126 -0
- data/ext/kb.cpp +79 -0
- data/ext/page.cpp +107 -0
- data/ext/page.h +51 -0
- data/ext/pipe.cpp +354 -0
- data/ext/project.h +174 -0
- data/ext/rubymain.cpp +1610 -0
- data/ext/ssl.cpp +627 -0
- data/ext/ssl.h +103 -0
- data/ext/wait_for_single_fd.h +36 -0
- data/java/.classpath +8 -0
- data/java/.project +17 -0
- data/java/src/com/rubyeventmachine/EmReactor.java +625 -0
- data/java/src/com/rubyeventmachine/EmReactorException.java +40 -0
- data/java/src/com/rubyeventmachine/EmReactorInterface.java +70 -0
- data/java/src/com/rubyeventmachine/EventableChannel.java +72 -0
- data/java/src/com/rubyeventmachine/EventableDatagramChannel.java +201 -0
- data/java/src/com/rubyeventmachine/EventableSocketChannel.java +415 -0
- data/java/src/com/rubyeventmachine/NullEmReactor.java +157 -0
- data/java/src/com/rubyeventmachine/NullEventableChannel.java +81 -0
- data/lib/em/buftok.rb +59 -0
- data/lib/em/callback.rb +58 -0
- data/lib/em/channel.rb +69 -0
- data/lib/em/completion.rb +307 -0
- data/lib/em/connection.rb +776 -0
- data/lib/em/deferrable.rb +210 -0
- data/lib/em/deferrable/pool.rb +2 -0
- data/lib/em/file_watch.rb +73 -0
- data/lib/em/future.rb +61 -0
- data/lib/em/io_streamer.rb +68 -0
- data/lib/em/iterator.rb +252 -0
- data/lib/em/messages.rb +66 -0
- data/lib/em/pool.rb +151 -0
- data/lib/em/process_watch.rb +45 -0
- data/lib/em/processes.rb +123 -0
- data/lib/em/protocols.rb +37 -0
- data/lib/em/protocols/header_and_content.rb +138 -0
- data/lib/em/protocols/httpclient.rb +303 -0
- data/lib/em/protocols/httpclient2.rb +602 -0
- data/lib/em/protocols/line_and_text.rb +125 -0
- data/lib/em/protocols/line_protocol.rb +33 -0
- data/lib/em/protocols/linetext2.rb +179 -0
- data/lib/em/protocols/memcache.rb +331 -0
- data/lib/em/protocols/object_protocol.rb +46 -0
- data/lib/em/protocols/postgres3.rb +246 -0
- data/lib/em/protocols/saslauth.rb +175 -0
- data/lib/em/protocols/smtpclient.rb +394 -0
- data/lib/em/protocols/smtpserver.rb +666 -0
- data/lib/em/protocols/socks4.rb +66 -0
- data/lib/em/protocols/stomp.rb +205 -0
- data/lib/em/protocols/tcptest.rb +54 -0
- data/lib/em/pure_ruby.rb +1299 -0
- data/lib/em/queue.rb +80 -0
- data/lib/em/resolver.rb +232 -0
- data/lib/em/spawnable.rb +84 -0
- data/lib/em/streamer.rb +118 -0
- data/lib/em/threaded_resource.rb +90 -0
- data/lib/em/tick_loop.rb +85 -0
- data/lib/em/timers.rb +61 -0
- data/lib/em/version.rb +3 -0
- data/lib/eventmachine.rb +1602 -0
- data/lib/jeventmachine.rb +318 -0
- data/rakelib/package.rake +120 -0
- data/rakelib/test.rake +6 -0
- data/rakelib/test_pure.rake +11 -0
- data/tests/client.crt +31 -0
- data/tests/client.key +51 -0
- data/tests/dhparam.pem +13 -0
- data/tests/em_ssl_handlers.rb +153 -0
- data/tests/em_test_helper.rb +198 -0
- data/tests/jruby/test_jeventmachine.rb +38 -0
- data/tests/test_attach.rb +199 -0
- data/tests/test_basic.rb +321 -0
- data/tests/test_channel.rb +75 -0
- data/tests/test_completion.rb +178 -0
- data/tests/test_connection_count.rb +83 -0
- data/tests/test_connection_write.rb +35 -0
- data/tests/test_defer.rb +35 -0
- data/tests/test_deferrable.rb +35 -0
- data/tests/test_epoll.rb +141 -0
- data/tests/test_error_handler.rb +38 -0
- data/tests/test_exc.rb +37 -0
- data/tests/test_file_watch.rb +86 -0
- data/tests/test_fork.rb +75 -0
- data/tests/test_futures.rb +170 -0
- data/tests/test_handler_check.rb +35 -0
- data/tests/test_hc.rb +155 -0
- data/tests/test_httpclient.rb +238 -0
- data/tests/test_httpclient2.rb +132 -0
- data/tests/test_idle_connection.rb +31 -0
- data/tests/test_inactivity_timeout.rb +102 -0
- data/tests/test_io_streamer.rb +47 -0
- data/tests/test_ipv4.rb +96 -0
- data/tests/test_ipv6.rb +107 -0
- data/tests/test_iterator.rb +122 -0
- data/tests/test_kb.rb +28 -0
- data/tests/test_keepalive.rb +113 -0
- data/tests/test_line_protocol.rb +33 -0
- data/tests/test_ltp.rb +155 -0
- data/tests/test_ltp2.rb +332 -0
- data/tests/test_many_fds.rb +21 -0
- data/tests/test_next_tick.rb +104 -0
- data/tests/test_object_protocol.rb +36 -0
- data/tests/test_pause.rb +109 -0
- data/tests/test_pending_connect_timeout.rb +52 -0
- data/tests/test_pool.rb +196 -0
- data/tests/test_process_watch.rb +50 -0
- data/tests/test_processes.rb +128 -0
- data/tests/test_proxy_connection.rb +180 -0
- data/tests/test_pure.rb +156 -0
- data/tests/test_queue.rb +64 -0
- data/tests/test_resolver.rb +129 -0
- data/tests/test_running.rb +14 -0
- data/tests/test_sasl.rb +46 -0
- data/tests/test_send_file.rb +217 -0
- data/tests/test_servers.rb +32 -0
- data/tests/test_shutdown_hooks.rb +23 -0
- data/tests/test_smtpclient.rb +75 -0
- data/tests/test_smtpserver.rb +90 -0
- data/tests/test_sock_opt.rb +53 -0
- data/tests/test_spawn.rb +290 -0
- data/tests/test_ssl_args.rb +41 -0
- data/tests/test_ssl_dhparam.rb +57 -0
- data/tests/test_ssl_ecdh_curve.rb +57 -0
- data/tests/test_ssl_extensions.rb +24 -0
- data/tests/test_ssl_methods.rb +31 -0
- data/tests/test_ssl_protocols.rb +190 -0
- data/tests/test_ssl_verify.rb +52 -0
- data/tests/test_stomp.rb +38 -0
- data/tests/test_system.rb +46 -0
- data/tests/test_threaded_resource.rb +68 -0
- data/tests/test_tick_loop.rb +58 -0
- data/tests/test_timers.rb +150 -0
- data/tests/test_ud.rb +8 -0
- data/tests/test_unbind_reason.rb +40 -0
- metadata +384 -0
@@ -0,0 +1,776 @@
|
|
1
|
+
module EventMachine
|
2
|
+
class FileNotFoundException < Exception
|
3
|
+
end
|
4
|
+
|
5
|
+
# EventMachine::Connection is a class that is instantiated
|
6
|
+
# by EventMachine's processing loop whenever a new connection
|
7
|
+
# is created. (New connections can be either initiated locally
|
8
|
+
# to a remote server or accepted locally from a remote client.)
|
9
|
+
# When a Connection object is instantiated, it <i>mixes in</i>
|
10
|
+
# the functionality contained in the user-defined module
|
11
|
+
# specified in calls to {EventMachine.connect} or {EventMachine.start_server}.
|
12
|
+
# User-defined handler modules may redefine any or all of the standard
|
13
|
+
# methods defined here, as well as add arbitrary additional code
|
14
|
+
# that will also be mixed in.
|
15
|
+
#
|
16
|
+
# EventMachine manages one object inherited from EventMachine::Connection
|
17
|
+
# (and containing the mixed-in user code) for every network connection
|
18
|
+
# that is active at any given time.
|
19
|
+
# The event loop will automatically call methods on EventMachine::Connection
|
20
|
+
# objects whenever specific events occur on the corresponding connections,
|
21
|
+
# as described below.
|
22
|
+
#
|
23
|
+
# This class is never instantiated by user code, and does not publish an
|
24
|
+
# initialize method. The instance methods of EventMachine::Connection
|
25
|
+
# which may be called by the event loop are:
|
26
|
+
#
|
27
|
+
# * {#post_init}
|
28
|
+
# * {#connection_completed}
|
29
|
+
# * {#receive_data}
|
30
|
+
# * {#unbind}
|
31
|
+
# * {#ssl_verify_peer} (if TLS is used)
|
32
|
+
# * {#ssl_handshake_completed}
|
33
|
+
#
|
34
|
+
# All of the other instance methods defined here are called only by user code.
|
35
|
+
#
|
36
|
+
# @see file:docs/GettingStarted.md EventMachine tutorial
|
37
|
+
class Connection
|
38
|
+
# @private
|
39
|
+
attr_accessor :signature
|
40
|
+
|
41
|
+
# @private
|
42
|
+
alias original_method method
|
43
|
+
|
44
|
+
# Override .new so subclasses don't have to call super and can ignore
|
45
|
+
# connection-specific arguments
|
46
|
+
#
|
47
|
+
# @private
|
48
|
+
def self.new(sig, *args)
|
49
|
+
allocate.instance_eval do
|
50
|
+
# Store signature
|
51
|
+
@signature = sig
|
52
|
+
# associate_callback_target sig
|
53
|
+
|
54
|
+
# Call a superclass's #initialize if it has one
|
55
|
+
initialize(*args)
|
56
|
+
|
57
|
+
# post initialize callback
|
58
|
+
post_init
|
59
|
+
|
60
|
+
self
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# Stubbed initialize so legacy superclasses can safely call super
|
65
|
+
#
|
66
|
+
# @private
|
67
|
+
def initialize(*args)
|
68
|
+
end
|
69
|
+
|
70
|
+
# Called by the event loop immediately after the network connection has been established,
|
71
|
+
# and before resumption of the network loop.
|
72
|
+
# This method is generally not called by user code, but is called automatically
|
73
|
+
# by the event loop. The base-class implementation is a no-op.
|
74
|
+
# This is a very good place to initialize instance variables that will
|
75
|
+
# be used throughout the lifetime of the network connection.
|
76
|
+
#
|
77
|
+
# @see #connection_completed
|
78
|
+
# @see #unbind
|
79
|
+
# @see #send_data
|
80
|
+
# @see #receive_data
|
81
|
+
def post_init
|
82
|
+
end
|
83
|
+
|
84
|
+
# Called by the event loop whenever data has been received by the network connection.
|
85
|
+
# It is never called by user code. {#receive_data} is called with a single parameter, a String containing
|
86
|
+
# the network protocol data, which may of course be binary. You will
|
87
|
+
# generally redefine this method to perform your own processing of the incoming data.
|
88
|
+
#
|
89
|
+
# Here's a key point which is essential to understanding the event-driven
|
90
|
+
# programming model: <i>EventMachine knows absolutely nothing about the protocol
|
91
|
+
# which your code implements.</i> You must not make any assumptions about
|
92
|
+
# the size of the incoming data packets, or about their alignment on any
|
93
|
+
# particular intra-message or PDU boundaries (such as line breaks).
|
94
|
+
# receive_data can and will send you arbitrary chunks of data, with the
|
95
|
+
# only guarantee being that the data is presented to your code in the order
|
96
|
+
# it was collected from the network. Don't even assume that the chunks of
|
97
|
+
# data will correspond to network packets, as EventMachine can and will coalesce
|
98
|
+
# several incoming packets into one, to improve performance. The implication for your
|
99
|
+
# code is that you generally will need to implement some kind of a state machine
|
100
|
+
# in your redefined implementation of receive_data. For a better understanding
|
101
|
+
# of this, read through the examples of specific protocol handlers in EventMachine::Protocols
|
102
|
+
#
|
103
|
+
# @param [String] data Opaque incoming data.
|
104
|
+
# @note Depending on the protocol, buffer sizes and OS networking stack configuration, incoming data may or may not be "a complete message".
|
105
|
+
# It is up to this handler to detect content boundaries to determine whether all the content (for example, full HTTP request)
|
106
|
+
# has been received and can be processed.
|
107
|
+
#
|
108
|
+
# @see #post_init
|
109
|
+
# @see #connection_completed
|
110
|
+
# @see #unbind
|
111
|
+
# @see #send_data
|
112
|
+
# @see file:docs/GettingStarted.md EventMachine tutorial
|
113
|
+
def receive_data data
|
114
|
+
end
|
115
|
+
|
116
|
+
# Called by EventMachine when the SSL/TLS handshake has
|
117
|
+
# been completed, as a result of calling #start_tls to initiate SSL/TLS on the connection.
|
118
|
+
#
|
119
|
+
# This callback exists because {#post_init} and {#connection_completed} are **not** reliable
|
120
|
+
# for indicating when an SSL/TLS connection is ready to have its certificate queried for.
|
121
|
+
#
|
122
|
+
# @see #get_peer_cert
|
123
|
+
def ssl_handshake_completed
|
124
|
+
end
|
125
|
+
|
126
|
+
# Called by EventMachine when :verify_peer => true has been passed to {#start_tls}.
|
127
|
+
# It will be called with each certificate in the certificate chain provided by the remote peer.
|
128
|
+
#
|
129
|
+
# The cert will be passed as a String in PEM format, the same as in {#get_peer_cert}. It is up to user defined
|
130
|
+
# code to perform a check on the certificates. The return value from this callback is used to accept or deny the peer.
|
131
|
+
# A return value that is not nil or false triggers acceptance. If the peer is not accepted, the connection
|
132
|
+
# will be subsequently closed.
|
133
|
+
#
|
134
|
+
# @example This server always accepts all peers
|
135
|
+
#
|
136
|
+
# module AcceptServer
|
137
|
+
# def post_init
|
138
|
+
# start_tls(:verify_peer => true)
|
139
|
+
# end
|
140
|
+
#
|
141
|
+
# def ssl_verify_peer(cert)
|
142
|
+
# true
|
143
|
+
# end
|
144
|
+
#
|
145
|
+
# def ssl_handshake_completed
|
146
|
+
# $server_handshake_completed = true
|
147
|
+
# end
|
148
|
+
# end
|
149
|
+
#
|
150
|
+
#
|
151
|
+
# @example This server never accepts any peers
|
152
|
+
#
|
153
|
+
# module DenyServer
|
154
|
+
# def post_init
|
155
|
+
# start_tls(:verify_peer => true)
|
156
|
+
# end
|
157
|
+
#
|
158
|
+
# def ssl_verify_peer(cert)
|
159
|
+
# # Do not accept the peer. This should now cause the connection to shut down
|
160
|
+
# # without the SSL handshake being completed.
|
161
|
+
# false
|
162
|
+
# end
|
163
|
+
#
|
164
|
+
# def ssl_handshake_completed
|
165
|
+
# $server_handshake_completed = true
|
166
|
+
# end
|
167
|
+
# end
|
168
|
+
#
|
169
|
+
# @see #start_tls
|
170
|
+
def ssl_verify_peer(cert)
|
171
|
+
end
|
172
|
+
|
173
|
+
# called by the framework whenever a connection (either a server or client connection) is closed.
|
174
|
+
# The close can occur because your code intentionally closes it (using {#close_connection} and {#close_connection_after_writing}),
|
175
|
+
# because the remote peer closed the connection, or because of a network error.
|
176
|
+
# You may not assume that the network connection is still open and able to send or
|
177
|
+
# receive data when the callback to unbind is made. This is intended only to give
|
178
|
+
# you a chance to clean up associations your code may have made to the connection
|
179
|
+
# object while it was open.
|
180
|
+
#
|
181
|
+
# If you want to detect which peer has closed the connection, you can override {#close_connection} in your protocol handler
|
182
|
+
# and set an @ivar.
|
183
|
+
#
|
184
|
+
# @example Overriding Connection#close_connection to distinguish connections closed on our side
|
185
|
+
#
|
186
|
+
# class MyProtocolHandler < EventMachine::Connection
|
187
|
+
#
|
188
|
+
# # ...
|
189
|
+
#
|
190
|
+
# def close_connection(*args)
|
191
|
+
# @intentionally_closed_connection = true
|
192
|
+
# super(*args)
|
193
|
+
# end
|
194
|
+
#
|
195
|
+
# def unbind
|
196
|
+
# if @intentionally_closed_connection
|
197
|
+
# # ...
|
198
|
+
# end
|
199
|
+
# end
|
200
|
+
#
|
201
|
+
# # ...
|
202
|
+
#
|
203
|
+
# end
|
204
|
+
#
|
205
|
+
# @see #post_init
|
206
|
+
# @see #connection_completed
|
207
|
+
# @see file:docs/GettingStarted.md EventMachine tutorial
|
208
|
+
def unbind
|
209
|
+
end
|
210
|
+
|
211
|
+
# Called by the reactor after attempting to relay incoming data to a descriptor (set as a proxy target descriptor with
|
212
|
+
# {EventMachine.enable_proxy}) that has already been closed.
|
213
|
+
#
|
214
|
+
# @see EventMachine.enable_proxy
|
215
|
+
def proxy_target_unbound
|
216
|
+
end
|
217
|
+
|
218
|
+
# called when the reactor finished proxying all
|
219
|
+
# of the requested bytes.
|
220
|
+
def proxy_completed
|
221
|
+
end
|
222
|
+
|
223
|
+
# EventMachine::Connection#proxy_incoming_to is called only by user code. It sets up
|
224
|
+
# a low-level proxy relay for all data inbound for this connection, to the connection given
|
225
|
+
# as the argument. This is essentially just a helper method for enable_proxy.
|
226
|
+
#
|
227
|
+
# @see EventMachine.enable_proxy
|
228
|
+
def proxy_incoming_to(conn,bufsize=0)
|
229
|
+
EventMachine::enable_proxy(self, conn, bufsize)
|
230
|
+
end
|
231
|
+
|
232
|
+
# A helper method for {EventMachine.disable_proxy}
|
233
|
+
def stop_proxying
|
234
|
+
EventMachine::disable_proxy(self)
|
235
|
+
end
|
236
|
+
|
237
|
+
# The number of bytes proxied to another connection. Reset to zero when
|
238
|
+
# EventMachine::Connection#proxy_incoming_to is called, and incremented whenever data is proxied.
|
239
|
+
def get_proxied_bytes
|
240
|
+
EventMachine::get_proxied_bytes(@signature)
|
241
|
+
end
|
242
|
+
|
243
|
+
# EventMachine::Connection#close_connection is called only by user code, and never
|
244
|
+
# by the event loop. You may call this method against a connection object in any
|
245
|
+
# callback handler, whether or not the callback was made against the connection
|
246
|
+
# you want to close. close_connection <i>schedules</i> the connection to be closed
|
247
|
+
# at the next available opportunity within the event loop. You may not assume that
|
248
|
+
# the connection is closed when close_connection returns. In particular, the framework
|
249
|
+
# will callback the unbind method for the particular connection at a point shortly
|
250
|
+
# after you call close_connection. You may assume that the unbind callback will
|
251
|
+
# take place sometime after your call to close_connection completes. In other words,
|
252
|
+
# the unbind callback will not re-enter your code "inside" of your call to close_connection.
|
253
|
+
# However, it's not guaranteed that a future version of EventMachine will not change
|
254
|
+
# this behavior.
|
255
|
+
#
|
256
|
+
# {#close_connection} will *silently discard* any outbound data which you have
|
257
|
+
# sent to the connection using {EventMachine::Connection#send_data} but which has not
|
258
|
+
# yet been sent across the network. If you want to avoid this behavior, use
|
259
|
+
# {EventMachine::Connection#close_connection_after_writing}.
|
260
|
+
#
|
261
|
+
def close_connection after_writing = false
|
262
|
+
EventMachine::close_connection @signature, after_writing
|
263
|
+
end
|
264
|
+
|
265
|
+
# Removes given connection from the event loop.
|
266
|
+
# The connection's socket remains open and its file descriptor number is returned.
|
267
|
+
def detach
|
268
|
+
EventMachine::detach_fd @signature
|
269
|
+
end
|
270
|
+
|
271
|
+
def get_sock_opt level, option
|
272
|
+
EventMachine::get_sock_opt @signature, level, option
|
273
|
+
end
|
274
|
+
|
275
|
+
def set_sock_opt level, optname, optval
|
276
|
+
EventMachine::set_sock_opt @signature, level, optname, optval
|
277
|
+
end
|
278
|
+
|
279
|
+
# A variant of {#close_connection}.
|
280
|
+
# All of the descriptive comments given for close_connection also apply to
|
281
|
+
# close_connection_after_writing, *with one exception*: if the connection has
|
282
|
+
# outbound data sent using send_dat but which has not yet been sent across the network,
|
283
|
+
# close_connection_after_writing will schedule the connection to be closed *after*
|
284
|
+
# all of the outbound data has been safely written to the remote peer.
|
285
|
+
#
|
286
|
+
# Depending on the amount of outgoing data and the speed of the network,
|
287
|
+
# considerable time may elapse between your call to close_connection_after_writing
|
288
|
+
# and the actual closing of the socket (at which time the unbind callback will be called
|
289
|
+
# by the event loop). During this time, you *may not* call send_data to transmit
|
290
|
+
# additional data (that is, the connection is closed for further writes). In very
|
291
|
+
# rare cases, you may experience a receive_data callback after your call to {#close_connection_after_writing},
|
292
|
+
# depending on whether incoming data was in the process of being received on the connection
|
293
|
+
# at the moment when you called {#close_connection_after_writing}. Your protocol handler must
|
294
|
+
# be prepared to properly deal with such data (probably by ignoring it).
|
295
|
+
#
|
296
|
+
# @see #close_connection
|
297
|
+
# @see #send_data
|
298
|
+
def close_connection_after_writing
|
299
|
+
close_connection true
|
300
|
+
end
|
301
|
+
|
302
|
+
# Call this method to send data to the remote end of the network connection. It takes a single String argument,
|
303
|
+
# which may contain binary data. Data is buffered to be sent at the end of this event loop tick (cycle).
|
304
|
+
#
|
305
|
+
# When used in a method that is event handler (for example, {#post_init} or {#connection_completed}, it will send
|
306
|
+
# data to the other end of the connection that generated the event.
|
307
|
+
# You can also call {#send_data} to write to other connections. For more information see The Chat Server Example in the
|
308
|
+
# {file:docs/GettingStarted.md EventMachine tutorial}.
|
309
|
+
#
|
310
|
+
# If you want to send some data and then immediately close the connection, make sure to use {#close_connection_after_writing}
|
311
|
+
# instead of {#close_connection}.
|
312
|
+
#
|
313
|
+
#
|
314
|
+
# @param [String] data Data to send asynchronously
|
315
|
+
#
|
316
|
+
# @see file:docs/GettingStarted.md EventMachine tutorial
|
317
|
+
# @see Connection#receive_data
|
318
|
+
# @see Connection#post_init
|
319
|
+
# @see Connection#unbind
|
320
|
+
def send_data data
|
321
|
+
data = data.to_s
|
322
|
+
size = data.bytesize if data.respond_to?(:bytesize)
|
323
|
+
size ||= data.size
|
324
|
+
EventMachine::send_data @signature, data, size
|
325
|
+
end
|
326
|
+
|
327
|
+
# Returns true if the connection is in an error state, false otherwise.
|
328
|
+
#
|
329
|
+
# In general, you can detect the occurrence of communication errors or unexpected
|
330
|
+
# disconnection by the remote peer by handing the {#unbind} method. In some cases, however,
|
331
|
+
# it's useful to check the status of the connection using {#error?} before attempting to send data.
|
332
|
+
# This function is synchronous but it will return immediately without blocking.
|
333
|
+
#
|
334
|
+
# @return [Boolean] true if the connection is in an error state, false otherwise
|
335
|
+
def error?
|
336
|
+
errno = EventMachine::report_connection_error_status(@signature)
|
337
|
+
case errno
|
338
|
+
when 0
|
339
|
+
false
|
340
|
+
when -1
|
341
|
+
true
|
342
|
+
else
|
343
|
+
EventMachine::ERRNOS[errno]
|
344
|
+
end
|
345
|
+
end
|
346
|
+
|
347
|
+
# Called by the event loop when a remote TCP connection attempt completes successfully.
|
348
|
+
# You can expect to get this notification after calls to {EventMachine.connect}. Remember that EventMachine makes remote connections
|
349
|
+
# asynchronously, just as with any other kind of network event. This method
|
350
|
+
# is intended primarily to assist with network diagnostics. For normal protocol
|
351
|
+
# handling, use #post_init to perform initial work on a new connection (such as sending initial set of data).
|
352
|
+
# {Connection#post_init} will always be called. This method will only be called in case of a successful completion.
|
353
|
+
# A connection attempt which fails will result a call to {Connection#unbind} after the failure.
|
354
|
+
#
|
355
|
+
# @see Connection#post_init
|
356
|
+
# @see Connection#unbind
|
357
|
+
# @see file:docs/GettingStarted.md EventMachine tutorial
|
358
|
+
def connection_completed
|
359
|
+
end
|
360
|
+
|
361
|
+
# Call {#start_tls} at any point to initiate TLS encryption on connected streams.
|
362
|
+
# The method is smart enough to know whether it should perform a server-side
|
363
|
+
# or a client-side handshake. An appropriate place to call {#start_tls} is in
|
364
|
+
# your redefined {#post_init} method, or in the {#connection_completed} handler for
|
365
|
+
# an outbound connection.
|
366
|
+
#
|
367
|
+
#
|
368
|
+
# @option args [String] :cert_chain_file (nil) local path of a readable file that contants a chain of X509 certificates in
|
369
|
+
# the [PEM format](http://en.wikipedia.org/wiki/Privacy_Enhanced_Mail),
|
370
|
+
# with the most-resolved certificate at the top of the file, successive intermediate
|
371
|
+
# certs in the middle, and the root (or CA) cert at the bottom.
|
372
|
+
#
|
373
|
+
# @option args [String] :private_key_file (nil) local path of a readable file that must contain a private key in the [PEM format](http://en.wikipedia.org/wiki/Privacy_Enhanced_Mail).
|
374
|
+
#
|
375
|
+
# @option args [Boolean] :verify_peer (false) indicates whether a server should request a certificate from a peer, to be verified by user code.
|
376
|
+
# If true, the {#ssl_verify_peer} callback on the {EventMachine::Connection} object is called with each certificate
|
377
|
+
# in the certificate chain provided by the peer. See documentation on {#ssl_verify_peer} for how to use this.
|
378
|
+
#
|
379
|
+
# @option args [Boolean] :fail_if_no_peer_cert (false) Used in conjunction with verify_peer. If set the SSL handshake will be terminated if the peer does not provide a certificate.
|
380
|
+
#
|
381
|
+
#
|
382
|
+
# @option args [String] :cipher_list ("ALL:!ADH:!LOW:!EXP:!DES-CBC3-SHA:@STRENGTH") indicates the available SSL cipher values. Default value is "ALL:!ADH:!LOW:!EXP:!DES-CBC3-SHA:@STRENGTH". Check the format of the OpenSSL cipher string at http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT.
|
383
|
+
#
|
384
|
+
# @option args [String] :ecdh_curve (nil) The curve for ECDHE ciphers. See available ciphers with 'openssl ecparam -list_curves'
|
385
|
+
#
|
386
|
+
# @option args [String] :dhparam (nil) The local path of a file containing DH parameters for EDH ciphers in [PEM format](http://en.wikipedia.org/wiki/Privacy_Enhanced_Mail) See: 'openssl dhparam'
|
387
|
+
#
|
388
|
+
# @option args [Array] :ssl_version (TLSv1 TLSv1_1 TLSv1_2) indicates the allowed SSL/TLS versions. Possible values are: {SSLv2}, {SSLv3}, {TLSv1}, {TLSv1_1}, {TLSv1_2}.
|
389
|
+
#
|
390
|
+
# @example Using TLS with EventMachine
|
391
|
+
#
|
392
|
+
# require 'rubygems'
|
393
|
+
# require 'eventmachine'
|
394
|
+
#
|
395
|
+
# module Handler
|
396
|
+
# def post_init
|
397
|
+
# start_tls(:private_key_file => '/tmp/server.key', :cert_chain_file => '/tmp/server.crt', :verify_peer => false)
|
398
|
+
# end
|
399
|
+
# end
|
400
|
+
#
|
401
|
+
# EventMachine.run do
|
402
|
+
# EventMachine.start_server("127.0.0.1", 9999, Handler)
|
403
|
+
# end
|
404
|
+
#
|
405
|
+
# @param [Hash] args
|
406
|
+
#
|
407
|
+
# @todo support passing an encryption parameter, which can be string or Proc, to get a passphrase
|
408
|
+
# for encrypted private keys.
|
409
|
+
# @todo support passing key material via raw strings or Procs that return strings instead of
|
410
|
+
# just filenames.
|
411
|
+
#
|
412
|
+
# @see #ssl_verify_peer
|
413
|
+
def start_tls args={}
|
414
|
+
priv_key = args[:private_key_file]
|
415
|
+
cert_chain = args[:cert_chain_file]
|
416
|
+
verify_peer = args[:verify_peer]
|
417
|
+
sni_hostname = args[:sni_hostname]
|
418
|
+
cipher_list = args[:cipher_list]
|
419
|
+
ssl_version = args[:ssl_version]
|
420
|
+
ecdh_curve = args[:ecdh_curve]
|
421
|
+
dhparam = args[:dhparam]
|
422
|
+
fail_if_no_peer_cert = args[:fail_if_no_peer_cert]
|
423
|
+
|
424
|
+
[priv_key, cert_chain].each do |file|
|
425
|
+
next if file.nil? or file.empty?
|
426
|
+
raise FileNotFoundException,
|
427
|
+
"Could not find #{file} for start_tls" unless File.exist? file
|
428
|
+
end
|
429
|
+
|
430
|
+
protocols_bitmask = 0
|
431
|
+
if ssl_version.nil?
|
432
|
+
protocols_bitmask |= EventMachine::EM_PROTO_TLSv1
|
433
|
+
protocols_bitmask |= EventMachine::EM_PROTO_TLSv1_1
|
434
|
+
protocols_bitmask |= EventMachine::EM_PROTO_TLSv1_2
|
435
|
+
if EventMachine.const_defined? :EM_PROTO_TLSv1_3
|
436
|
+
protocols_bitmask |= EventMachine::EM_PROTO_TLSv1_3
|
437
|
+
end
|
438
|
+
else
|
439
|
+
[ssl_version].flatten.each do |p|
|
440
|
+
case p.to_s.downcase
|
441
|
+
when 'sslv2'
|
442
|
+
protocols_bitmask |= EventMachine::EM_PROTO_SSLv2
|
443
|
+
when 'sslv3'
|
444
|
+
protocols_bitmask |= EventMachine::EM_PROTO_SSLv3
|
445
|
+
when 'tlsv1'
|
446
|
+
protocols_bitmask |= EventMachine::EM_PROTO_TLSv1
|
447
|
+
when 'tlsv1_1'
|
448
|
+
protocols_bitmask |= EventMachine::EM_PROTO_TLSv1_1
|
449
|
+
when 'tlsv1_2'
|
450
|
+
protocols_bitmask |= EventMachine::EM_PROTO_TLSv1_2
|
451
|
+
when 'tlsv1_3'
|
452
|
+
protocols_bitmask |= EventMachine::EM_PROTO_TLSv1_3
|
453
|
+
else
|
454
|
+
raise("Unrecognized SSL/TLS Protocol: #{p}")
|
455
|
+
end
|
456
|
+
end
|
457
|
+
end
|
458
|
+
|
459
|
+
EventMachine::set_tls_parms(@signature, priv_key || '', cert_chain || '', verify_peer, fail_if_no_peer_cert, sni_hostname || '', cipher_list || '', ecdh_curve || '', dhparam || '', protocols_bitmask)
|
460
|
+
EventMachine::start_tls @signature
|
461
|
+
end
|
462
|
+
|
463
|
+
# If [TLS](http://en.wikipedia.org/wiki/Transport_Layer_Security) is active on the connection, returns the remote [X509 certificate](http://en.wikipedia.org/wiki/X.509)
|
464
|
+
# as a string, in the popular [PEM format](http://en.wikipedia.org/wiki/Privacy_Enhanced_Mail). This can then be used for arbitrary validation
|
465
|
+
# of a peer's certificate in your code.
|
466
|
+
#
|
467
|
+
# This should be called in/after the {#ssl_handshake_completed} callback, which indicates
|
468
|
+
# that SSL/TLS is active. Using this callback is important, because the certificate may not
|
469
|
+
# be available until the time it is executed. Using #post_init or #connection_completed is
|
470
|
+
# not adequate, because the SSL handshake may still be taking place.
|
471
|
+
#
|
472
|
+
# This method will return `nil` if:
|
473
|
+
#
|
474
|
+
# * EventMachine is not built with [OpenSSL](http://www.openssl.org) support
|
475
|
+
# * [TLS](http://en.wikipedia.org/wiki/Transport_Layer_Security) is not active on the connection
|
476
|
+
# * TLS handshake is not yet complete
|
477
|
+
# * Remote peer for any other reason has not presented a certificate
|
478
|
+
#
|
479
|
+
#
|
480
|
+
# @example Getting peer TLS certificate information in EventMachine
|
481
|
+
#
|
482
|
+
# module Handler
|
483
|
+
# def post_init
|
484
|
+
# puts "Starting TLS"
|
485
|
+
# start_tls
|
486
|
+
# end
|
487
|
+
#
|
488
|
+
# def ssl_handshake_completed
|
489
|
+
# puts get_peer_cert
|
490
|
+
# close_connection
|
491
|
+
# end
|
492
|
+
#
|
493
|
+
# def unbind
|
494
|
+
# EventMachine::stop_event_loop
|
495
|
+
# end
|
496
|
+
# end
|
497
|
+
#
|
498
|
+
# EventMachine.run do
|
499
|
+
# EventMachine.connect "mail.google.com", 443, Handler
|
500
|
+
# end
|
501
|
+
#
|
502
|
+
# # Will output:
|
503
|
+
# # -----BEGIN CERTIFICATE-----
|
504
|
+
# # MIIDIjCCAougAwIBAgIQbldpChBPqv+BdPg4iwgN8TANBgkqhkiG9w0BAQUFADBM
|
505
|
+
# # MQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkg
|
506
|
+
# # THRkLjEWMBQGA1UEAxMNVGhhd3RlIFNHQyBDQTAeFw0wODA1MDIxNjMyNTRaFw0w
|
507
|
+
# # OTA1MDIxNjMyNTRaMGkxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlh
|
508
|
+
# # MRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRMwEQYDVQQKEwpHb29nbGUgSW5jMRgw
|
509
|
+
# # FgYDVQQDEw9tYWlsLmdvb2dsZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJ
|
510
|
+
# # AoGBALlkxdh2QXegdElukCSOV2+8PKiONIS+8Tu9K7MQsYpqtLNC860zwOPQ2NLI
|
511
|
+
# # 3Zp4jwuXVTrtzGuiqf5Jioh35Ig3CqDXtLyZoypjZUQcq4mlLzHlhIQ4EhSjDmA7
|
512
|
+
# # Ffw9y3ckSOQgdBQWNLbquHh9AbEUjmhkrYxIqKXeCnRKhv6nAgMBAAGjgecwgeQw
|
513
|
+
# # KAYDVR0lBCEwHwYIKwYBBQUHAwEGCCsGAQUFBwMCBglghkgBhvhCBAEwNgYDVR0f
|
514
|
+
# # BC8wLTAroCmgJ4YlaHR0cDovL2NybC50aGF3dGUuY29tL1RoYXd0ZVNHQ0NBLmNy
|
515
|
+
# # bDByBggrBgEFBQcBAQRmMGQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnRoYXd0
|
516
|
+
# # ZS5jb20wPgYIKwYBBQUHMAKGMmh0dHA6Ly93d3cudGhhd3RlLmNvbS9yZXBvc2l0
|
517
|
+
# # b3J5L1RoYXd0ZV9TR0NfQ0EuY3J0MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEF
|
518
|
+
# # BQADgYEAsRwpLg1dgCR1gYDK185MFGukXMeQFUvhGqF8eT/CjpdvezyKVuz84gSu
|
519
|
+
# # 6ccMXgcPQZGQN/F4Xug+Q01eccJjRSVfdvR5qwpqCj+6BFl5oiKDBsveSkrmL5dz
|
520
|
+
# # s2bn7TdTSYKcLeBkjXxDLHGBqLJ6TNCJ3c4/cbbG5JhGvoema94=
|
521
|
+
# # -----END CERTIFICATE-----
|
522
|
+
#
|
523
|
+
# You can do whatever you want with the certificate String, such as load it
|
524
|
+
# as a certificate object using the OpenSSL library, and check its fields.
|
525
|
+
#
|
526
|
+
# @return [String] the remote [X509 certificate](http://en.wikipedia.org/wiki/X.509), in the popular [PEM format](http://en.wikipedia.org/wiki/Privacy_Enhanced_Mail),
|
527
|
+
# if TLS is active on the connection
|
528
|
+
#
|
529
|
+
# @see Connection#start_tls
|
530
|
+
# @see Connection#ssl_handshake_completed
|
531
|
+
def get_peer_cert
|
532
|
+
EventMachine::get_peer_cert @signature
|
533
|
+
end
|
534
|
+
|
535
|
+
def get_cipher_bits
|
536
|
+
EventMachine::get_cipher_bits @signature
|
537
|
+
end
|
538
|
+
|
539
|
+
def get_cipher_name
|
540
|
+
EventMachine::get_cipher_name @signature
|
541
|
+
end
|
542
|
+
|
543
|
+
def get_cipher_protocol
|
544
|
+
EventMachine::get_cipher_protocol @signature
|
545
|
+
end
|
546
|
+
|
547
|
+
def get_sni_hostname
|
548
|
+
EventMachine::get_sni_hostname @signature
|
549
|
+
end
|
550
|
+
|
551
|
+
# Sends UDP messages.
|
552
|
+
#
|
553
|
+
# This method may be called from any Connection object that refers
|
554
|
+
# to an open datagram socket (see EventMachine#open_datagram_socket).
|
555
|
+
# The method sends a UDP (datagram) packet containing the data you specify,
|
556
|
+
# to a remote peer specified by the IP address and port that you give
|
557
|
+
# as parameters to the method.
|
558
|
+
# Observe that you may send a zero-length packet (empty string).
|
559
|
+
# However, you may not send an arbitrarily-large data packet because
|
560
|
+
# your operating system will enforce a platform-specific limit on
|
561
|
+
# the size of the outbound packet. (Your kernel
|
562
|
+
# will respond in a platform-specific way if you send an overlarge
|
563
|
+
# packet: some will send a truncated packet, some will complain, and
|
564
|
+
# some will silently drop your request).
|
565
|
+
# On LANs, it's usually OK to send datagrams up to about 4000 bytes in length,
|
566
|
+
# but to be really safe, send messages smaller than the Ethernet-packet
|
567
|
+
# size (typically about 1400 bytes). Some very restrictive WANs
|
568
|
+
# will either drop or truncate packets larger than about 500 bytes.
|
569
|
+
#
|
570
|
+
# @param [String] data Data to send asynchronously
|
571
|
+
# @param [String] recipient_address IP address of the recipient
|
572
|
+
# @param [String] recipient_port Port of the recipient
|
573
|
+
def send_datagram data, recipient_address, recipient_port
|
574
|
+
data = data.to_s
|
575
|
+
size = data.bytesize if data.respond_to?(:bytesize)
|
576
|
+
size ||= data.size
|
577
|
+
EventMachine::send_datagram @signature, data, size, recipient_address, Integer(recipient_port)
|
578
|
+
end
|
579
|
+
|
580
|
+
|
581
|
+
# This method is used with stream-connections to obtain the identity
|
582
|
+
# of the remotely-connected peer. If a peername is available, this method
|
583
|
+
# returns a sockaddr structure. The method returns nil if no peername is available.
|
584
|
+
# You can use Socket.unpack_sockaddr_in and its variants to obtain the
|
585
|
+
# values contained in the peername structure returned from #get_peername.
|
586
|
+
#
|
587
|
+
# @example How to get peer IP address and port with EventMachine
|
588
|
+
#
|
589
|
+
# require 'socket'
|
590
|
+
#
|
591
|
+
# module Handler
|
592
|
+
# def receive_data data
|
593
|
+
# port, ip = Socket.unpack_sockaddr_in(get_peername)
|
594
|
+
# puts "got #{data.inspect} from #{ip}:#{port}"
|
595
|
+
# end
|
596
|
+
# end
|
597
|
+
def get_peername
|
598
|
+
EventMachine::get_peername @signature
|
599
|
+
end
|
600
|
+
|
601
|
+
# Used with stream-connections to obtain the identity
|
602
|
+
# of the local side of the connection. If a local name is available, this method
|
603
|
+
# returns a sockaddr structure. The method returns nil if no local name is available.
|
604
|
+
# You can use {Socket.unpack_sockaddr_in} and its variants to obtain the
|
605
|
+
# values contained in the local-name structure returned from this method.
|
606
|
+
#
|
607
|
+
# @example
|
608
|
+
#
|
609
|
+
# require 'socket'
|
610
|
+
#
|
611
|
+
# module Handler
|
612
|
+
# def receive_data data
|
613
|
+
# port, ip = Socket.unpack_sockaddr_in(get_sockname)
|
614
|
+
# puts "got #{data.inspect}"
|
615
|
+
# end
|
616
|
+
# end
|
617
|
+
def get_sockname
|
618
|
+
EventMachine::get_sockname @signature
|
619
|
+
end
|
620
|
+
|
621
|
+
# Returns the PID (kernel process identifier) of a subprocess
|
622
|
+
# associated with this Connection object. For use with {EventMachine.popen}
|
623
|
+
# and similar methods. Returns nil when there is no meaningful subprocess.
|
624
|
+
#
|
625
|
+
# @return [Integer]
|
626
|
+
def get_pid
|
627
|
+
EventMachine::get_subprocess_pid @signature
|
628
|
+
end
|
629
|
+
|
630
|
+
# Returns a subprocess exit status. Only useful for {EventMachine.popen}. Call it in your
|
631
|
+
# {#unbind} handler.
|
632
|
+
#
|
633
|
+
# @return [Integer]
|
634
|
+
def get_status
|
635
|
+
EventMachine::get_subprocess_status @signature
|
636
|
+
end
|
637
|
+
|
638
|
+
# The number of seconds since the last send/receive activity on this connection.
|
639
|
+
def get_idle_time
|
640
|
+
EventMachine::get_idle_time @signature
|
641
|
+
end
|
642
|
+
|
643
|
+
# comm_inactivity_timeout returns the current value (float in seconds) of the inactivity-timeout
|
644
|
+
# property of network-connection and datagram-socket objects. A nonzero value
|
645
|
+
# indicates that the connection or socket will automatically be closed if no read or write
|
646
|
+
# activity takes place for at least that number of seconds.
|
647
|
+
# A zero value (the default) specifies that no automatic timeout will take place.
|
648
|
+
def comm_inactivity_timeout
|
649
|
+
EventMachine::get_comm_inactivity_timeout @signature
|
650
|
+
end
|
651
|
+
|
652
|
+
# Allows you to set the inactivity-timeout property for
|
653
|
+
# a network connection or datagram socket. Specify a non-negative float value in seconds.
|
654
|
+
# If the value is greater than zero, the connection or socket will automatically be closed
|
655
|
+
# if no read or write activity takes place for at least that number of seconds.
|
656
|
+
# Specify a value of zero to indicate that no automatic timeout should take place.
|
657
|
+
# Zero is the default value.
|
658
|
+
def comm_inactivity_timeout= value
|
659
|
+
EventMachine::set_comm_inactivity_timeout @signature, value.to_f
|
660
|
+
end
|
661
|
+
alias set_comm_inactivity_timeout comm_inactivity_timeout=
|
662
|
+
|
663
|
+
# The duration after which a TCP connection in the connecting state will fail.
|
664
|
+
# It is important to distinguish this value from {EventMachine::Connection#comm_inactivity_timeout},
|
665
|
+
# which looks at how long since data was passed on an already established connection.
|
666
|
+
# The value is a float in seconds.
|
667
|
+
#
|
668
|
+
# @return [Float] The duration after which a TCP connection in the connecting state will fail, in seconds.
|
669
|
+
def pending_connect_timeout
|
670
|
+
EventMachine::get_pending_connect_timeout @signature
|
671
|
+
end
|
672
|
+
|
673
|
+
# Sets the duration after which a TCP connection in a
|
674
|
+
# connecting state will fail.
|
675
|
+
#
|
676
|
+
# @param [Float, #to_f] value Connection timeout in seconds
|
677
|
+
def pending_connect_timeout= value
|
678
|
+
EventMachine::set_pending_connect_timeout @signature, value.to_f
|
679
|
+
end
|
680
|
+
alias set_pending_connect_timeout pending_connect_timeout=
|
681
|
+
|
682
|
+
# Reconnect to a given host/port with the current instance
|
683
|
+
#
|
684
|
+
# @param [String] server Hostname or IP address
|
685
|
+
# @param [Integer] port Port to reconnect to
|
686
|
+
def reconnect server, port
|
687
|
+
EventMachine::reconnect server, port, self
|
688
|
+
end
|
689
|
+
|
690
|
+
|
691
|
+
# Like {EventMachine::Connection#send_data}, this sends data to the remote end of
|
692
|
+
# the network connection. {EventMachine::Connection#send_file_data} takes a
|
693
|
+
# filename as an argument, though, and sends the contents of the file, in one
|
694
|
+
# chunk.
|
695
|
+
#
|
696
|
+
# @param [String] filename Local path of the file to send
|
697
|
+
#
|
698
|
+
# @see #send_data
|
699
|
+
# @author Kirk Haines
|
700
|
+
def send_file_data filename
|
701
|
+
EventMachine::send_file_data @signature, filename
|
702
|
+
end
|
703
|
+
|
704
|
+
# Open a file on the filesystem and send it to the remote peer. This returns an
|
705
|
+
# object of type {EventMachine::Deferrable}. The object's callbacks will be executed
|
706
|
+
# on the reactor main thread when the file has been completely scheduled for
|
707
|
+
# transmission to the remote peer. Its errbacks will be called in case of an error (such as file-not-found).
|
708
|
+
# This method employs various strategies to achieve the fastest possible performance,
|
709
|
+
# balanced against minimum consumption of memory.
|
710
|
+
#
|
711
|
+
# Warning: this feature has an implicit dependency on an outboard extension,
|
712
|
+
# evma_fastfilereader. You must install this extension in order to use {#stream_file_data}
|
713
|
+
# with files larger than a certain size (currently 8192 bytes).
|
714
|
+
#
|
715
|
+
# @option args [Boolean] :http_chunks (false) If true, this method will stream the file data in a format
|
716
|
+
# compatible with the HTTP chunked-transfer encoding
|
717
|
+
#
|
718
|
+
# @param [String] filename Local path of the file to stream
|
719
|
+
# @param [Hash] args Options
|
720
|
+
#
|
721
|
+
# @return [EventMachine::Deferrable]
|
722
|
+
def stream_file_data filename, args={}
|
723
|
+
EventMachine::FileStreamer.new( self, filename, args )
|
724
|
+
end
|
725
|
+
|
726
|
+
# Watches connection for readability. Only possible if the connection was created
|
727
|
+
# using {EventMachine.attach} and had {EventMachine.notify_readable}/{EventMachine.notify_writable} defined on the handler.
|
728
|
+
#
|
729
|
+
# @see #notify_readable?
|
730
|
+
def notify_readable= mode
|
731
|
+
EventMachine::set_notify_readable @signature, mode
|
732
|
+
end
|
733
|
+
|
734
|
+
# @return [Boolean] true if the connection is being watched for readability.
|
735
|
+
def notify_readable?
|
736
|
+
EventMachine::is_notify_readable @signature
|
737
|
+
end
|
738
|
+
|
739
|
+
# Watches connection for writeability. Only possible if the connection was created
|
740
|
+
# using {EventMachine.attach} and had {EventMachine.notify_readable}/{EventMachine.notify_writable} defined on the handler.
|
741
|
+
#
|
742
|
+
# @see #notify_writable?
|
743
|
+
def notify_writable= mode
|
744
|
+
EventMachine::set_notify_writable @signature, mode
|
745
|
+
end
|
746
|
+
|
747
|
+
# Returns true if the connection is being watched for writability.
|
748
|
+
def notify_writable?
|
749
|
+
EventMachine::is_notify_writable @signature
|
750
|
+
end
|
751
|
+
|
752
|
+
# Pause a connection so that {#send_data} and {#receive_data} events are not fired until {#resume} is called.
|
753
|
+
# @see #resume
|
754
|
+
def pause
|
755
|
+
EventMachine::pause_connection @signature
|
756
|
+
end
|
757
|
+
|
758
|
+
# Resume a connection's {#send_data} and {#receive_data} events.
|
759
|
+
# @see #pause
|
760
|
+
def resume
|
761
|
+
EventMachine::resume_connection @signature
|
762
|
+
end
|
763
|
+
|
764
|
+
# @return [Boolean] true if the connect was paused using {EventMachine::Connection#pause}.
|
765
|
+
# @see #pause
|
766
|
+
# @see #resume
|
767
|
+
def paused?
|
768
|
+
EventMachine::connection_paused? @signature
|
769
|
+
end
|
770
|
+
|
771
|
+
# @return [Boolean] true if the connect was watch only
|
772
|
+
def watch_only?
|
773
|
+
EventMachine::watch_only? @signature
|
774
|
+
end
|
775
|
+
end
|
776
|
+
end
|