Module: Innate::Adapter

Includes:
Optioned
Defined in:
lib/innate/adapter.rb

Overview

Lightweight wrapper around Rack::Handler, will apply our options in a unified manner and deal with adapters that don’t like to do what we want or where Rack doesn’t want to take a stand.

Rack handlers as of 2009.03.25: cgi, fastcgi, mongrel, emongrel, smongrel, webrick, lsws, scgi, thin

Class Method Summary collapse

Methods included from Optioned

included

Class Method Details

.start(app, given_options = nil) ⇒ Object

Pass given app to the Handler, handler is chosen based on config.adapter option. If there is a method named start_name_of_adapter it will be run instead of the default run method of the handler, this makes it easy to define custom startup of handlers for your server of choice.



36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/innate/adapter.rb', line 36

def self.start(app, given_options = nil)
  options.merge!(given_options) if given_options

  handler = options[:handler].to_s.downcase
  config = { :Host => options[:host], :Port => options[:port] }

  Log.debug "Using #{handler}"

  if respond_to?(method = "start_#{handler}")
    send(method, app, config)
  else
    Rack::Handler.get(handler).run(app, config)
  end
end

.start_ebb(app, config) ⇒ Object

Due to buggy autoload on Ruby 1.8 we have to require ‘ebb’ manually. This most likely happens because autoload doesn’t respect the require of rubygems and uses the C require directly.



54
55
56
57
# File 'lib/innate/adapter.rb', line 54

def self.start_ebb(app, config)
  require 'ebb'
  Rack::Handler.get('ebb').run(app, config)
end

.start_thin(app, config) ⇒ Object

Thin shouldn’t give excessive output, especially not to $stdout



72
73
74
75
76
# File 'lib/innate/adapter.rb', line 72

def self.start_thin(app, config)
  handler = Rack::Handler.get('thin')
  ::Thin::Logging.silent = true
  handler.run(app, config)
end

.start_unicorn(app, config) ⇒ Object

A simple Unicorn wrapper.



79
80
81
82
83
84
85
# File 'lib/innate/adapter.rb', line 79

def self.start_unicorn(app, config)
  require 'unicorn'
  config = {
    :listeners => ["#{config[:Host]}:#{config[:Port]}"]
  }
  ::Unicorn.run(app, config)
end

.start_webrick(app, config) ⇒ Object

We want webrick to use our logger.



60
61
62
63
64
65
66
67
68
69
# File 'lib/innate/adapter.rb', line 60

def self.start_webrick(app, config)
  handler = Rack::Handler.get('webrick')
  config = {
    :BindAddress => config[:Host],
    :Port => config[:Port],
    :Logger => Log,
  }

  handler.run(app, config)
end