Sha256: 875542ad22854e4c386538abd87b034259e2d3738ab416bc0f07d865aa7ff0a9

Contents?: true

Size: 1.92 KB

Versions: 61

Compression:

Stored size: 1.92 KB

Contents

# 
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
# 
#   http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# 

require 'mongrel'

## Sticks a service on a URL, using mongrel to do the HTTP work
module Thrift
  class MongrelHTTPServer < BaseServer
    class Handler < Mongrel::HttpHandler
      def initialize(processor, protocol_factory)
        @processor = processor
        @protocol_factory = protocol_factory
      end

      def process(request, response)
        if request.params["REQUEST_METHOD"] == "POST"
          response.start(200) do |head, out|
            head["Content-Type"] = "application/x-thrift"
            transport = IOStreamTransport.new request.body, out
            protocol = @protocol_factory.get_protocol transport
            @processor.process protocol, protocol
          end
        else
          response.start(404) { }
        end
      end
    end

    def initialize(processor, opts={})
      port = opts[:port] || 80
      ip = opts[:ip] || "0.0.0.0"
      path = opts[:path] || ""
      protocol_factory = opts[:protocol_factory] || BinaryProtocolFactory.new
      @server = Mongrel::HttpServer.new ip, port
      @server.register "/#{path}", Handler.new(processor, protocol_factory)
    end

    def serve
      @server.run.join
    end
  end
end

Version data entries

61 entries across 61 versions & 10 rubygems

Version Path
evernote-thrift-1.25.2 lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.10 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.11 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.12 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.13 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.14 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.15 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.16 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.17 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.2 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.3 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.4 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.5 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.6 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.7 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
auser-poolparty-1.3.8 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
fairchild-poolparty-1.3.17 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
fairchild-poolparty-1.3.5 vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb
evernote-thrift-1.25.1 lib/thrift/server/mongrel_http_server.rb
thrift-mavericks-0.8.0 lib/thrift/server/mongrel_http_server.rb