Class: Thrift::HTTPClientTransport

Inherits:
BaseTransport show all
Defined in:
lib/thrift/transport/http_client_transport.rb

Instance Method Summary collapse

Methods inherited from BaseTransport

#close, #open, #read_all, #read_byte, #read_into_buffer

Constructor Details

#initialize(url, opts = {}) ⇒ HTTPClientTransport

Returns a new instance of HTTPClientTransport.



30
31
32
33
34
35
# File 'lib/thrift/transport/http_client_transport.rb', line 30

def initialize(url, opts = {})
  @url = URI url
  @headers = {'Content-Type' => 'application/x-thrift'}
  @outbuf = Bytes.empty_byte_buffer
  @ssl_verify_mode = opts.fetch(:ssl_verify_mode, OpenSSL::SSL::VERIFY_PEER)
end

Instance Method Details

#add_headers(headers) ⇒ Object



41
42
43
# File 'lib/thrift/transport/http_client_transport.rb', line 41

def add_headers(headers)
  @headers = @headers.merge(headers)
end

#flushObject



45
46
47
48
49
50
51
52
53
54
# File 'lib/thrift/transport/http_client_transport.rb', line 45

def flush
  http = Net::HTTP.new @url.host, @url.port
  http.use_ssl = @url.scheme == 'https'
  http.verify_mode = @ssl_verify_mode if @url.scheme == 'https'
  resp = http.post(@url.request_uri, @outbuf, @headers)
  data = resp.body
  data = Bytes.force_binary_encoding(data)
  @inbuf = StringIO.new data
  @outbuf = Bytes.empty_byte_buffer
end

#open?Boolean

Returns:

  • (Boolean)


37
# File 'lib/thrift/transport/http_client_transport.rb', line 37

def open?; true end

#read(sz) ⇒ Object



38
# File 'lib/thrift/transport/http_client_transport.rb', line 38

def read(sz); @inbuf.read sz end

#write(buf) ⇒ Object



39
# File 'lib/thrift/transport/http_client_transport.rb', line 39

def write(buf); @outbuf << Bytes.force_binary_encoding(buf) end