Class: Rack::Server
- Inherits:
-
Object
- Object
- Rack::Server
- Defined in:
- lib/rack/server.rb
Defined Under Namespace
Classes: Options
Instance Attribute Summary collapse
Class Method Summary collapse
- .middleware ⇒ Object
-
.start(options = nil) ⇒ Object
Start a new rack server (like running rackup).
Instance Method Summary collapse
- #app ⇒ Object
- #default_options ⇒ Object
-
#initialize(options = nil) ⇒ Server
constructor
Options may include: * :app a rack application to run (overrides :config) * :config a rackup configuration file path to load (.ru) * :environment this selects the middleware that will be wrapped around your application.
- #middleware ⇒ Object
- #server ⇒ Object
- #start ⇒ Object
Constructor Details
#initialize(options = nil) ⇒ Server
Options may include:
-
:app
a rack application to run (overrides :config)
-
:config
a rackup configuration file path to load (.ru)
-
:environment
this selects the middleware that will be wrapped around your application. Default options available are: - development: CommonLogger, ShowExceptions, and Lint - deployment: CommonLogger - none: no extra middleware note: when the server is a cgi server, CommonLogger is not included.
-
:server
choose a specific Rack::Handler, e.g. cgi, fcgi, webrick
-
:daemonize
if true, the server will daemonize itself (fork, detach, etc)
-
:pid
path to write a pid file after daemonize
-
:Host
the host address to bind to (used by supporting Rack::Handler)
-
:Port
the port to bind to (used by supporting Rack::Handler)
-
:AccessLog
webrick acess log options (or supporting Rack::Handler)
-
:debug
turn on debug output ($DEBUG = true)
-
:warn
turn on warnings ($-w = true)
-
:include
add given paths to $LOAD_PATH
-
:require
require the given libraries
144 145 146 147 |
# File 'lib/rack/server.rb', line 144 def initialize( = nil) @options = @app = [:app] if && [:app] end |
Instance Attribute Details
#options ⇒ Object
149 150 151 |
# File 'lib/rack/server.rb', line 149 def @options ||= (ARGV) end |
Class Method Details
.middleware ⇒ Object
176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'lib/rack/server.rb', line 176 def self.middleware @middleware ||= begin m = Hash.new {|h,k| h[k] = []} m["deployment"].concat [ [Rack::ContentLength], [Rack::Chunked], lambda { |server| server.server.name =~ /CGI/ ? nil : [Rack::CommonLogger, $stderr] } ] m["development"].concat m["deployment"] + [[Rack::ShowExceptions], [Rack::Lint]] m end end |
.start(options = nil) ⇒ Object
Start a new rack server (like running rackup). This will parse ARGV and provide standard ARGV rackup options, defaulting to load ‘config.ru’.
Providing an options hash will prevent ARGV parsing and will not include any default options.
This method can be used to very easily launch a CGI application, for example:
Rack::Server.start(
:app => lambda do |e|
[200, {'Content-Type' => 'text/html'}, ['hello world']]
end,
:server => 'cgi'
)
Further options available here are documented on Rack::Server#initialize
106 107 108 |
# File 'lib/rack/server.rb', line 106 def self.start( = nil) new().start end |
Instance Method Details
#app ⇒ Object
164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/rack/server.rb', line 164 def app @app ||= begin if !::File.exist? [:config] abort "configuration #{[:config]} not found" end app, = Rack::Builder.parse_file(self.[:config], opt_parser) self..merge! app end end |
#default_options ⇒ Object
153 154 155 156 157 158 159 160 161 162 |
# File 'lib/rack/server.rb', line 153 def { :environment => ENV['RACK_ENV'] || "development", :pid => nil, :Port => 9292, :Host => "0.0.0.0", :AccessLog => [], :config => "config.ru" } end |
#middleware ⇒ Object
191 192 193 |
# File 'lib/rack/server.rb', line 191 def middleware self.class.middleware end |
#server ⇒ Object
234 235 236 |
# File 'lib/rack/server.rb', line 234 def server @_server ||= Rack::Handler.get([:server]) || Rack::Handler.default() end |
#start ⇒ Object
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'lib/rack/server.rb', line 195 def start if [:warn] $-w = true end if includes = [:include] $LOAD_PATH.unshift(*includes) end if library = [:require] require library end if [:debug] $DEBUG = true require 'pp' p [:server] pp wrapped_app pp app end # Touch the wrapped app, so that the config.ru is loaded before # daemonization (i.e. before chdir, etc). wrapped_app daemonize_app if [:daemonize] write_pid if [:pid] trap(:INT) do if server.respond_to?(:shutdown) server.shutdown else exit end end server.run wrapped_app, end |