Sha256: 1b6e1cfc68ae69c44c77dfe7d833d706db0eb277f62669b6057137f47e4059d5
Contents?: true
Size: 1.1 KB
Versions: 4
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true module Lite module Uxid class Hash < Lite::Uxid::Base def initialize(id) @id = id super() end class << self def encode(id) klass = new(id) klass.encode end def decode(id) klass = new(id) klass.decode end end def encode encode_chars((@id + encoding_salt) << encoding_length) end def decode (decode_chars(@id) >> encoding_length) - encoding_salt end private def encode_chars(id) return '0' if id.zero? return nil if id.negative? str = '' while id.positive? str = "#{encoding_chars[id % encoding_base]}#{str}" id /= encoding_base end str end def decode_chars(id) pos = 0 num = 0 len = id.length max = len - 1 while pos < len pow = encoding_base**(max - pos) num += encoding_chars.index(id[pos]) * pow pos += 1 end num end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
lite-uxid-1.0.6 | lib/lite/uxid/hash.rb |
lite-uxid-1.0.5 | lib/lite/uxid/hash.rb |
lite-uxid-1.0.4 | lib/lite/uxid/hash.rb |
lite-uxid-1.0.3 | lib/lite/uxid/hash.rb |