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) ⇒ HTTPClientTransport

Returns a new instance of HTTPClientTransport.



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

def initialize(url)
  @url = URI url
  @headers = {'Content-Type' => 'application/x-thrift'}
  @outbuf = Bytes.empty_byte_buffer
end

Instance Method Details

#add_headers(headers) ⇒ Object



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

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

#flushObject



43
44
45
46
47
48
49
50
51
# File 'lib/thrift/transport/http_client_transport.rb', line 43

def flush
  http = Net::HTTP.new @url.host, @url.port
  http.use_ssl = @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)


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

def open?; true end

#read(sz) ⇒ Object



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

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

#write(buf) ⇒ Object



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

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