# frozen_string_literal: true module HTTPX module Plugins module Compression module Brotli class << self def load_dependencies(klass) require "brotli" klass.plugin(:compression) end def extra_options(options) options.merge(encodings: options.encodings.merge("br" => self)) end end module Deflater module_function def deflate(raw, buffer = "".b, chunk_size: 16_384) while (chunk = raw.read(chunk_size)) compressed = ::Brotli.deflate(chunk) buffer << compressed yield compressed if block_given? end buffer end end class Inflater def initialize(bytesize) @bytesize = bytesize end def inflate(chunk) ::Brotli.inflate(chunk) end end module_function def deflater Deflater end def inflater(bytesize) Inflater.new(bytesize) end end end register_plugin :"compression/brotli", Compression::Brotli end end