1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
# Copyright (c) 2004, 2005, 2006 Tanaka Akira. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
# OF SUCH DAMAGE.
# = webapp command line interface
#
# A web application using webapp has CLI (command line interface).
# You can invoke a webapp script from command line.
# There are two modes: offline mode and server mode.
# In the offline mode, the script processes a request which is specified as
# a command line arguments.
# In the server mode, the script works as a HTTP server which provides the web
# application.
#
# xxx.cgi [options] [/path_info] [?query_string]
# -h, --help show this message
# -o, --output=FILE set output file
# --cern-meta output header as CERN httpd metafile
# --server-name=STRING set server name
# --server-port=INTEGER set server port number
# --script-name=STRING set script name
# --remote-addr=STRING set remote IP address
# --header=NAME:BODY set additional request header
#
# xxx.cgi server [[hostname:]port]
#
# == offline mode
#
# A webapp script should be invoked as follows in the offline mode.
#
# xxx.cgi [options] [/path_info] [?query_string]
#
# For example, hello.cgi, as follows, can be invoked from command line.
#
# % cat hello.cgi
# #!/usr/bin/env ruby
# require 'webapp'
# WebApp {|w| w.puts "Hello" }
# % ./hello.cgi
# Status: 200 OK
# Content-Type: text/plain
# Content-Length: 6
#
# Hello
#
# webapp.rb can be used in command line directly as follows.
# This document use the form to make examples short.
#
# % ruby -rwebapp -e 'WebApp {|w| w.puts "Hello" }'
# Status: 200 OK
# Content-Type: text/plain
# Content-Length: 6
#
# Hello
#
# The web application takes two optional argument: path info and query string.
# The optional first argument which begins with '/' is path info.
# The optional second argument which begins with '?' is query string.
# Since '?' is a shell meta character, it should be quoted.
#
# % ruby -rwebapp -e '
# WebApp {|w|
# w.puts w.path_info
# w.puts w.query_string
# }' /a '?q'
# Status: 200 OK
# Content-Type: text/plain
# Content-Length: 30
#
# /a
# #<WebApp::QueryString: ?q>
#
# If the option -o is specified, a response is generated on the specified file.
# Note that the format is suitable for Apache mod_asis.
#
# % ruby -rwebapp -e 'WebApp {|w| w.puts "Hello" }' -- -o ~/public_html/hello.asis
# % cat ~/public_html/hello.asis
# Status: 200 OK
# Content-Type: text/plain
# Content-Length: 6
#
# Hello
#
# If the option --cern-meta is specified addition to -o,
# The header in the response is stored in separated file.
# Note that the format is suitable for Apache mod_cern_meta.
#
# % ruby -rwebapp -e 'WebApp {|w| w.puts "Hello" }' -- --cern-meta -o ~/public_html/hello2.txt
# % cat ~/public_html/.web/hello2.txt.meta
# Content-Type: text/plain
# Content-Length: 6
# % cat ~/public_html/hello2.txt
# Hello
#
# The options --server-name, --server-port, --script-name and --remote-addr specifies
# information visible from web application.
# For example, WebApp#server_name returns a server name specified by --server-name.
#
# % ruby -rwebapp -e 'WebApp {|w| w.puts w.server_name }'
# Status: 200 OK
# Content-Type: text/plain
# Content-Length: 10
#
# localhost
# % ruby -rwebapp -e 'WebApp {|w| w.puts w.server_name }' -- --server-name=www.example.org
# Status: 200 OK
# Content-Type: text/plain
# Content-Length: 16
#
# www.example.org
#
# The option --header specifies an additional request header.
# For example, specifying "Accept-Encoding: gzip" makes output gzipped.
#
# % ruby -rwebapp -e 'WebApp {|w| w.puts "Hello"*100 }' -- --header='Accept-Encoding: gzip'|cat -v
# Status: 200 OK
# Content-Type: text/plain
# Content-Encoding: gzip
# Content-Length: 31
#
# ^_M-^K^H^@^O^VM-TA^@^CM-sHM-MM-IM-IM-w^X%F^RM-A^E^@ZTsDM-u^A^@^@
#
# == server mode
#
# A webapp script should be invoked as follows in the server mode.
#
# xxx.cgi server [[hostname:]port]
#
# If _port_ is specified, the server listens the specified port.
# Otherwise, some non-used port is selected.
#
# If _hostname_ is specified, listening socket is bound to the specified hostname.
#
# % ./hello.cgi server
# http://hostname:38846/
# [2005-02-19 10:29:26] INFO WEBrick 1.3.1
# [2005-02-19 10:29:26] INFO ruby 1.9.0 (2005-02-17) [i686-linux]
# [2005-02-19 10:29:26] INFO WEBrick::HTTPServer#start: pid=9280 port=38846
# ...
#
# In the server mode, the web application is located to the root ("/").
# I.e. WebApp#script_name returns "".
#
require 'optparse'
class WebApp
class Manager
# CLI (command line interface)
def run_cli
if ARGV[0] == 'server'
ARGV.shift
run_cli_server
else
run_cli_offline
end
end
def run_cli_server
require 'webrick'
config = {}
case ARGV[0]
when nil
config = {
:Port => TCPServer.open(0) {|s| s.addr[1] }
}
when /:(\d+)\z/
config = {
:ServerName => $`,
:BindAddress => $`,
:Port => $1.to_i
}
when /\A\d+\z/
config = {
:Port => ARGV[0].to_i
}
else
raise ArgumentError, "unexpected port: #{ARGV[0].inspect}"
end
servlet = WEBrick::HTTPServlet::ProcHandler.new(run_webrick)
Thread.current[:webrick_load_servlet] = nil
top_uri = "http://"
top_uri << (config[:BindAddress] || config[:ServerName] || WEBrick::Utils.getservername)
top_uri << ":#{config[:Port]}" if config[:Port] != 80
top_uri << '/'
puts top_uri
httpd = WEBrick::HTTPServer.new(config)
trap(:INT){ httpd.shutdown }
httpd.mount("/", servlet)
httpd.start
exit 0
end
def run_cli_offline
opt_output = '-'
opt_cern_meta = false
opt_server_name = 'localhost'
opt_server_port = 80
opt_script_name = "/#{File.basename($0)}"
opt_remote_addr = '127.0.0.1'
opt_headers = []
ARGV.options {|q|
q.banner = "#{File.basename $0} [options] [/path_info] [?query_string]"
q.def_option('-h', '--help', 'show this message') { puts q; exit(0) }
q.def_option('-o FILE', '--output=FILE', 'set output file') {|arg| opt_output = arg.untaint }
q.def_option('--cern-meta', 'output header as CERN httpd metafile') { opt_cern_meta = true }
q.def_option('--server-name=STRING', 'set server name') {|arg| opt_server_name = arg }
q.def_option('--server-port=INTEGER', 'set server port number') {|arg| opt_server_port = arg.to_i }
q.def_option('--script-name=STRING', 'set script name') {|arg| opt_script_name = arg }
q.def_option('--remote-addr=STRING', 'set remote IP address') {|arg| opt_remote_addr = arg }
q.def_option('--header=NAME:BODY', 'set additional request header') {|arg| opt_headers << arg.split(/:/, 2) }
q.parse!
} or exit(1)
if ARGV[0] && %r{\A/} =~ ARGV[0]
path_info = ARGV.shift
end
if ARGV[0] && %r{\A\?} =~ ARGV[0]
ARGV.shift
query_string = $'
end
if !ARGV.empty?
raise "extra arguments: #{ARGV.inspect[1..-2]}"
end
path_info ||= ''
query_string ||= ''
setup_request = lambda {|req|
req.make_request_header_from_cgi_env({
'REQUEST_METHOD' => 'GET',
'SERVER_NAME' => opt_server_name,
'SERVER_PORT' => opt_server_port,
'SCRIPT_NAME' => opt_script_name,
'PATH_INFO' => path_info,
'QUERY_STRING' => query_string,
'SERVER_PROTOCOL' => 'HTTP/1.0',
'REMOTE_ADDR' => opt_remote_addr,
'CONTENT_TYPE' => ''
})
opt_headers.each {|name, body|
req.header_object.add name, body
}
}
output_response = lambda {|res|
if opt_output == '-'
res.output_cgi_status_field($stdout)
res.output_message($stdout)
else
if opt_cern_meta
dir = "#{File.dirname(opt_output)}/.web"
begin
Dir.mkdir dir
rescue Errno::EEXIST
end
open("#{dir}/#{File.basename(opt_output)}.meta", 'w') {|f|
#res.output_cgi_status_field(f)
res.output_header(f)
}
open(opt_output, 'w') {|f|
res.output_body(f)
}
else
open(opt_output, 'w') {|f|
res.output_cgi_status_field(f)
res.output_message(f)
}
end
end
}
primitive_run(setup_request, output_response)
end
end
end
|