Sha256: 8d19bb9946218cf385c580626a9769095615428e938ca9a8ac237e5adf73a6d3

Contents?: true

Size: 1.21 KB

Versions: 34

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Bit < Type::Value # :nodoc:
          def type
            :bit
          end

          def cast_value(value)
            if ::String === value
              case value
              when /^0x/i
                value[2..-1].hex.to_s(2) # Hexadecimal notation
              else
                value                    # Bit-string notation
              end
            else
              value.to_s
            end
          end

          def serialize(value)
            Data.new(super) if value
          end

          class Data
            def initialize(value)
              @value = value
            end

            def to_s
              value
            end

            def binary?
              /\A[01]*\Z/.match?(value)
            end

            def hex?
              /\A[0-9A-F]*\Z/i.match?(value)
            end

            # TODO Change this to private once we've dropped Ruby 2.2 support.
            # Workaround for Ruby 2.2 "private attribute?" warning.
            protected

              attr_reader :value
          end
        end
      end
    end
  end
end

Version data entries

34 entries across 34 versions & 4 rubygems

Version Path
activerecord-5.2.8.1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.8 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.7.1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.7 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.6.3 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.6.2 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.6.1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.6 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.4.6 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.5 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.4.5 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.4.4 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.4.3 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.4.2 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.4.1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.4 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.4.rc1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
spiral_form-0.1.1 vendor/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/postgresql/oid/bit.rb
spiral_form-0.1.0 vendor/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-5.2.3 lib/active_record/connection_adapters/postgresql/oid/bit.rb