Sha256: c3ae1bc08059a7103afd2fd3ec238c072da38dce84c8d09cd649ccfc59881b9d

Contents?: true

Size: 1.51 KB

Versions: 19

Compression:

Stored size: 1.51 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 'rack'
require 'thin'
require 'thrift/server/rack_application'

##
# Wraps the Thin web server to provide a Thrift server over HTTP.
module Thrift
  class ThinHTTPServer < BaseServer

    ##
    # Accepts a Thrift::Processor
    # Options include:
    # * :port
    # * :ip
    # * :path
    # * :protocol_factory
    def initialize(processor, options={})
      port = options[:port] || 80
      ip = options[:ip] || "0.0.0.0"
      path = options[:path] || "/"
      protocol_factory = options[:protocol_factory] || BinaryProtocolFactory.new
      app = RackApplication.for(path, processor, protocol_factory)
      @server = Thin::Server.new(ip, port, app)
    end

    ##
    # Starts the server
    def serve
      @server.start
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
upfluence-thrift-2.6.8 lib/thrift/server/thin_http_server.rb
upfluence-thrift-2.6.1 lib/thrift/server/thin_http_server.rb
upfluence-thrift-2.4.4 lib/thrift/server/thin_http_server.rb
upfluence-thrift-2.3.1 lib/thrift/server/thin_http_server.rb
upfluence-thrift-2.3.0 lib/thrift/server/thin_http_server.rb
upfluence-thrift-2.2.0 lib/thrift/server/thin_http_server.rb
upfluence-thrift-2.1.1 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.1.0 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.12 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.11 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.10 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.9 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.8 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.7 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.6 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.5 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.4 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.3 lib/thrift/server/thin_http_server.rb
upfluence-thrift-1.0.1 lib/thrift/server/thin_http_server.rb