yahns.git  about / heads / tags
sleepy, multi-threaded, non-blocking application server for Ruby
blob c35f63fe0d592acd50ab674beb7b0633d9c8a379 1187 bytes (raw)
$ git show v0.0.1:lib/yahns/client_expire.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
# Copyright (C) 2013, Eric Wong <normalperson@yhbt.net> and all contributors
# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)

# included in Yahns::HttpClient
#
# this provides the ability to expire idle clients once we hit a soft limit
# on idle clients
#
# we absolutely DO NOT issue IO#close in here, only BasicSocket#shutdown
module Yahns::ClientExpire # :nodoc:
  def yahns_expire(timeout) # rarely called
    return 0 if closed? # still racy, but avoid the exception in most cases

    info = Raindrops::TCP_Info.new(self)
    return 0 if info.state != 1 # TCP_ESTABLISHED == 1

    # Linux struct tcp_info timers are in milliseconds
    timeout *= 1000

    send_timedout = !!(info.last_data_sent > timeout)

    # tcpi_last_data_recv is not valid unless tcpi_ato (ACK timeout) is set
    if 0 == info.ato
      sd = send_timedout && (info.last_ack_recv > timeout)
    else
      sd = send_timedout && (info.last_data_recv > timeout)
    end
    if sd
      shutdown
      1
    else
      0
    end
  # we also do not expire UNIX domain sockets
  # (since those are the most trusted of local clients)
  # the IO#closed? check is racy
  rescue
    0
  end
end

git clone git://yhbt.net/yahns.git
git clone https://yhbt.net/yahns.git