junov@chromium.org | ef76060 | 2012-06-27 20:03:16 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkChecksum_DEFINED |
| 9 | #define SkChecksum_DEFINED |
| 10 | |
Ben Wagner | d5148e3 | 2018-07-16 17:44:06 -0400 | [diff] [blame] | 11 | #include "../private/SkNoncopyable.h" |
mtklein | 02f46cf | 2015-03-20 13:48:42 -0700 | [diff] [blame] | 12 | #include "SkString.h" |
| 13 | #include "SkTLogic.h" |
junov@chromium.org | ef76060 | 2012-06-27 20:03:16 +0000 | [diff] [blame] | 14 | #include "SkTypes.h" |
| 15 | |
mtklein | 4e97607 | 2016-08-08 09:06:27 -0700 | [diff] [blame] | 16 | // #include "SkOpts.h" |
| 17 | // It's sort of pesky to be able to include SkOpts.h here, so we'll just re-declare what we need. |
| 18 | namespace SkOpts { |
| 19 | extern uint32_t (*hash_fn)(const void*, size_t, uint32_t); |
| 20 | } |
| 21 | |
reed@google.com | 88db9ef | 2012-07-03 19:44:20 +0000 | [diff] [blame] | 22 | class SkChecksum : SkNoncopyable { |
reed@google.com | 88db9ef | 2012-07-03 19:44:20 +0000 | [diff] [blame] | 23 | public: |
mtklein | 67a3271 | 2014-07-10 06:03:46 -0700 | [diff] [blame] | 24 | /** |
| 25 | * uint32_t -> uint32_t hash, useful for when you're about to trucate this hash but you |
| 26 | * suspect its low bits aren't well mixed. |
| 27 | * |
| 28 | * This is the Murmur3 finalizer. |
| 29 | */ |
| 30 | static uint32_t Mix(uint32_t hash) { |
| 31 | hash ^= hash >> 16; |
| 32 | hash *= 0x85ebca6b; |
| 33 | hash ^= hash >> 13; |
| 34 | hash *= 0xc2b2ae35; |
| 35 | hash ^= hash >> 16; |
| 36 | return hash; |
| 37 | } |
commit-bot@chromium.org | 70d75ca | 2013-07-23 20:25:34 +0000 | [diff] [blame] | 38 | |
| 39 | /** |
reed | 40dab98 | 2015-01-28 13:28:53 -0800 | [diff] [blame] | 40 | * uint32_t -> uint32_t hash, useful for when you're about to trucate this hash but you |
| 41 | * suspect its low bits aren't well mixed. |
| 42 | * |
| 43 | * This version is 2-lines cheaper than Mix, but seems to be sufficient for the font cache. |
| 44 | */ |
| 45 | static uint32_t CheapMix(uint32_t hash) { |
| 46 | hash ^= hash >> 16; |
| 47 | hash *= 0x85ebca6b; |
| 48 | hash ^= hash >> 16; |
| 49 | return hash; |
| 50 | } |
reed@google.com | 88db9ef | 2012-07-03 19:44:20 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
mtklein | 02f46cf | 2015-03-20 13:48:42 -0700 | [diff] [blame] | 53 | // SkGoodHash should usually be your first choice in hashing data. |
| 54 | // It should be both reasonably fast and high quality. |
mtklein | c8d1dd4 | 2015-10-15 12:23:01 -0700 | [diff] [blame] | 55 | struct SkGoodHash { |
| 56 | template <typename K> |
| 57 | SK_WHEN(sizeof(K) == 4, uint32_t) operator()(const K& k) const { |
mtklein | 02f46cf | 2015-03-20 13:48:42 -0700 | [diff] [blame] | 58 | return SkChecksum::Mix(*(const uint32_t*)&k); |
| 59 | } |
mtklein | 02f46cf | 2015-03-20 13:48:42 -0700 | [diff] [blame] | 60 | |
mtklein | c8d1dd4 | 2015-10-15 12:23:01 -0700 | [diff] [blame] | 61 | template <typename K> |
| 62 | SK_WHEN(sizeof(K) != 4, uint32_t) operator()(const K& k) const { |
mtklein | 4e97607 | 2016-08-08 09:06:27 -0700 | [diff] [blame] | 63 | return SkOpts::hash_fn(&k, sizeof(K), 0); |
mtklein | c8d1dd4 | 2015-10-15 12:23:01 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | uint32_t operator()(const SkString& k) const { |
mtklein | 4e97607 | 2016-08-08 09:06:27 -0700 | [diff] [blame] | 67 | return SkOpts::hash_fn(k.c_str(), k.size(), 0); |
mtklein | c8d1dd4 | 2015-10-15 12:23:01 -0700 | [diff] [blame] | 68 | } |
| 69 | }; |
mtklein | 02f46cf | 2015-03-20 13:48:42 -0700 | [diff] [blame] | 70 | |
robertphillips@google.com | fffc8d0 | 2012-06-28 00:29:23 +0000 | [diff] [blame] | 71 | #endif |