-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCityHashExtension.cs
140 lines (123 loc) · 6.37 KB
/
CityHashExtension.cs
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
//
// Copyright (c) 2011 Google, Inc.
// Copyright (c) 2014 Gustavo J Knuppe (https://github.com/knuppe)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sub-license, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// CityHash, by Geoff Pike and Jyrki Alakuijala
//
// Ported to C# by Gustavo J Knuppe (https://github.com/knuppe)
//
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// - May you do good and not evil. -
// - May you find forgiveness for yourself and forgive others. -
// - May you share freely, never taking more than you give. -
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
//
// Project site: https://github.com/knuppe/cityhash
// Original code: https://code.google.com/p/cityhash/
//
#if !NET20 // Framework v2.0 does not support extensions
using System;
namespace CityHash {
/// <summary>
/// Provides the CityHash string extensions.
/// </summary>
public static class CityHashExtension {
/// <summary>
/// Computes the 128-bit city hash for the specified string.
/// This algorithm is tuned for strings of at least a few hundred bytes.
/// </summary>
/// <param name="value">The string value.</param>
/// <returns>The 128-bit city hash.</returns>
/// <exception cref="ArgumentNullException">value</exception>
/// <remarks>This function encodes the string using the unicode block (ISO/IEC 8859-1).</remarks>
public static uint128 GetCityHash128(this string value) {
if (value == null)
throw new ArgumentNullException("value");
return CityHash.CityHash128(value);
}
/// <summary>
/// Computes the 128-bit city hash using a specific <paramref name="seed" />.
/// This algorithm is tuned for strings of at least a few hundred bytes.
/// </summary>
/// <param name="value">The string value.</param>
/// <param name="seed">Specifies the seed for the CityHash algorithm.</param>
/// <returns>The 128-bit city hash.</returns>
/// <exception cref="ArgumentNullException">value</exception>
/// <remarks>This function encodes the string using the unicode block (ISO/IEC 8859-1).</remarks>
public static uint128 GetCityHash128(this string value, uint128 seed) {
if (value == null)
throw new ArgumentNullException("value");
return CityHash.CityHash128(value, seed);
}
/// <summary>
/// Computes the 32-bit city hash value for the specified string.
/// </summary>
/// <param name="value">The string to evaluate.</param>
/// <returns>The computed 32-bit CityHash.</returns>
/// <exception cref="System.ArgumentNullException">value</exception>
/// <remarks>This function encodes the string using the unicode block (ISO/IEC 8859-1).</remarks>
public static uint GetCityHash32(this string value) {
if (value == null)
throw new ArgumentNullException("value");
return CityHash.CityHash32(value);
}
/// <summary>
/// Computes the 64-bit city hash value for the specified string.
/// </summary>
/// <param name="value">The string value.</param>
/// <returns>The computed 64-bit CityHash.</returns>
/// <exception cref="System.ArgumentNullException">value</exception>
/// <remarks>This function encodes the string using the unicode block (ISO/IEC 8859-1).</remarks>
public static ulong GetCityHash64(this string value) {
if (value == null)
throw new ArgumentNullException("value");
return CityHash.CityHash64(value);
}
/// <summary>
/// Computes the 64-bit city hash value for the specified string using a specific <paramref name="seed" />.
/// </summary>
/// <param name="value">The string value.</param>
/// <param name="seed">Specifies the seed for the CityHash algorithm.</param>
/// <returns>The computed 64-bit CityHash.</returns>
/// <exception cref="System.ArgumentNullException">value</exception>
/// <remarks>This function encodes the string using the unicode block (ISO/IEC 8859-1).</remarks>
public static ulong GetCityHash64(this string value, ulong seed) {
if (value == null)
throw new ArgumentNullException("value");
return CityHash.CityHash64(value, seed);
}
/// <summary>
/// Computes the 64-bit city hash value for the specified string using a low and high order 64-bit seeds.
/// </summary>
/// <param name="value">The string value.</param>
/// <param name="seed0">The low-order 64-bits seed used by the algorithm.</param>
/// <param name="seed1">The high-order 64-bits seed used by the algorithm.</param>
/// <returns>The computed 64-bit city hash.</returns>
/// <exception cref="System.ArgumentNullException">value</exception>
/// <remarks>This function encodes the string using the unicode block (ISO/IEC 8859-1).</remarks>
public static ulong GetCityHash64(this string value, ulong seed0, ulong seed1) {
if (value == null)
throw new ArgumentNullException("value");
return CityHash.CityHash64(value, seed0, seed1);
}
}
}
#endif