Sha256: 01d773134ac9bcf7edb212728ea21865efd2a06a1a9916740653910ea0f8bc6f

Contents?: true

Size: 717 Bytes

Versions: 2

Compression:

Stored size: 717 Bytes

Contents

# frozen_string_literal: true

module ActiveUxid
  class Ulid < ActiveUxid::Base

    def initialize; end

    def self.encode
      klass = new
      klass.uxid_encode
    end

    def uxid_encode
      (1..ENCODING_LENGTH).reduce('') do |str, num|
        shift = 128 - 5 * num
        "#{str}#{ENCODING_CHARS[(uxid_octect >> shift) & 0x1f]}"
      end
    end

    def uxid_bytes
      "#{uxid_unixtime_48bit}#{SecureRandom.random_bytes(10)}"
    end

    def uxid_octect
      (hi, lo) = uxid_bytes.unpack('Q>Q>')
      (hi << 64) | lo
    end

    def uxid_unixtime_flex
      (Time.current.to_f * 10_000).to_i
    end

    def uxid_unixtime_48bit
      [uxid_unixtime_flex].pack('Q>')[2..-1]
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_uxid-1.0.5 lib/active_uxid/ulid.rb
active_uxid-1.0.4 lib/active_uxid/ulid.rb