gemspec: enable licenses metadata attribute
[unicorn.git] / lib / unicorn.rb
blobd96ff91bbb91a35741c713bb814adbfb988ae19b
1 # -*- encoding: binary -*-
2 require 'fcntl'
3 require 'etc'
4 require 'stringio'
5 require 'rack'
6 require 'kgio'
8 # :stopdoc:
9 # Unicorn module containing all of the classes (include C extensions) for
10 # running a Unicorn web server.  It contains a minimalist HTTP server with just
11 # enough functionality to service web application requests fast as possible.
12 # :startdoc:
14 # \Unicorn exposes very little of an user-visible API and most of its
15 # internals are subject to change.  \Unicorn is designed to host Rack
16 # applications, so applications should be written against the Rack SPEC
17 # and not \Unicorn internals.
18 module Unicorn
20   # Raised inside TeeInput when a client closes the socket inside the
21   # application dispatch.  This is always raised with an empty backtrace
22   # since there is nothing in the application stack that is responsible
23   # for client shutdowns/disconnects.  This exception is visible to Rack
24   # applications unless PrereadInput middleware is loaded.
25   class ClientShutdown < EOFError
26   end
28   # :stopdoc:
30   # This returns a lambda to pass in as the app, this does not "build" the
31   # app (which we defer based on the outcome of "preload_app" in the
32   # Unicorn config).  The returned lambda will be called when it is
33   # time to build the app.
34   def self.builder(ru, op)
35     # allow Configurator to parse cli switches embedded in the ru file
36     op = Unicorn::Configurator::RACKUP.merge!(:file => ru, :optparse => op)
38     # always called after config file parsing, may be called after forking
39     lambda do ||
40       inner_app = case ru
41       when /\.ru$/
42         raw = File.read(ru)
43         raw.sub!(/^__END__\n.*/, '')
44         eval("Rack::Builder.new {(\n#{raw}\n)}.to_app", TOPLEVEL_BINDING, ru)
45       else
46         require ru
47         Object.const_get(File.basename(ru, '.rb').capitalize)
48       end
50       pp({ :inner_app => inner_app }) if $DEBUG
52       # return value, matches rackup defaults based on env
53       # Unicorn does not support persistent connections, but Rainbows!
54       # and Zbatery both do.  Users accustomed to the Rack::Server default
55       # middlewares will need ContentLength/Chunked middlewares.
56       case ENV["RACK_ENV"]
57       when "development"
58         Rack::Builder.new do
59           use Rack::ContentLength
60           use Rack::Chunked
61           use Rack::CommonLogger, $stderr
62           use Rack::ShowExceptions
63           use Rack::Lint
64           run inner_app
65         end.to_app
66       when "deployment"
67         Rack::Builder.new do
68           use Rack::ContentLength
69           use Rack::Chunked
70           use Rack::CommonLogger, $stderr
71           run inner_app
72         end.to_app
73       else
74         inner_app
75       end
76     end
77   end
79   # returns an array of strings representing TCP listen socket addresses
80   # and Unix domain socket paths.  This is useful for use with
81   # Raindrops::Middleware under Linux: http://raindrops.bogomips.org/
82   def self.listener_names
83     Unicorn::HttpServer::LISTENERS.map do |io|
84       Unicorn::SocketHelper.sock_name(io)
85     end + Unicorn::HttpServer::NEW_LISTENERS
86   end
88   def self.log_error(logger, prefix, exc)
89     message = exc.message
90     message = message.dump if /[[:cntrl:]]/ =~ message
91     logger.error "#{prefix}: #{message} (#{exc.class})"
92     exc.backtrace.each { |line| logger.error(line) }
93   end
94   # :startdoc:
95 end
96 # :enddoc:
97 require 'unicorn/const'
98 require 'unicorn/socket_helper'
99 require 'unicorn/stream_input'
100 require 'unicorn/tee_input'
101 require 'unicorn/http_request'
102 require 'unicorn/configurator'
103 require 'unicorn/tmpio'
104 require 'unicorn/util'
105 require 'unicorn/http_response'
106 require 'unicorn/worker'
107 require 'unicorn/http_server'