Sha256: 58398db385c487a55d1374af70c4c7fe84eb5a9550639fbcbb95e1101f998513

Contents?: true

Size: 1.45 KB

Versions: 31

Compression:

Stored size: 1.45 KB

Contents

# encoding: ascii-8bit
# 
# 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.
#

# Very very simple implementation of wrapping two objects, one with a #read
# method and one with a #write method, into a transport for thrift.
#
# Assumes both objects are open, remain open, don't require flushing, etc.
#
module Thrift
  class IOStreamTransport < BaseTransport
    def initialize(input, output)
      @input = input
      @output = output
    end

    def open?; not @input.closed? or not @output.closed? end
    def read(sz); @input.read(sz) end
    def write(buf); @output.write(Bytes.force_binary_encoding(buf)) end
    def close; @input.close; @output.close end
    def to_io; @input end # we're assuming this is used in a IO.select for reading
  end
end

Version data entries

31 entries across 31 versions & 7 rubygems

Version Path
upfluence-thrift-2.6.8 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-2.6.1 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-2.4.4 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-2.3.1 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-2.3.0 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-2.2.0 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-2.1.1 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.1.0 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.12 lib/thrift/transport/io_stream_transport.rb
thrift-0.11.0.0 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.11 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.10 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.9 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.8 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.7 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.6 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.5 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.4 lib/thrift/transport/io_stream_transport.rb
thrift-0.10.0.0 lib/thrift/transport/io_stream_transport.rb
upfluence-thrift-1.0.3 lib/thrift/transport/io_stream_transport.rb