Sha256: 64eb9249a17b5eeb250c995d44db8d8e700dab1e3d88496e8c0dcc3414af661b

Contents?: true

Size: 1.99 KB

Versions: 1

Compression:

Stored size: 1.99 KB

Contents

# Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'async/io/address'

require_relative 'protocol'

module Async
	module HTTP
		class Server
			def initialize(addresses, protocol_class = Protocol::HTTP1x)
				@addresses = addresses
				@protocol_class = protocol_class
			end
			
			def handle_request(request, peer, address)
				[200, {}, []]
			end
			
			def run
				Async::IO::Address.each(@addresses) do |address|
					# puts "Binding to #{address} on process #{Process.pid}"
					
					address.accept do |peer|
						stream = Async::IO::Stream.new(peer)
						
						protocol = @protocol_class.new(stream)
						
						# puts "Opening session on child pid #{Process.pid}"
						
						hijack = catch(:hijack) do
							protocol.receive_requests do |request|
								handle_request(request, peer, address)
							end
						end

						if hijack
							hijack.call
						end

						# puts "Closing session"
					end
				end
			end
		end
	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
async-http-0.2.0 lib/async/http/server.rb