# frozen_string_literal: true# Released under the MIT License.# Copyright, 2018-2024, by Samuel Williams.# Copyright, 2020, by Igor Sidorov.# Copyright, 2023, by Thomas Morgan.# Copyright, 2024, by Anton Zhuravsky.require_relative"connection"require_relative"finishable"require"console/event/failure"moduleAsyncmoduleHTTPmoduleProtocolmoduleHTTP1classServer<Connectiondefinitialize(...)super@ready=Async::Notification.newenddefclosed(error=nil)super@ready.signalenddeffail_request(status)@persistent=falsewrite_response(@version,status,{})write_body(@version,nil)rescue=>error# At this point, there is very little we can do to recover:Console::Event::Failure.for(error).emit(self,"Failed to write failure response!",severity: :debug)enddefnext_requestifclosed?returnnilelsif!idle?@ready.waitend# Read an incoming request:returnunlessrequest=Request.read(self)unlesspersistent?(request.version,request.method,request.headers)@persistent=falseendreturnrequestrescue::Protocol::HTTP1::BadRequest=>errorfail_request(400)# Conceivably we could retry here, but we don't really know how bad the error is, so it's better to just fail:raiseend# Server loop.defeach(task: Task.current)task.annotate("Reading #{self.version} requests for #{self.class}.")whilerequest=next_requestifbody=request.bodyfinishable=Finishable.new(body)request.body=finishableendresponse=yield(request,self)version=request.versionbody=response&.bodyifhijacked?body&.closereturnendtask.defer_stopdo# If a response was generated, send it:ifresponsetrailer=response.headers.trailer!# Some operations in this method are long running, that is, it's expected that `body.call(stream)` could literally run indefinitely. In order to facilitate garbage collection, we want to nullify as many local variables before calling the streaming body. This ensures that the garbage collection can clean up as much state as possible during the long running operation, so we don't retain objects that are no longer needed.ifbodyandprotocol=response.protocol# We force a 101 response if the protocol is upgraded - HTTP/2 CONNECT will return 200 for success, but this won't be understood by HTTP/1 clients:write_response(@version,101,response.headers)# At this point, the request body is hijacked, so we don't want to call #finish below.request=nilresponse=nilifbody.stream?returnbody.call(write_upgrade_body(protocol))elsewrite_upgrade_body(protocol,body)endelsifresponse.status==101# This code path is to support legacy behavior where the response status is set to 101, but the protocol is not upgraded. This may not be a valid use case, but it is supported for compatibility. We expect the response headers to contain the `upgrade` header.write_response(@version,response.status,response.headers)# Same as above:request=nilresponse=nilifbody.stream?returnbody.call(write_tunnel_body(version))elsewrite_tunnel_body(version,body)endelsewrite_response(@version,response.status,response.headers)ifrequest.connect?andresponse.success?# Same as above:request=nilresponse=nilifbody.stream?returnbody.call(write_tunnel_body(version))elsewrite_tunnel_body(version,body)endelsehead=request.head?# Same as above:request=nilresponse=nilwrite_body(version,body,head,trailer)endend# We are done with the body:body=nilelse# If the request failed to generate a response, it was an internal server error:write_response(@version,500,{})write_body(version,nil)request&.finishendiffinishablefinishable.wait(@persistent)else# Do not remove this line or you will unleash the gods of concurrency hell.task.yieldendrescue=>errorraiseensurebody&.close(error)endendendendendendendend