Make launchers __END__-aware
[unicorn.git] / bin / unicorn
blobcfc81daf025f19d77b38f6a99993df21f54cac15
1 #!/home/ew/bin/ruby
2 require 'unicorn/launcher'
3 require 'optparse'
5 env = "development"
6 daemonize = false
7 listeners = []
8 options = { :listeners => listeners }
9 host, port = Unicorn::Const::DEFAULT_HOST, Unicorn::Const::DEFAULT_PORT
10 set_listener = false
12 opts = OptionParser.new("", 24, ' ') do |opts|
13 opts.banner = "Usage: #{File.basename($0)} " \
14 "[ruby options] [unicorn options] [rackup config file]"
16 opts.separator "Ruby options:"
18 lineno = 1
19 opts.on("-e", "--eval LINE", "evaluate a LINE of code") do |line|
20 eval line, TOPLEVEL_BINDING, "-e", lineno
21 lineno += 1
22 end
24 opts.on("-d", "--debug", "set debugging flags (set $DEBUG to true)") do
25 $DEBUG = true
26 end
28 opts.on("-w", "--warn", "turn warnings on for your script") do
29 $-w = true
30 end
32 opts.on("-I", "--include PATH",
33 "specify $LOAD_PATH (may be used more than once)") do |path|
34 $LOAD_PATH.unshift(*path.split(/:/))
35 end
37 opts.on("-r", "--require LIBRARY",
38 "require the library, before executing your script") do |library|
39 require library
40 end
42 opts.separator "Unicorn options:"
44 # some of these switches exist for rackup command-line compatibility,
46 opts.on("-o", "--host HOST",
47 "listen on HOST (default: #{Unicorn::Const::DEFAULT_HOST})") do |h|
48 host = h
49 set_listener = true
50 end
52 opts.on("-p", "--port PORT",
53 "use PORT (default: #{Unicorn::Const::DEFAULT_PORT})") do |p|
54 port = p.to_i
55 set_listener = true
56 end
58 opts.on("-E", "--env ENVIRONMENT",
59 "use ENVIRONMENT for defaults (default: development)") do |e|
60 env = e
61 end
63 opts.on("-D", "--daemonize", "run daemonized in the background") do |d|
64 daemonize = d ? true : false
65 end
67 opts.on("-P", "--pid FILE", "file to store PID (default: none)") do |f|
68 options[:pid] = File.expand_path(f)
69 end
71 opts.on("-s", "--server SERVER",
72 "this flag only exists for compatibility") do |s|
73 warn "-s/--server only exists for compatibility with rackup"
74 end
76 # Unicorn-specific stuff
77 opts.on("-l", "--listen {HOST:PORT|PATH}",
78 "listen on HOST:PORT or PATH",
79 "this may be specified multiple times",
80 "(default: #{Unicorn::Const::DEFAULT_LISTEN})") do |address|
81 listeners << address
82 end
84 opts.on("-c", "--config-file FILE", "Unicorn-specific config file") do |f|
85 options[:config_file] = File.expand_path(f)
86 end
88 # I'm avoiding Unicorn-specific config options on the command-line.
89 # IMNSHO, config options on the command-line are redundant given
90 # config files and make things unnecessarily complicated with multiple
91 # places to look for a config option.
93 opts.separator "Common options:"
95 opts.on_tail("-h", "--help", "Show this message") do
96 puts opts
97 exit
98 end
100 opts.on_tail("-v", "--version", "Show version") do
101 puts "unicorn v#{Unicorn::Const::UNICORN_VERSION}"
102 exit
105 opts.parse! ARGV
108 config = ARGV[0] || "config.ru"
109 abort "configuration file #{config} not found" unless File.exist?(config)
111 if config =~ /\.ru$/
112 # parse embedded command-line options in config.ru comments
113 if File.open(config, "rb") { |fp| fp.sysread(fp.stat.size) } =~ /^#\\(.*)/
114 opts.parse! $1.split(/\s+/)
118 require 'pp' if $DEBUG
120 app = lambda do ||
121 # require Rack as late as possible in case $LOAD_PATH is modified
122 # in config.ru or command-line
123 require 'rack'
124 inner_app = case config
125 when /\.ru$/
126 raw = File.open(config, "rb") { |fp| fp.sysread(fp.stat.size) }
127 raw.sub!(/^__END__\n.*/, '')
128 eval("Rack::Builder.new {(#{raw}\n)}.to_app", nil, config)
129 else
130 require config
131 Object.const_get(File.basename(config, '.rb').capitalize)
133 pp({ :inner_app => inner_app }) if $DEBUG
134 case env
135 when "development"
136 Rack::Builder.new do
137 use Rack::CommonLogger, $stderr
138 use Rack::ShowExceptions
139 use Rack::Lint
140 run inner_app
141 end.to_app
142 when "deployment"
143 Rack::Builder.new do
144 use Rack::CommonLogger, $stderr
145 run inner_app
146 end.to_app
147 else
148 inner_app
152 listeners << "#{host}:#{port}" if set_listener
154 if $DEBUG
155 pp({
156 :unicorn_options => options,
157 :app => app,
158 :daemonize => daemonize,
162 Unicorn::Launcher.daemonize! if daemonize
163 Unicorn.run(app, options)