1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Support for Camping as a first-class citizen. The postamble is now one or two lines.

git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@85 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
zedshaw 2006-03-07 01:44:24 +00:00
parent 423b87625f
commit 9a1895539d
3 changed files with 69 additions and 47 deletions

View file

@ -267,34 +267,14 @@ def Blog.create
end
if __FILE__ == $0
require 'thread'
class CampingHandler < Mongrel::HttpHandler
def initialize(klass)
@klass = klass
end
def process(request, response)
req = StringIO.new(request.body)
controller = @klass.run(req, request.params)
response.start(controller.status) do |head,out|
controller.headers.each do |k, v|
[*v].each do |vi|
head[k] = vi
end
end
out << controller.body
end
end
end
require 'mongrel/camping'
Blog::Models::Base.establish_connection :adapter => 'sqlite3', :database => 'blog.db'
Blog::Models::Base.logger = Logger.new('camping.log')
Blog::Models::Base.threaded_connections=false
Blog.create
h = Mongrel::HttpServer.new("0.0.0.0", "3000")
puts "** Blog example is running at http://localhost:3000/blog"
h.register("/blog", CampingHandler.new(Blog))
h.register("/favicon.ico", Mongrel::Error404Handler.new(""))
h.run.join
server = Mongrel::Camping::start("0.0.0.0",3002,"/blog",Blog)
puts "** Blog example is running at http://localhost:3002/blog"
server.join
end

View file

@ -135,34 +135,14 @@ def Tepee.create
end
if __FILE__ == $0
require 'thread'
class CampingHandler < Mongrel::HttpHandler
def initialize(klass)
@klass = klass
end
def process(request, response)
req = StringIO.new(request.body)
controller = @klass.run(req, request.params)
response.start(controller.status) do |head,out|
controller.headers.each do |k, v|
[*v].each do |vi|
head[k] = vi
end
end
out << controller.body
end
end
end
require 'mongrel/camping'
Tepee::Models::Base.establish_connection :adapter => 'sqlite3', :database => 'tepee.db'
Tepee::Models::Base.logger = Logger.new('camping.log')
Tepee::Models::Base.threaded_connections=false
Tepee.create
h = Mongrel::HttpServer.new("0.0.0.0", "3000")
server = Mongrel::Camping::start("0.0.0.0",3001,"/tepee",Tepee)
puts "** Tepee example is running at http://localhost:3000/tepee"
h.register("/tepee", CampingHandler.new(Tepee))
h.register("/favicon.ico", Mongrel::Error404Handler.new(""))
h.run.join
server.join
end

62
lib/mongrel/camping.rb Normal file
View file

@ -0,0 +1,62 @@
require 'mongrel'
module Mongrel
# Support for the Camping micro framework at http://camping.rubyforge.org
# This implements the unusually long Postamble that Camping usually
# needs and shrinks it down to just a single line or two.
#
# Your Postamble would now be:
#
# Mongrel::Camping::start("0.0.0.0",3001,"/tepee",Tepee).join
#
# If you wish to get fancier than this then you can use the
# Camping::CampingHandler directly instead and do your own
# wiring:
#
# h = Mongrel::HttpServer.new(server, port)
# h.register(uri, CampingHandler.new(Tepee))
# h.register("/favicon.ico", Mongrel::Error404Handler.new(""))
#
# I add the /favicon.ico since camping apps typically don't
# have them and it's just annoying anyway.
module Camping
# This is a specialized handler for Camping applications
# that has them process the request and then translates
# the results into something the Mongrel::HttpResponse
# needs.
class CampingHandler < Mongrel::HttpHandler
def initialize(klass)
@klass = klass
end
def process(request, response)
req = StringIO.new(request.body)
controller = @klass.run(req, request.params)
response.start(controller.status) do |head,out|
controller.headers.each do |k, v|
[*v].each do |vi|
head[k] = vi
end
end
out << controller.body
end
end
end
# This is a convenience method that wires up a CampingHandler
# for your application on a given port and uri. It's pretty
# much all you need for a camping application to work right.
#
# It returns the server thread which you should either
# join or somehow manage. The thread is running when
# returned.
def Camping.start(server, port, uri, klass)
h = Mongrel::HttpServer.new(server, port)
h.register(uri, CampingHandler.new(klass))
h.register("/favicon.ico", Mongrel::Error404Handler.new(""))
return h.run
end
end
end