Sha256: 3a61009e8254a64e14e74d6904bbf1e4de04aae441f3c132f297911cc4af67df

Contents?: true

Size: 1.06 KB

Versions: 153

Compression:

Stored size: 1.06 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

            private
              attr_reader :value
          end
        end
      end
    end
  end
end

Version data entries

153 entries across 148 versions & 12 rubygems

Version Path
activerecord-6.0.2 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.2.rc2 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.2.rc1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.1.rc1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.0 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.0.rc2 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.0.rc1 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.0.beta3 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.0.beta2 lib/active_record/connection_adapters/postgresql/oid/bit.rb
activerecord-6.0.0.beta1 lib/active_record/connection_adapters/postgresql/oid/bit.rb