Module: Async::HTTP::Protocol::HTTP2::Connection

Included in:
Client, Server
Defined in:
lib/async/http/protocol/http2/connection.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#countObject (readonly)

Returns the value of attribute count.



122
123
124
# File 'lib/async/http/protocol/http2/connection.rb', line 122

def count
  @count
end

#promisesObject (readonly)

Returns the value of attribute promises.



116
117
118
# File 'lib/async/http/protocol/http2/connection.rb', line 116

def promises
  @promises
end

#streamObject (readonly)

Returns the value of attribute stream.



42
43
44
# File 'lib/async/http/protocol/http2/connection.rb', line 42

def stream
  @stream
end

Instance Method Details

#close(error = nil) ⇒ Object



56
57
58
59
60
61
62
63
64
65
# File 'lib/async/http/protocol/http2/connection.rb', line 56

def close(error = nil)
	super
	
	# Ensure the reader task is stopped.
	if @reader
		reader = @reader
		@reader = nil
		reader.stop
	end
end

#concurrencyObject



124
125
126
# File 'lib/async/http/protocol/http2/connection.rb', line 124

def concurrency
	self.maximum_concurrent_streams
end

#http1?Boolean

Returns:

  • (Boolean)


44
45
46
# File 'lib/async/http/protocol/http2/connection.rb', line 44

def http1?
	false
end

#http2?Boolean

Returns:

  • (Boolean)


48
49
50
# File 'lib/async/http/protocol/http2/connection.rb', line 48

def http2?
	true
end

#initializeObject



28
29
30
31
32
33
34
35
36
# File 'lib/async/http/protocol/http2/connection.rb', line 28

def initialize(*)
	super
	
	@count = 0
	@reader = nil
	
	# Writing multiple frames at the same time can cause odd problems if frames are only partially written. So we use a semaphore to ensure frames are written in their entirety.
	@write_frame_guard = Async::Semaphore.new(1)
end

#peerObject



118
119
120
# File 'lib/async/http/protocol/http2/connection.rb', line 118

def peer
	@stream.io
end

#read_in_background(parent: Task.current) ⇒ Object

Raises:

  • (RuntimeError)


84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/async/http/protocol/http2/connection.rb', line 84

def read_in_background(parent: Task.current)
	raise RuntimeError, "Connection is closed!" if closed?
	
	parent.async(transient: true) do |task|
		@reader = task
		
		task.annotate("#{version} reading data for #{self.class}.")
		
		# We don't need to defer stop here as this is already a transient task (ignores stop):
		begin
			while !self.closed?
				self.consume_window
				self.read_frame
			end
		rescue SocketError, IOError, EOFError, Errno::ECONNRESET, Errno::EPIPE, Async::Wrapper::Cancelled
			# Ignore.
		rescue ::Protocol::HTTP2::GoawayError => error
			# Error is raised if a response is actively reading from the
			# connection. The connection is silently closed if GOAWAY is
			# received outside the request/response cycle.
			if @reader
				self.close(error)
			end
		ensure
			# Don't call #close twice.
			if @reader
				self.close($!)
			end
		end
	end
end

#reusable?Boolean

Returns:

  • (Boolean)


133
134
135
# File 'lib/async/http/protocol/http2/connection.rb', line 133

def reusable?
	!self.closed?
end

#start_connectionObject



52
53
54
# File 'lib/async/http/protocol/http2/connection.rb', line 52

def start_connection
	@reader || read_in_background
end

#to_sObject



38
39
40
# File 'lib/async/http/protocol/http2/connection.rb', line 38

def to_s
	"\#<#{self.class} #{@streams.count} active streams>"
end

#versionObject



137
138
139
# File 'lib/async/http/protocol/http2/connection.rb', line 137

def version
	VERSION
end

#viable?Boolean

Can we use this connection to make requests?

Returns:

  • (Boolean)


129
130
131
# File 'lib/async/http/protocol/http2/connection.rb', line 129

def viable?
	@stream.connected?
end

#write_frame(frame) ⇒ Object



67
68
69
70
71
72
73
74
# File 'lib/async/http/protocol/http2/connection.rb', line 67

def write_frame(frame)
	# We don't want to write multiple frames at the same time.
	@write_frame_guard.acquire do
		super
	end
	
	@stream.flush
end

#write_frames(&block) ⇒ Object



76
77
78
79
80
81
82
# File 'lib/async/http/protocol/http2/connection.rb', line 76

def write_frames(&block)
	@write_frame_guard.acquire do
		super
	end
	
	@stream.flush
end