src/hashkit: apply clang-format
[awesomized/libmemcached] / src / libhashkit / str_algorithm.cc
1 /*
2 +--------------------------------------------------------------------+
3 | libmemcached - C/C++ Client Library for memcached |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted under the terms of the BSD license. |
7 | You should have received a copy of the license in a bundled file |
8 | named LICENSE; in case you did not receive a copy you can review |
9 | the terms online at: https://opensource.org/licenses/BSD-3-Clause |
10 +--------------------------------------------------------------------+
11 | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ |
12 | Copyright (c) 2020 Michael Wallner <mike@php.net> |
13 +--------------------------------------------------------------------+
14 */
15
16 #include "libhashkit/common.h"
17
18 const char *libhashkit_string_hash(hashkit_hash_algorithm_t type) {
19 switch (type) {
20 case HASHKIT_HASH_DEFAULT: return "DEFAULT";
21 case HASHKIT_HASH_MD5: return "MD5";
22 case HASHKIT_HASH_CRC: return "CRC";
23 case HASHKIT_HASH_FNV1_64: return "FNV1_64";
24 case HASHKIT_HASH_FNV1A_64: return "FNV1A_64";
25 case HASHKIT_HASH_FNV1_32: return "FNV1_32";
26 case HASHKIT_HASH_FNV1A_32: return "FNV1A_32";
27 case HASHKIT_HASH_HSIEH: return "HSIEH";
28 case HASHKIT_HASH_MURMUR: return "MURMUR";
29 case HASHKIT_HASH_MURMUR3: return "MURMUR3";
30 case HASHKIT_HASH_JENKINS: return "JENKINS";
31 case HASHKIT_HASH_CUSTOM: return "CUSTOM";
32 default:
33 case HASHKIT_HASH_MAX: return "INVALID";
34 }
35 }