yahns.git  about / heads / tags
sleepy, multi-threaded, non-blocking application server for Ruby
blob 2ea7706726c35e630296901057363b59457b1d31 767 bytes (raw)
$ git show v0.0.1:lib/yahns/client_expire_portable.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
 
# Copyright (C) 2013, Eric Wong <normalperson@yhbt.net> and all contributors
# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
module Yahns::ClientExpire # :nodoc:
  def __timestamp
    Time.now.to_f
  end

  def yahns_expire(timeout)
    return 0 if closed? # still racy, but avoid the exception in most cases
    if (__timestamp - @last_io_at) > timeout
      shutdown
      1
    else
      0
    end
  rescue # the IO#closed? check is racy
    0
  end

  def kgio_read(*args)
    @last_io_at = __timestamp
    super
  end

  def kgio_write(*args)
    @last_io_at = __timestamp
    super
  end

  def kgio_trywrite(*args)
    @last_io_at = __timestamp
    super
  end

  def kgio_tryread(*args)
    @last_io_at = __timestamp
    super
  end
end

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