模块 OpenSSL::Buffering
此模块允许 OpenSSL::SSL::SSLSocket
像 IO
一样工作。
您通常不会直接使用此模块,您可以在 OpenSSL::SSL::SSLSocket
中看到它的实现。
常量
- BLOCK_SIZE
用于缓冲操作从 SSLSocket 读取或写入的默认大小。
属性
SSLSocket 的“同步模式”。
有关完整详细信息,请参阅 IO#sync
。
公共类方法
创建 OpenSSL 缓冲 IO
模块的实例。
# File ext/openssl/lib/openssl/buffering.rb, line 63 def initialize(*) super @eof = false @rbuffer = Buffer.new @sync = @io.sync end
公共实例方法
将 s 写入流。s 将使用 .to_s
方法转换为 String
。
# File ext/openssl/lib/openssl/buffering.rb, line 419 def <<(s) do_write(s) self end
关闭 SSLSocket 并刷新所有未写入的数据。
# File ext/openssl/lib/openssl/buffering.rb, line 480 def close flush rescue nil sysclose end
对流中的每一行执行块,其中行由 eol 分隔。
另请参阅 gets
# File ext/openssl/lib/openssl/buffering.rb, line 256 def each(eol=$/) while line = self.gets(eol) yield line end end
对流中的每个字节调用给定块一次。
# File ext/openssl/lib/openssl/buffering.rb, line 297 def each_byte # :yields: byte while c = getc yield(c.ord) end end
如果流位于文件末尾,则返回 true,这意味着没有更多数据可读。
# File ext/openssl/lib/openssl/buffering.rb, line 328 def eof? fill_rbuff if !@eof && @rbuffer.empty? @eof && @rbuffer.empty? end
将缓冲数据刷新到 SSLSocket。
# File ext/openssl/lib/openssl/buffering.rb, line 468 def flush osync = @sync @sync = true do_write "" return self ensure @sync = osync end
从 ‘ssl` 获取下一个 8 位字节。在 EOF 时返回 `nil`
# File ext/openssl/lib/openssl/buffering.rb, line 106 def getbyte read(1)&.ord end
从流中读取一个字符。如果在文件末尾调用,则返回 nil。
# File ext/openssl/lib/openssl/buffering.rb, line 290 def getc read(1) end
从流中读取下一行。行由 eol 分隔。如果提供了 limit,则结果不会超过给定字节数。
与 IO#gets
不同,读取的行不会分配给 +$_+。
与 IO#gets
不同,如果提供了限制,则必须提供分隔符。
# File ext/openssl/lib/openssl/buffering.rb, line 232 def gets(eol=$/, limit=nil) idx = @rbuffer.index(eol) until @eof break if idx fill_rbuff idx = @rbuffer.index(eol) end if eol.is_a?(Regexp) size = idx ? idx+$&.size : nil else size = idx ? idx+eol.size : nil end if size && limit && limit >= 0 size = [size, limit].min end consume_rbuff(size) end
将 args 写入流。
有关完整详细信息,请参阅 IO#print
。
# File ext/openssl/lib/openssl/buffering.rb, line 447 def print(*args) s = Buffer.new args.each{ |arg| s << arg.to_s } do_write(s) nil end
格式化并写入流,在格式字符串的控制下转换参数。
有关格式字符串的详细信息,请参阅 Kernel#sprintf
。
# File ext/openssl/lib/openssl/buffering.rb, line 460 def printf(s, *args) do_write(s % args) nil end
将 args 以及记录分隔符写入流。
有关完整详细信息,请参阅 IO#puts
。
# File ext/openssl/lib/openssl/buffering.rb, line 429 def puts(*args) s = Buffer.new if args.empty? s << "\n" end args.each{|arg| s << arg.to_s s.sub!(/(?<!\n)\z/, "\n") } do_write(s) nil end
从流中读取 size 字节。如果提供了 buf,它必须引用一个字符串,该字符串将接收数据。
有关完整详细信息,请参阅 IO#read
。
# File ext/openssl/lib/openssl/buffering.rb, line 116 def read(size=nil, buf=nil) if size == 0 if buf buf.clear return buf else return "" end end until @eof break if size && size <= @rbuffer.size fill_rbuff end ret = consume_rbuff(size) || "" if buf buf.replace(ret) ret = buf end (size && ret.empty?) ? nil : ret end
以非阻塞方式读取最多 maxlen 字节。
如果无法在不阻塞的情况下读取数据,则会引发 OpenSSL::SSL::SSLError
,该错误由 IO::WaitReadable
或 IO::WaitWritable
扩展。
IO::WaitReadable
表示 SSL
需要在内部读取,因此当底层 IO
可读时,应再次调用 read_nonblock
。
IO::WaitWritable
表示 SSL
需要在内部写入,因此在底层 IO
可写后,应再次调用 read_nonblock
。
OpenSSL::Buffering#read_nonblock
需要以下两个 rescue 子句
# emulates blocking read (readpartial). begin result = ssl.read_nonblock(maxlen) rescue IO::WaitReadable IO.select([io]) retry rescue IO::WaitWritable IO.select(nil, [io]) retry end
请注意,read_nonblock
写入底层 IO
的一个原因是当对等方请求新的 TLS/SSL 握手时。有关更多详细信息,请参阅 openssl 常见问题解答。 www.openssl.org/support/faq.html
通过将关键字参数 exception 指定为 false
,您可以指示 read_nonblock
不应引发 IO::Wait*able 异常,而是返回符号 :wait_writable
或 :wait_readable
。在 EOF 时,它将返回 nil
而不是引发 EOFError
。
# File ext/openssl/lib/openssl/buffering.rb, line 201 def read_nonblock(maxlen, buf=nil, exception: true) if maxlen == 0 if buf buf.clear return buf else return "" end end if @rbuffer.empty? return sysread_nonblock(maxlen, buf, exception: exception) end ret = consume_rbuff(maxlen) if buf buf.replace(ret) ret = buf end ret end
从流中读取一个字符字符串。在文件末尾引发 EOFError
。
# File ext/openssl/lib/openssl/buffering.rb, line 307 def readchar raise EOFError if eof? getc end
从流中读取一行,该行由 eol 分隔。
如果在文件末尾,则引发 EOFError
。
# File ext/openssl/lib/openssl/buffering.rb, line 281 def readline(eol=$/) raise EOFError if eof? gets(eol) end
从流中读取行,该行由 eol 分隔。
另请参阅 gets
# File ext/openssl/lib/openssl/buffering.rb, line 268 def readlines(eol=$/) ary = [] while line = self.gets(eol) ary << line end ary end
从流中读取最多 maxlen 字节。如果提供了 buf,它必须引用一个字符串,该字符串将接收数据。
有关完整详细信息,请参阅 IO#readpartial
。
# File ext/openssl/lib/openssl/buffering.rb, line 143 def readpartial(maxlen, buf=nil) if maxlen == 0 if buf buf.clear return buf else return "" end end if @rbuffer.empty? begin return sysread(maxlen, buf) rescue Errno::EAGAIN retry end end ret = consume_rbuff(maxlen) if buf buf.replace(ret) ret = buf end ret end
将字符 c 推回流中,以便随后的缓冲字符读取将返回它。
与 IO#getc
不同,可以将多个字节推回流中。
对非缓冲读取(如 sysread)没有影响。
# File ext/openssl/lib/openssl/buffering.rb, line 320 def ungetc(c) @rbuffer[0,0] = c.chr end
将 s 写入流。如果参数不是 String
,它将使用 .to_s
方法进行转换。返回写入的字节数。
# File ext/openssl/lib/openssl/buffering.rb, line 366 def write(*s) s.inject(0) do |written, str| do_write(str) written + str.bytesize end end
以非阻塞方式写入 s。
如果有缓冲数据,则首先将其刷新。这可能会阻塞。
write_nonblock
返回写入 SSL
连接的字节数。
如果无法在不阻塞的情况下写入数据,则会引发 OpenSSL::SSL::SSLError
,该错误由 IO::WaitReadable
或 IO::WaitWritable
扩展。
IO::WaitReadable
表示 SSL
需要在内部读取,因此在底层 IO
可读后,应再次调用 write_nonblock
。
IO::WaitWritable
表示 SSL
需要在内部写入,因此在底层 IO
可写后,应再次调用 write_nonblock
。
因此,OpenSSL::Buffering#write_nonblock
需要以下两个 rescue 子句。
# emulates blocking write. begin result = ssl.write_nonblock(str) rescue IO::WaitReadable IO.select([io]) retry rescue IO::WaitWritable IO.select(nil, [io]) retry end
请注意,write_nonblock
从底层 IO
读取的一个原因是当对等方请求新的 TLS/SSL 握手时。有关更多详细信息,请参阅 openssl 常见问题解答。 www.openssl.org/support/faq.html
通过将关键字参数 exception 指定为 false
,您可以指示 write_nonblock
不应引发 IO::Wait*able 异常,而是返回符号 :wait_writable
或 :wait_readable
。
# File ext/openssl/lib/openssl/buffering.rb, line 410 def write_nonblock(s, exception: true) flush syswrite_nonblock(s, exception: exception) end
私有实例方法
从缓冲区中消耗 size 字节
# File ext/openssl/lib/openssl/buffering.rb, line 91 def consume_rbuff(size=nil) if @rbuffer.empty? nil else size = @rbuffer.size unless size @rbuffer.slice!(0, size) end end
将 s 写入缓冲区。当缓冲区已满或 sync
为 true 时,缓冲区将被刷新到底层套接字。
# File ext/openssl/lib/openssl/buffering.rb, line 343 def do_write(s) @wbuffer = Buffer.new unless defined? @wbuffer @wbuffer << s @wbuffer.force_encoding(Encoding::BINARY) @sync ||= false if @sync or @wbuffer.size > BLOCK_SIZE until @wbuffer.empty? begin nwrote = syswrite(@wbuffer) rescue Errno::EAGAIN retry end @wbuffer[0, nwrote] = "" end end end
从底层 SSLSocket 填充缓冲区
# File ext/openssl/lib/openssl/buffering.rb, line 78 def fill_rbuff begin @rbuffer << self.sysread(BLOCK_SIZE) rescue Errno::EAGAIN retry rescue EOFError @eof = true end end