forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhasher.py
More file actions
71 lines (60 loc) · 2.52 KB
/
hasher.py
File metadata and controls
71 lines (60 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python3
# Copyright (C) 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
# Copyright (C) 2006 Anders Carlsson <andersca@mac.com>
# Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org>
# Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org>
# Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
# Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au>
# Copyright (C) Research In Motion Limited 2010. All rights reserved.
# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
# Copyright (C) 2011 Patrick Gansterer <paroga@webkit.org>
# Copyright (C) 2012 Ericsson AB. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with this library; see the file COPYING.LIB. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
def stringHash(str):
# Implements Paul Hsieh's SuperFastHash - http://www.azillionmonkeys.com/qed/hash.html
# LChar data is interpreted as Latin-1-encoded (zero extended to 16 bits).
stringHashingStartValue = 0x9E3779B9
twoTo32 = 4294967296
hash = stringHashingStartValue
strLength = len(str)
characterPairs = int(strLength / 2)
remainder = strLength & 1
# Main loop
while characterPairs > 0:
hash = hash + ord(str[0])
tmp = (ord(str[1]) << 11) ^ hash
hash = ((hash << 16) % twoTo32) ^ tmp
str = str[2:]
hash = hash + (hash >> 11)
hash = hash % twoTo32
characterPairs = characterPairs - 1
# Handle end case
if remainder:
hash = hash + ord(str[0])
hash = hash ^ ((hash << 11) % twoTo32)
hash = hash + (hash >> 17)
hash = hash ^ (hash << 3)
hash = hash + (hash >> 5)
hash = hash % twoTo32
hash = hash ^ ((hash << 2) % twoTo32)
hash = hash + (hash >> 15)
hash = hash % twoTo32
hash = hash ^ ((hash << 10) % twoTo32)
hash = hash & 0xffffff
if not hash:
hash = 0x800000
return hash