Sha256: 777e80be66b0248521480f313b4d17aec4b56ad2eae81e84eefd140d72af5a39

Contents?: true

Size: 1.37 KB

Versions: 15

Compression:

Stored size: 1.37 KB

Contents

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

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

Async do
	endpoint = Async::HTTP::Endpoint.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 = Protocol::HTTP2::Framer.new(stream)
	client = 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, 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/).size
		
		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

15 entries across 15 versions & 1 rubygems

Version Path
protocol-http2-0.12.0 examples/http2/request.rb
protocol-http2-0.11.6 examples/http2/request.rb
protocol-http2-0.11.5 examples/http2/request.rb
protocol-http2-0.11.4 examples/http2/request.rb
protocol-http2-0.11.3 examples/http2/request.rb
protocol-http2-0.11.2 examples/http2/request.rb
protocol-http2-0.11.1 examples/http2/request.rb
protocol-http2-0.11.0 examples/http2/request.rb
protocol-http2-0.10.4 examples/http2/request.rb
protocol-http2-0.10.3 examples/http2/request.rb
protocol-http2-0.10.2 examples/http2/request.rb
protocol-http2-0.10.1 examples/http2/request.rb
protocol-http2-0.10.0 examples/http2/request.rb
protocol-http2-0.9.7 examples/http2/request.rb
protocol-http2-0.9.6 examples/http2/request.rb