Sha256: 287d5328e6291d8d7d7afc193098e2ad09d01cc5bdd4c3a48ca550126d6ea8e2

Contents?: true

Size: 862 Bytes

Versions: 36

Compression:

Stored size: 862 Bytes

Contents

# encoding: UTF-8
module Yajl
  module Gzip
    # This is a wrapper around Zlib::GzipReader to allow it's #read method to adhere
    # to the IO spec, allowing for two parameters (length, and buffer)
    class StreamReader < ::Zlib::GzipReader
      
      # Wrapper method to allow use similar to IO#read
      def read(len=nil, buffer=nil)
        unless buffer.nil?
          buffer.replace super(len)
          return buffer
        end
        super(len)
      end
      
      # Helper method for one-off parsing from a gzip-compressed stream
      #
      # See Yajl::Parser#parse for parameter documentation
      def self.parse(input, options={}, buffer_size=nil, &block)
        if input.is_a?(String)
          input = StringIO.new(input)
        end
        Yajl::Parser.new(options).parse(new(input), buffer_size, &block)
      end
    end
  end
end

Version data entries

36 entries across 36 versions & 5 rubygems

Version Path
brianmario-yajl-ruby-0.5.10 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.11 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.12 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.3 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.4 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.5 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.6 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.7 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.8 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.5.9 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.6.0 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.6.1 lib/yajl/gzip/stream_reader.rb
brianmario-yajl-ruby-0.6.3 lib/yajl/gzip/stream_reader.rb
jdg-yajl-ruby-0.5.12 lib/yajl/gzip/stream_reader.rb
oortle-yajl-ruby-0.5.8 lib/yajl/gzip/stream_reader.rb
yajl-ruby-0.7.1 lib/yajl/gzip/stream_reader.rb
yajl-ruby-0.7.0 lib/yajl/gzip/stream_reader.rb
yajl-ruby-0.6.9 lib/yajl/gzip/stream_reader.rb
yajl-ruby-0.6.8 lib/yajl/gzip/stream_reader.rb
yajl-ruby-0.6.7 lib/yajl/gzip/stream_reader.rb