Sha256: c1994abdbaacf5b99f8264a56cb0155bd518ef0abcd9b78a383d190d19264033

Contents?: true

Size: 957 Bytes

Versions: 6

Compression:

Stored size: 957 Bytes

Contents

module Fluent
  class S3Input
    class LZOExtractor < Extractor
      S3Input.register_extractor('lzo', self)

      config_param :command_parameter, :string, :default => '-qdc'
      config_param :customer_tmp_dir, :string, :default => Dir.tmpdir

      def configure(conf)
        super
        check_command('lzop', 'LZO')
      end

      def ext
        'lzo'.freeze
      end

      def content_type
        'application/x-lzop'.freeze
      end

      def extract(io)
        path = if io.respond_to?(path)
                 io.path
               else
                 temp = Tempfile.new("lzop-temp")
                 temp.write(io.read)
                 temp.close
                 temp.path
               end

        stdout, succeeded = Open3.capture2("lzop #{@command_parameter} #{path}")
        if succeeded
          stdout
        else
          raise "Failed to extract #{path} with lzop command."
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fluent-plugin-s3-0.8.8 lib/fluent/plugin/s3_extractor_lzo.rb
fluent-plugin-s3-0.8.7 lib/fluent/plugin/s3_extractor_lzo.rb
fluent-plugin-s3-0.8.6 lib/fluent/plugin/s3_extractor_lzo.rb
fluent-plugin-s3-0.8.5 lib/fluent/plugin/s3_extractor_lzo.rb
fluent-plugin-s3-0.8.4 lib/fluent/plugin/s3_extractor_lzo.rb
fluent-plugin-s3-0.8.3 lib/fluent/plugin/s3_extractor_lzo.rb