In the future, this will allow sharing open files across
different clients when serving static files. For now, it
saves us one syscall.
---
lib/yahns/http_client.rb | 19 +++++++++++++++----
lib/yahns/openssl_client.rb | 5 +----
2 files changed, 16 insertions(+), 8 deletions(-)
diff --git a/lib/yahns/http_client.rb b/lib/yahns/http_client.rb
index fd97624..d55a0db 100644
--- a/lib/yahns/http_client.rb
+++ b/lib/yahns/http_client.rb
@@ -322,12 +322,23 @@ def app_hijacked?(env, res)
true
end
- def trysendio(io, offset, count)
- return 0 if count == 0
+ def do_pread(io, count, offset)
count = 0x4000 if count > 0x4000
buf = Thread.current[:yahns_sfbuf] ||= ''.dup
- io.pos = offset
- str = io.read(count, buf) or return # nil for EOF
+ if io.respond_to?(:pread)
+ io.pread(count, offset, buf)
+ else
+ io.pos = offset
+ io.read(count, buf)
+ end
+ rescue EOFError
+ warn "BUG: do_pread overreach:\n #{caller.join("\n ")}\n"
+ nil
+ end
+
+ def trysendio(io, offset, count)
+ return 0 if count == 0
+ str = do_pread(io, count, offset) or return # nil for EOF
n = 0
case rv = kgio_trywrite(str)
when String # partial write, keep trying
diff --git a/lib/yahns/openssl_client.rb b/lib/yahns/openssl_client.rb
index c090083..d3caacb 100644
--- a/lib/yahns/openssl_client.rb
+++ b/lib/yahns/openssl_client.rb
@@ -93,10 +93,7 @@ def trysendio(io, offset, count)
case buf = @ssl_blocked
when nil
- count = 0x4000 if count > 0x4000
- buf = Thread.current[:yahns_sfbuf] ||= ''.dup
- io.pos = offset
- buf = io.read(count, buf) or return # nil for EOF
+ buf = do_pread(io, count, offset) or return # nil for EOF
buf = @ssl_blocked = buf.dup
when Exception
raise buf
--
EW
--
unsubscribe: [email protected]
archive: https://yhbt.net/yahns-public/