Sha256: dab62ec7e172b2d0cc7ba5733351d7673d6d876a296edd7a573497f44b062bc9

Contents?: true

Size: 1.21 KB

Versions: 10

Compression:

Stored size: 1.21 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
  register "body", Body
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
httpx-0.22.5 lib/httpx/transcoder/body.rb
httpx-0.22.4 lib/httpx/transcoder/body.rb
httpx-0.22.3 lib/httpx/transcoder/body.rb
httpx-0.22.2 lib/httpx/transcoder/body.rb
httpx-0.22.1 lib/httpx/transcoder/body.rb
httpx-0.22.0 lib/httpx/transcoder/body.rb
httpx-0.21.1 lib/httpx/transcoder/body.rb
httpx-0.21.0 lib/httpx/transcoder/body.rb
httpx-0.20.5 lib/httpx/transcoder/body.rb
httpx-0.20.4 lib/httpx/transcoder/body.rb