Sha256: e84e57565b60dfd38090e4dc1c94145adc1b096a533d2c91852ddb89f9a60baa

Contents?: true

Size: 1.4 KB

Versions: 11

Compression:

Stored size: 1.4 KB

Contents

$LOAD_PATH.unshift File.expand_path("../../lib", __dir__)

require 'async'
require 'async/io/stream'
require 'async/http/url_endpoint'
require 'http/protocol/http2/client'
require 'pry'

Async.run do
	endpoint = Async::HTTP::URLEndpoint.parse("https://www.google.com/search?q=kittens")
	
	peer = endpoint.connect
	
	puts "Connected to #{peer.inspect}"
	
	# IO Buffering...
	stream = Async::IO::Stream.new(peer)
	
	framer = HTTP::Protocol::HTTP2::Framer.new(stream)
	client = HTTP::Protocol::HTTP2::Client.new(framer)
	
	puts "Sending connection preface..."
	client.send_connection_preface
	
	puts "Creating stream..."
	stream = client.create_stream
	
	headers = [
		[":scheme", endpoint.scheme],
		[":method", "GET"],
		[":authority", "www.google.com"],
		[":path", endpoint.path],
		["accept", "*/*"],
	]
	
	puts "Sending request on stream id=#{stream.id} state=#{stream.state}..."
	stream.send_headers(nil, headers, HTTP::Protocol::HTTP2::END_STREAM)
	
	puts "Waiting for response..."
	$count = 0
	
	def stream.process_headers(frame)
		headers = super
		puts "Got response headers: #{headers} (#{frame.end_stream?})"
	end
	
	def stream.receive_data(frame)
		data = super
		
		$count += data.scan(/kittens/).count
		
		puts "Got response data: #{data.bytesize}"
	end
	
	until stream.closed?
		frame = client.read_frame
	end
	
	puts "Got #{$count} kittens!"
	
	binding.pry
	
	puts "Closing client..."
	client.close
end

puts "Exiting."

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
http-protocol-0.17.1 examples/http2/request.rb
http-protocol-0.17.0 examples/http2/request.rb
http-protocol-0.16.0 examples/http2/request.rb
http-protocol-0.15.0 examples/http2/request.rb
http-protocol-0.14.0 examples/http2/request.rb
http-protocol-0.13.0 examples/http2/request.rb
http-protocol-0.12.2 examples/http2/request.rb
http-protocol-0.12.1 examples/http2/request.rb
http-protocol-0.12.0 examples/http2/request.rb
http-protocol-0.11.0 examples/http2/request.rb
http-protocol-0.10.1 examples/http2/request.rb