Module: CityHash::Internal
- Defined in:
- lib/city_hash.rb
Constant Summary collapse
- K0 =
Some primes between 2^63 and 2^64 for various uses
0xc3a5c85c97cb3127
- K1 =
0xb492b66fbe98f273
- K2 =
0x9ae16a3b2f90404f
- K3 =
0xc949d7c7509e6557
Class Method Summary collapse
-
._weakHashLen32WithSeeds(w, x, y, z, a, b) ⇒ Object
Return a 16-byte hash for 48 bytes.
-
.bytes(s) ⇒ Object
Return the hex-equivalent of byte-string.
-
.cityMurmur(s, seed) ⇒ Object
A subroutine for CityHash128().
- .hash128(s) ⇒ Object
-
.hash128To64(x) ⇒ Object
Hash 128 input bits down to 64 bits of output.
- .hash128WithSeed(s, seed) ⇒ Object
-
.hash64(s) ⇒ Object
Internal interface routines for CityHash module.
- .hash64WithSeed(s, seed) ⇒ Object
- .hash64WithSeeds(s, seed0, seed1) ⇒ Object
- .hashLen0To16(s) ⇒ Object
- .hashLen16(u, v) ⇒ Object
-
.hashLen17To32(s) ⇒ Object
This probably works well for 16-byte strings as well, but it may be overkill in that case.
-
.hashLen33To64(s) ⇒ Object
Return an 8-byte hash for 33 to 64 bytes.
- .hashLenAbove64(s) ⇒ Object
- .higher64(x) ⇒ Object
- .lower32(x) ⇒ Object
- .lower64(x) ⇒ Object
-
.rotate(val, shift) ⇒ Object
Bitwise right rotate.
-
.rotateByAtleast1(val, shift) ⇒ Object
Equivalent to rotate(…), but requires the second arg to be non-zero.
- .shiftMix(val) ⇒ Object
-
.weakHashLen32WithSeeds(s, a, b) ⇒ Object
Return a 16-byte hash for s …
Class Method Details
._weakHashLen32WithSeeds(w, x, y, z, a, b) ⇒ Object
Return a 16-byte hash for 48 bytes. Quick and dirty. Callers do best to use “random-looking” values for a and b.
113 114 115 116 117 118 119 120 121 |
# File 'lib/city_hash.rb', line 113 def self._weakHashLen32WithSeeds(w, x, y, z, a, b) a += w b = rotate(lower64(b+a+z), 21) c = a a += x a = lower64(a+y) b += rotate(a, 44) lower64(a+z) << 64 | lower64(b+c) end |
.bytes(s) ⇒ Object
Return the hex-equivalent of byte-string
38 39 40 41 42 43 44 45 |
# File 'lib/city_hash.rb', line 38 def self.bytes(s) h = 0x0 s.reverse.bytes do |b| h <<= 8 h |= b end h end |
.cityMurmur(s, seed) ⇒ Object
A subroutine for CityHash128(). Returns a decent 128-bit hash for strings of any length representable in ssize_t. Based on City and Murmur.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# File 'lib/city_hash.rb', line 196 def self.cityMurmur(s, seed) len = s.length a = lower64(seed) b = higher64(seed) c,d = 0, 0 l = s.length - 16 if l <=0 then a = lower64(shiftMix(lower64(a * K1)) * K1) c = lower64(b*K1 + hashLen0To16(s)) d = shiftMix(lower64(a + (len >=8 ? bytes(s[0..7]) : c))) else c = hashLen16(lower64(bytes(s[-8..-1]) + K1), a) d = hashLen16(lower64(b+len), lower64(c + bytes(s[-16..-9]))) a = lower64(a+d) begin a ^= lower64(shiftMix(lower64(bytes(s[0..7]) * K1)) * K1) a = lower64(a*K1) b ^= a c ^= lower64(shiftMix(lower64(bytes(s[8..15]) * K1)) * K1) c = lower64(c*K1) d ^= c s = s[16..-1] l -= 16 end while l > 0 end a = hashLen16(a, c) b = hashLen16(d, b) ((a^b) << 64) | hashLen16(b, a) end |
.hash128(s) ⇒ Object
317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'lib/city_hash.rb', line 317 def self.hash128(s) len = s.length if len >=16 seed = ((bytes(s[8..15]) << 64) | (bytes(s[0..7]) ^ K3)) return hash128WithSeed(s[16..-1], seed) elsif len >= 8 seed = (bytes(s[-8..-1]) ^ K1) << 64 seed |= (bytes(s[0..7]) ^ lower64(len*K0)) return hash128WithSeed("", seed) else return hash128WithSeed(s, (K1<<64) | K0) end end |
.hash128To64(x) ⇒ Object
Hash 128 input bits down to 64 bits of output. This is intended to be a reasonably good hash function.
49 50 51 52 53 54 55 56 57 58 |
# File 'lib/city_hash.rb', line 49 def self.hash128To64(x) # Murmur-inspired hashing. kMul = 0x9ddfea08eb382d69 a = lower64((lower64(x) ^ higher64(x)) * kMul) a ^= (a >> 47) b = lower64((higher64(x) ^ a) * kMul) b ^= (b >> 47) b = b * kMul lower64(b) end |
.hash128WithSeed(s, seed) ⇒ Object
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'lib/city_hash.rb', line 226 def self.hash128WithSeed(s, seed) # Create a copy of the input string orig_s = String.new(s) len = s.length return cityMurmur(s, seed) if len < 128 # We expect len >= 128 to be the common case. Keep 56 bytes of state: # v, w, x, y, and z. x = lower64(seed) y = higher64(seed) z = lower64(len * K1) vf = lower64(lower64(rotate(y ^ K1, 49) * K1) + bytes(s[0..7])) vs = lower64(lower64(rotate(vf, 42) * K1) + bytes(s[8..15])) wf = lower64(lower64(rotate(lower64(y+z), 35) * K1) + x) ws = lower64(rotate(lower64(x + bytes(s[88..95])), 53) * K1) v = (vf << 64) | vs w = (wf << 64) | ws # This is the same inner loop as CityHash64(), manually unrolled. begin x = lower64(rotate(lower64(x + y + vf + bytes(s[16..23])), 37) * K1) y = lower64(rotate(lower64(y + vs + bytes(s[48..55])), 42) * K1) x ^= ws y ^= vf z = rotate(z ^ wf, 33) v = weakHashLen32WithSeeds(s, lower64(vs * K1), lower64(x+wf)) w = weakHashLen32WithSeeds(s[32..-1], lower64(z+ws), y) vf, vs = higher64(v), lower64(v) wf, ws = higher64(w), lower64(w) z,x = x,z s = s[64..-1] x = lower64(rotate(lower64(x + y + vf + bytes(s[16..23])), 37) * K1) y = lower64(rotate(lower64(y + vs + bytes(s[48..55])), 42) * K1) x ^= ws y ^= vf z = rotate(z ^ wf, 33) v = weakHashLen32WithSeeds(s, lower64(vs * K1), lower64(x+wf)) w = weakHashLen32WithSeeds(s[32..-1], lower64(z+ws), y) vf, vs = higher64(v), lower64(v) wf, ws = higher64(w), lower64(w) z,x = x,z s = s[64..-1] len -= 128 end while len >= 128 y = lower64(y + rotate(wf, 37) * K0 + z) x = lower64(x + rotate(lower64(vf + z), 49) * K0) # If 0 < len < 128, hash up to 4 chunks of 32 bytes each from the end of s. tail_done = 0 while tail_done < len do tail_done += 32 y = lower64(rotate(lower64(y-x), 42) * K0 + vs) wf = lower64(wf + bytes(orig_s[16-tail_done..23-tail_done])) x = lower64(rotate(x, 49) * K0 + wf) wf = lower64(wf + vf) v = weakHashLen32WithSeeds(orig_s[-tail_done..-1], vf, vs) vf, vs = higher64(v), lower64(v) end # At this point our 48 bytes of state should contain more than # enough information for a strong 128-bit hash. We use two # different 48-byte-to-8-byte hashes to get a 16-byte final result. x = hashLen16(x, vf) y = hashLen16(y, wf) hf = lower64(hashLen16(lower64(x + vs), ws) + y) hs = lower64(hashLen16(lower64(x + ws), lower64(y + vs))) (hf << 64) | hs end |
.hash64(s) ⇒ Object
Internal interface routines for CityHash module
296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'lib/city_hash.rb', line 296 def self.hash64(s) len = s.length if len <= 16 return hashLen0To16(s) elsif len <= 32 return hashLen17To32(s) elsif len <= 64 return hashLen33To64(s) else return hashLenAbove64(s) end end |
.hash64WithSeed(s, seed) ⇒ Object
309 310 311 |
# File 'lib/city_hash.rb', line 309 def self.hash64WithSeed(s, seed) hash64WithSeeds(s, K2, seed) end |
.hash64WithSeeds(s, seed0, seed1) ⇒ Object
313 314 315 |
# File 'lib/city_hash.rb', line 313 def self.hash64WithSeeds(s, seed0, seed1) hashLen16(lower64(hash64(s) - seed0), seed1) end |
.hashLen0To16(s) ⇒ Object
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/city_hash.rb', line 80 def self.hashLen0To16(s) len = s.length if len > 8 a = bytes(s[0..7]) b = bytes(s[-8..-1]) return hashLen16(a, rotateByAtleast1(b+len, len)) ^ b elsif len >= 4 a = bytes(s[0..3]) return hashLen16(len + (a << 3), bytes(s[-4..-1])) elsif len > 0 a = bytes(s[0]) b = bytes(s[len >> 1]) c = bytes(s[len-1]) y = lower32(a + (b << 8)) z = len + c*4 return lower64(shiftMix(lower64(y * K2 ^ z * K3)) * K2) end K2 end |
.hashLen16(u, v) ⇒ Object
75 76 77 78 |
# File 'lib/city_hash.rb', line 75 def self.hashLen16(u, v) uv = (v << 64) | u hash128To64(uv) end |
.hashLen17To32(s) ⇒ Object
This probably works well for 16-byte strings as well, but it may be overkill in that case.
102 103 104 105 106 107 108 109 |
# File 'lib/city_hash.rb', line 102 def self.hashLen17To32(s) a = lower64(bytes(s[0..7]) * K1) b = bytes(s[8..15]) c = lower64(bytes(s[-8..-1]) * K2) d = lower64(bytes(s[-16..-9]) * K0) hashLen16(lower64(rotate(lower64(a-b), 43) + rotate(c, 30) + d), lower64(a + rotate(b ^ K3, 20) - c) + s.length) end |
.hashLen33To64(s) ⇒ Object
Return an 8-byte hash for 33 to 64 bytes.
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/city_hash.rb', line 134 def self.hashLen33To64(s) len = s.length z = bytes(s[24..31]) a = bytes(s[0..7]) + (len + bytes(s[-16..-9])) * K0 a = lower64(a) b = rotate(lower64(a+z), 52) c = rotate(a, 37) a = lower64(a+bytes(s[8..15])) c = lower64(c+rotate(a, 7)) a = lower64(a+bytes(s[16..23])) vf = lower64(a+z) vs = lower64(b + rotate(a, 31) + c) a = bytes(s[16..23]) + bytes(s[-32..-25]) z = bytes(s[-8..-1]) b = rotate(lower64(a+z), 52) c = rotate(a, 37) a = lower64(a+bytes(s[-24..-17])) c = lower64(c+rotate(a, 7)) a = lower64(a+bytes(s[-16..-9])) wf = lower64(a+z) ws = lower64(b + rotate(a, 31) + c) r = shiftMix( lower64((vf + ws) * K2 + (wf + vs) * K0) ) lower64( shiftMix(lower64(r*K0+vs)) * K2) end |
.hashLenAbove64(s) ⇒ Object
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/city_hash.rb', line 159 def self.hashLenAbove64(s) len = s.length # For strings over 64 bytes we hash the end first, and then as we # loop we keep 56 bytes of state: v, w, x, y, and z. x = bytes(s[0..7]) y = bytes(s[-16..-9]) ^ K1 z = bytes(s[-56..-49]) ^ K0 v = weakHashLen32WithSeeds(s[-64..-1], len, y) w = weakHashLen32WithSeeds(s[-32..-1], lower64(len*K1), K0) z = lower64(z + shiftMix(lower64(v)) * K1) x = lower64(rotate(lower64(z+x), 39) * K1) y = lower64(rotate(y, 33) * K1) # Decrease len to the nearest multiple of 64, and operate on 64-byte chunks. len = (len - 1) & ~63; begin xrv = lower64(x + y + higher64(v) + bytes(s[16..23])) yrv = lower64(y + lower64(v) + bytes(s[48..55])) x = lower64(rotate(xrv, 37) * K1) y = lower64(rotate(yrv, 42) * K1) x ^= lower64(w) y ^= higher64(v) z = rotate(z ^ higher64(w), 33) v = weakHashLen32WithSeeds(s, lower64(lower64(v) * K1), lower64(x + higher64(w))) w = weakHashLen32WithSeeds(s[32..-1], lower64(z + lower64(w)), y) z, x = x, z s = s[64..-1] len -= 64 end while len != 0 hashLen16(lower64(hashLen16(higher64(v), higher64(w)) + shiftMix(y) * K1 + z), lower64(hashLen16(lower64(v), lower64(w)) + x)) end |
.higher64(x) ⇒ Object
33 34 35 |
# File 'lib/city_hash.rb', line 33 def self.higher64(x) x >> 64 end |
.lower32(x) ⇒ Object
25 26 27 |
# File 'lib/city_hash.rb', line 25 def self.lower32(x) x & 0xffffffff end |
.lower64(x) ⇒ Object
29 30 31 |
# File 'lib/city_hash.rb', line 29 def self.lower64(x) x & 0xffffffffffffffff end |
.rotate(val, shift) ⇒ Object
Bitwise right rotate
61 62 63 64 |
# File 'lib/city_hash.rb', line 61 def self.rotate(val, shift) return val if shift == 0 (val >> shift) | lower64((val << (64-shift))) end |
.rotateByAtleast1(val, shift) ⇒ Object
Equivalent to rotate(…), but requires the second arg to be non-zero.
67 68 69 |
# File 'lib/city_hash.rb', line 67 def self.rotateByAtleast1(val, shift) (val >> shift) | lower64((val << (64-shift))) end |
.shiftMix(val) ⇒ Object
71 72 73 |
# File 'lib/city_hash.rb', line 71 def self.shiftMix(val) lower64(val ^ (val >> 47)) end |
.weakHashLen32WithSeeds(s, a, b) ⇒ Object
124 125 126 127 128 129 130 131 |
# File 'lib/city_hash.rb', line 124 def self.weakHashLen32WithSeeds(s, a, b) _weakHashLen32WithSeeds(bytes(s[0..7]), bytes(s[8..15]), bytes(s[16..23]), bytes(s[24..31]), a, b) end |