class Falcon::Command::Serve

Manages a {Controller::Serve} instance which is responsible for running applications in a development environment.
Implements the ‘falcon serve` command. Designed for development.

def call

Prepare the environment and run the controller.
def call
	Console.logger.info(self) do |buffer|
		buffer.puts "Falcon v#{VERSION} taking flight! Using #{self.container_class} #{self.container_options}."
		buffer.puts "- Binding to: #{self.endpoint}"
		buffer.puts "- To terminate: Ctrl-C or kill #{Process.pid}"
		buffer.puts "- To reload configuration: kill -HUP #{Process.pid}"
	end
	
	Async::Service::Controller.run(self.configuration, container_class: self.container_class, graceful_stop: @options[:graceful_stop])
end

def client

Create a new client suitable for accessing the application.
def client
	Async::HTTP::Client.new(client_endpoint)
end

def client_endpoint

The endpoint suitable for a client to connect.
def client_endpoint
	Async::HTTP::Endpoint.parse(@options[:bind], **endpoint_options)
end

def configuration

def configuration
	Configuration.new.tap do |configuration|
		configuration.add(self.environment)
	end
end

def container_class

The container class to use.
def container_class
	case @options[:container]
	when :threaded
		return Async::Container::Threaded
	when :forked
		return Async::Container::Forked
	when :hybrid
		return Async::Container::Hybrid
	end
end

def container_options

def container_options
	@options.slice(:count, :forks, :threads, :restart)
end

def endpoint

The endpoint to bind to.
def endpoint
	Endpoint.parse(@options[:bind], **endpoint_options)
end

def endpoint_options

def endpoint_options
	@options.slice(:hostname, :port, :timeout)
end

def environment

def environment
	Async::Service::Environment.new(Falcon::Environment::Server).with(
		Falcon::Environment::Rackup,
		
		root: Dir.pwd,
		
		verbose: self.parent&.verbose?,
		cache: @options[:cache],
		
		container_options: self.container_options,
		endpoint_options: self.endpoint_options,
		
		rackup_path: @options[:config],
		preload: [@options[:preload]].compact,
		url: @options[:bind],
		
		name: "server",
		
		endpoint: ->{Endpoint.parse(url, **endpoint_options)}
	)
end