Class: LogCourier::ConnectionTcp
- Inherits:
-
Object
- Object
- LogCourier::ConnectionTcp
- Defined in:
- lib/log-courier/server_tcp.rb
Overview
Representation of a single connected client
Instance Attribute Summary collapse
-
#peer ⇒ Object
Returns the value of attribute peer.
Instance Method Summary collapse
- #add_fields(event) ⇒ Object
-
#initialize(logger, fd, peer, options) ⇒ ConnectionTcp
constructor
A new instance of ConnectionTcp.
- #run ⇒ Object
- #send(signature, message) ⇒ Object
Constructor Details
#initialize(logger, fd, peer, options) ⇒ ConnectionTcp
Returns a new instance of ConnectionTcp.
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/log-courier/server_tcp.rb', line 195 def initialize(logger, fd, peer, ) @logger = logger @fd = fd @peer = peer @peer_fields = {} @in_progress = false = if [:add_peer_fields] @peer_fields['peer'] = peer if [:transport] == 'tls' && !@fd.peer_cert.nil? @peer_fields['peer_ssl_cn'] = get_cn(@fd.peer_cert) end end end |
Instance Attribute Details
#peer ⇒ Object
Returns the value of attribute peer.
193 194 195 |
# File 'lib/log-courier/server_tcp.rb', line 193 def peer @peer end |
Instance Method Details
#add_fields(event) ⇒ Object
211 212 213 |
# File 'lib/log-courier/server_tcp.rb', line 211 def add_fields(event) event.merge! @peer_fields if @peer_fields.length != 0 end |
#run ⇒ Object
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
# File 'lib/log-courier/server_tcp.rb', line 215 def run loop do # Read messages # Each message begins with a header # 4 byte signature # 4 byte length # Normally we would not parse this inside transport, but for TLS we have to in order to locate frame boundaries signature, length = recv(8).unpack('A4N') # Sanity if length > [:max_packet_size] fail ProtocolError, "packet too large (#{length} > #{@options[:max_packet_size]})" end # While we're processing, EOF is bad as it may occur during send @in_progress = true # Read the message if length == 0 data = '' else data = recv(length) end # Send for processing yield signature, data, self # If we EOF next it's a graceful close @in_progress = false end return rescue TimeoutError # Timeout of the connection, we were idle too long without a ping/pong @logger.warn 'Connection timed out', :peer => @peer unless @logger.nil? return rescue EOFError if @in_progress @logger.warn 'Unexpected EOF', :peer => @peer unless @logger.nil? else @logger.info 'Connection closed', :peer => @peer unless @logger.nil? end return rescue OpenSSL::SSL::SSLError, IOError, Errno::ECONNRESET => e # Read errors, only action is to shutdown which we'll do in ensure @logger.warn 'SSL error, connection aborted', :error => e., :peer => @peer unless @logger.nil? return rescue ProtocolError => e # Connection abort request due to a protocol error @logger.warn 'Protocol error, connection aborted', :error => e., :peer => @peer unless @logger.nil? return rescue ShutdownSignal # Shutting down @logger.info 'Server shutting down, closing connection', :peer => @peer unless @logger.nil? return rescue StandardError, NativeException => e # Some other unknown problem @logger.warn e, :hint => 'Unknown error, connection aborted', :peer => @peer unless @logger.nil? return ensure @fd.close rescue nil end |
#send(signature, message) ⇒ Object
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
# File 'lib/log-courier/server_tcp.rb', line 277 def send(signature, ) reset_timeout data = signature + [.length].pack('N') + done = 0 loop do begin written = @fd.write_nonblock(data[done...data.length]) rescue IO::WaitReadable fail TimeoutError if IO.select([@fd], nil, [@fd], @timeout - Time.now.to_i).nil? retry rescue IO::WaitWritable fail TimeoutError if IO.select(nil, [@fd], [@fd], @timeout - Time.now.to_i).nil? retry end fail ProtocolError, "write failure (#{done}/#{data.length})" if written == 0 done += written break if done >= data.length end return end |