Class: Rack::Handler::Trinidad
- Inherits:
-
Servlet
- Object
- Servlet
- Rack::Handler::Trinidad
- Defined in:
- lib/rack/handler/trinidad.rb
Class Method Summary collapse
- .create_servlet(app) ⇒ Object
- .parse_options(options = {}) ⇒ Object
- .run(app, options = {}) {|server| ... } ⇒ Object
- .valid_options ⇒ Object
Class Method Details
.create_servlet(app) ⇒ Object
47 48 49 50 51 |
# File 'lib/rack/handler/trinidad.rb', line 47 def self.create_servlet(app) context = org.jruby.rack..Context.new('Trinidad') dispatcher = org.jruby.rack..Dispatcher.new(context, self.new(app)) org.jruby.rack..Servlet.new(dispatcher, context) end |
.parse_options(options = {}) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/rack/handler/trinidad.rb', line 30 def self.( = {}) # some libs use :Port, :port and :Host, :host, unify this opts = {} .each { |k, v| opts[k.to_s.downcase.to_sym] = v } # this is rack's configuration file but also the trinidad's configuration. # Removing it we allow to load trinidad's default configuration. opts.delete(:config) threads = (opts[:threads] || '1:1').split(':') opts[:port] ||= 3000 opts[:address] ||= opts[:host] || 'localhost' # NOTE: this is currently not supported by embedded Dispatcher and has no effect : opts[:jruby_min_runtimes], opts[:jruby_max_runtimes] = threads[0].to_i, threads[1].to_i opts end |
.run(app, options = {}) {|server| ... } ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'lib/rack/handler/trinidad.rb', line 12 def self.run(app, ={}) opts = () opts[:rack_servlet] = create_servlet(app) ::Trinidad::CommandLineParser.load(opts) server = ::Trinidad::Server.new yield server if block_given? server.start end |
.valid_options ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/rack/handler/trinidad.rb', line 22 def self. { "Host=HOST" => "Hostname to listen on (default: localhost)", "Port=PORT" => "Port to listen on (default: 8080)", #"Threads=MIN:MAX" => "min:max runtimes to use (default 1:1, threadsafe)", } end |