1 | /* $Id: strhash.h 93115 2022-01-01 11:31:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Internal header containing inline string hashing functions.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef IPRT_INCLUDED_INTERNAL_strhash_h
|
---|
28 | #define IPRT_INCLUDED_INTERNAL_strhash_h
|
---|
29 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
30 | # pragma once
|
---|
31 | #endif
|
---|
32 |
|
---|
33 | #include <iprt/types.h>
|
---|
34 |
|
---|
35 |
|
---|
36 | /* sdbm:
|
---|
37 | This algorithm was created for sdbm (a public-domain reimplementation of
|
---|
38 | ndbm) database library. it was found to do well in scrambling bits,
|
---|
39 | causing better distribution of the keys and fewer splits. it also happens
|
---|
40 | to be a good general hashing function with good distribution. the actual
|
---|
41 | function is hash(i) = hash(i - 1) * 65599 + str[i]; what is included below
|
---|
42 | is the faster version used in gawk. [there is even a faster, duff-device
|
---|
43 | version] the magic constant 65599 was picked out of thin air while
|
---|
44 | experimenting with different constants, and turns out to be a prime.
|
---|
45 | this is one of the algorithms used in berkeley db (see sleepycat) and
|
---|
46 | elsewhere. */
|
---|
47 |
|
---|
48 | /**
|
---|
49 | * Hash string, return hash + length.
|
---|
50 | */
|
---|
51 | DECLINLINE(uint32_t) sdbm(const char *str, size_t *pcch)
|
---|
52 | {
|
---|
53 | uint8_t *pu8 = (uint8_t *)str;
|
---|
54 | uint32_t hash = 0;
|
---|
55 | int c;
|
---|
56 |
|
---|
57 | while ((c = *pu8++))
|
---|
58 | hash = c + (hash << 6) + (hash << 16) - hash;
|
---|
59 |
|
---|
60 | *pcch = (uintptr_t)pu8 - (uintptr_t)str - 1;
|
---|
61 | return hash;
|
---|
62 | }
|
---|
63 |
|
---|
64 |
|
---|
65 | /**
|
---|
66 | * Hash up to N bytes, return hash + hashed length.
|
---|
67 | */
|
---|
68 | DECLINLINE(uint32_t) sdbmN(const char *str, size_t cchMax, size_t *pcch)
|
---|
69 | {
|
---|
70 | uint8_t *pu8 = (uint8_t *)str;
|
---|
71 | uint32_t hash = 0;
|
---|
72 | int c;
|
---|
73 |
|
---|
74 | while ((c = *pu8++) && cchMax-- > 0)
|
---|
75 | hash = c + (hash << 6) + (hash << 16) - hash;
|
---|
76 |
|
---|
77 | *pcch = (uintptr_t)pu8 - (uintptr_t)str - 1;
|
---|
78 | return hash;
|
---|
79 | }
|
---|
80 |
|
---|
81 |
|
---|
82 | /**
|
---|
83 | * Incremental hashing.
|
---|
84 | */
|
---|
85 | DECLINLINE(uint32_t) sdbmInc(const char *str, uint32_t hash)
|
---|
86 | {
|
---|
87 | uint8_t *pu8 = (uint8_t *)str;
|
---|
88 | int c;
|
---|
89 |
|
---|
90 | while ((c = *pu8++))
|
---|
91 | hash = c + (hash << 6) + (hash << 16) - hash;
|
---|
92 |
|
---|
93 | return hash;
|
---|
94 | }
|
---|
95 |
|
---|
96 | /**
|
---|
97 | * Incremental hashing with length limitation.
|
---|
98 | */
|
---|
99 | DECLINLINE(uint32_t) sdbmIncN(const char *psz, size_t cchMax, uint32_t uHash)
|
---|
100 | {
|
---|
101 | uint8_t *pu8 = (uint8_t *)psz;
|
---|
102 | int c;
|
---|
103 |
|
---|
104 | while ((c = *pu8++) && cchMax-- > 0)
|
---|
105 | uHash = c + (uHash << 6) + (uHash << 16) - uHash;
|
---|
106 |
|
---|
107 | return uHash;
|
---|
108 | }
|
---|
109 |
|
---|
110 |
|
---|
111 | #endif /* !IPRT_INCLUDED_INTERNAL_strhash_h */
|
---|
112 |
|
---|