Sha256: c9e0cc1756932f65095fd5557e2313c59e9c18382e7dd9391bc3fc019f458a09

Contents?: true

Size: 1.19 KB

Versions: 13

Compression:

Stored size: 1.19 KB

Contents

# frozen_string_literal: true

require "forwardable"

module HTTPX::Transcoder
  module Body
    class Error < HTTPX::Error; end

    module_function

    class Encoder
      using HTTPX::ArrayExtensions::Sum
      extend Forwardable

      def_delegator :@raw, :to_s

      def initialize(body)
        @raw = body
      end

      def bytesize
        if @raw.respond_to?(:bytesize)
          @raw.bytesize
        elsif @raw.respond_to?(:to_ary)
          @raw.sum(&:bytesize)
        elsif @raw.respond_to?(:size)
          @raw.size || Float::INFINITY
        elsif @raw.respond_to?(:length)
          @raw.length || Float::INFINITY
        elsif @raw.respond_to?(:each)
          Float::INFINITY
        else
          raise Error, "cannot determine size of body: #{@raw.inspect}"
        end
      end

      def content_type
        "application/octet-stream"
      end

      private

      def respond_to_missing?(meth, *args)
        @raw.respond_to?(meth, *args) || super
      end

      def method_missing(meth, *args, &block)
        return super unless @raw.respond_to?(meth)

        @raw.__send__(meth, *args, &block)
      end
    end

    def encode(body)
      Encoder.new(body)
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
httpx-0.24.7 lib/httpx/transcoder/body.rb
httpx-0.24.6 lib/httpx/transcoder/body.rb
httpx-0.24.5 lib/httpx/transcoder/body.rb
httpx-0.24.4 lib/httpx/transcoder/body.rb
httpx-0.24.3 lib/httpx/transcoder/body.rb
httpx-0.24.2 lib/httpx/transcoder/body.rb
httpx-0.24.1 lib/httpx/transcoder/body.rb
httpx-0.24.0 lib/httpx/transcoder/body.rb
httpx-0.23.4 lib/httpx/transcoder/body.rb
httpx-0.23.3 lib/httpx/transcoder/body.rb
httpx-0.23.2 lib/httpx/transcoder/body.rb
httpx-0.23.1 lib/httpx/transcoder/body.rb
httpx-0.23.0 lib/httpx/transcoder/body.rb