Class: Webmachine::Adapters::Rack

Inherits:
Webmachine::Adapter show all
Defined in:
lib/webmachine/adapters/rack.rb

Overview

A minimal “shim” adapter to allow Webmachine to interface with Rack. The intention here is to allow Webmachine to run under Rack-compatible web-servers, like unicorn and pow.

The adapter expects your Webmachine application to be mounted at the root path - it will NOT allow you to nest your Webmachine application at an arbitrary path eg. map “/api” { run MyWebmachineAPI } To use map your Webmachine application at an arbitrary path, use the ‘Webmachine::Adapters::RackMapped` subclass instead.

To use this adapter, create a config.ru file and populate it like so:

require 'webmachine/adapters/rack'

# put your own Webmachine resources in another file:
require 'my/resources'

run MyApplication.adapter

Servers like pow and unicorn will read config.ru by default and it should all “just work”.

And for development or testing your application can be run with Rack’s builtin Server identically to the WEBrick adapter with:

MyApplication.run

Direct Known Subclasses

RackMapped

Defined Under Namespace

Classes: RackRequest, RackResponse, RequestBody

Constant Summary collapse

DEFAULT_OPTIONS =

Used to override default Rack server options (useful in testing)

{}
REQUEST_URI =
'REQUEST_URI'.freeze
VERSION_STRING =
"#{Webmachine::SERVER_STRING} Rack/#{::Rack.version}".freeze
NEWLINE =
"\n".freeze

Instance Attribute Summary

Attributes inherited from Webmachine::Adapter

#application

Instance Method Summary collapse

Methods inherited from Webmachine::Adapter

#initialize, run

Constructor Details

This class inherits a constructor from Webmachine::Adapter

Instance Method Details

#call(env) ⇒ Object

Handles a Rack-based request.

Parameters:

  • env (Hash)

    the Rack environment



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/webmachine/adapters/rack.rb', line 61

def call(env)
  headers = Webmachine::Headers.from_cgi(env)

  rack_req = ::Rack::Request.new env
  request = build_webmachine_request(rack_req, headers)

  response = Webmachine::Response.new
  application.dispatcher.dispatch(request, response)

  response.headers[SERVER] = VERSION_STRING

  rack_status  = response.code
  rack_headers = response.headers.flattened(NEWLINE)
  rack_body = case response.body
              when String # Strings are enumerable in ruby 1.8
                [response.body]
              else
                if (io_body = IO.try_convert(response.body))
                  io_body
                elsif response.body.respond_to?(:call)
                  Webmachine::ChunkedBody.new(Array(response.body.call))
                elsif response.body.respond_to?(:each)
                  # This might be an IOEncoder with a Content-Length, which shouldn't be chunked.
                  if response.headers[TRANSFER_ENCODING] == "chunked"
                    Webmachine::ChunkedBody.new(response.body)
                  else
                    response.body
                  end
                else
                  [response.body.to_s]
                end
              end

  rack_res = RackResponse.new(rack_body, rack_status, rack_headers)
  rack_res.finish
end

#runObject

Start the Rack adapter



48
49
50
51
52
53
54
55
56
57
# File 'lib/webmachine/adapters/rack.rb', line 48

def run
  options = DEFAULT_OPTIONS.merge({
    :app => self,
    :Port => application.configuration.port,
    :Host => application.configuration.ip
  }).merge(application.configuration.adapter_options)

  @server = ::Rack::Server.new(options)
  @server.start
end