FD.io VPP  v16.06
Vector Packet Processing
mhash.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef included_clib_mhash_h
16 #define included_clib_mhash_h
17 
18 /*
19  Copyright (c) 2010 Eliot Dresselhaus
20 
21  Permission is hereby granted, free of charge, to any person obtaining
22  a copy of this software and associated documentation files (the
23  "Software"), to deal in the Software without restriction, including
24  without limitation the rights to use, copy, modify, merge, publish,
25  distribute, sublicense, and/or sell copies of the Software, and to
26  permit persons to whom the Software is furnished to do so, subject to
27  the following conditions:
28 
29  The above copyright notice and this permission notice shall be
30  included in all copies or substantial portions of the Software.
31 
32  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
33  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
34  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
35  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
36  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
37  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
38  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
39 */
40 
41 #include <vppinfra/format.h>
42 #include <vppinfra/hash.h>
43 #include <vppinfra/heap.h>
44 
45 /* Hash table plus vector of keys. */
46 typedef struct {
47  /* Vector or heap used to store keys. Hash table stores keys as byte
48  offsets into this vector. */
50 
51  /* Byte offsets of free keys in vector (used to store free keys when
52  n_key_bytes > 1). */
54 
56 
57  /* Possibly fixed size of key.
58  0 means keys are vectors of u8's.
59  1 means keys are null terminated c strings. */
60 #define MHASH_VEC_STRING_KEY 0
61 #define MHASH_C_STRING_KEY 1
63 
64  /* Seed value for Jenkins hash. */
66 
67  /* Hash table mapping key -> value. */
69 
70  /* Format function for keys. */
72 } mhash_t;
73 
74 void mhash_init (mhash_t * h, uword n_value_bytes, uword n_key_bytes);
75 
76 always_inline void
77 mhash_init_c_string (mhash_t * h, uword n_value_bytes)
78 { mhash_init (h, n_value_bytes, MHASH_C_STRING_KEY); }
79 
80 always_inline void
81 mhash_init_vec_string (mhash_t * h, uword n_value_bytes)
82 { mhash_init (h, n_value_bytes, MHASH_VEC_STRING_KEY); }
83 
84 always_inline void *
86 {
87  if (key == ~0)
88  {
89  u8 * key_tmp;
90 
91  int my_cpu = os_get_cpu_number();
92  vec_validate(h->key_tmps, my_cpu);
93  key_tmp = h->key_tmps[my_cpu];
94  return key_tmp;
95  }
96  return vec_elt_at_index (h->key_vector_or_heap, key);
97 }
98 
99 hash_pair_t * mhash_get_pair (mhash_t * h, void * key);
100 uword mhash_set_mem (mhash_t * h, void * key, uword * new_value, uword * old_value);
101 uword mhash_unset (mhash_t * h, void * key, uword * old_value);
102 
104 mhash_get (mhash_t * h, void * key)
105 {
106  hash_pair_t * p = mhash_get_pair (h, key);
107  return p ? &p->value[0] : 0;
108 }
109 
111 mhash_set (mhash_t * h, void * key, uword new_value, uword * old_value)
112 { return mhash_set_mem (h, key, &new_value, old_value); }
113 
115 mhash_unset_key (mhash_t * h, uword key, uword * old_value)
116 {
117  void * k = mhash_key_to_mem (h, key);
118  return mhash_unset (h, k, old_value);
119 }
120 
123 {
124  hash_t * h = hash_header (m->hash);
125  return hash_value_bytes (h);
126 }
127 
130 { return hash_elts (m->hash); }
131 
134 { return h->n_key_bytes <= 1; }
135 
136 always_inline void
138 {
139  if (mhash_key_vector_is_heap (h))
141  else
144  hash_free (h->hash);
145 }
146 
147 #define mhash_foreach(k,v,mh,body) \
148 do { \
149  hash_pair_t * _mhash_foreach_p; \
150  hash_foreach_pair (_mhash_foreach_p, (mh)->hash, ({ \
151  (k) = mhash_key_to_mem ((mh), _mhash_foreach_p->key); \
152  (v) = &_mhash_foreach_p->value[0]; \
153  body; \
154  })); \
155 } while (0)
156 
158 
159 #endif /* included_clib_mhash_h */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:394
Definition: mhash.h:46
always_inline void mhash_free(mhash_t *h)
Definition: mhash.h:137
always_inline void mhash_init_vec_string(mhash_t *h, uword n_value_bytes)
Definition: mhash.h:81
format_function_t * format_key
Definition: mhash.h:71
always_inline hash_t * hash_header(void *v)
Definition: hash.h:107
u32 n_key_bytes
Definition: mhash.h:62
always_inline uword mhash_set(mhash_t *h, void *key, uword new_value, uword *old_value)
Definition: mhash.h:111
always_inline void * mhash_key_to_mem(mhash_t *h, uword key)
Definition: mhash.h:85
always_inline void mhash_init_c_string(mhash_t *h, uword n_value_bytes)
Definition: mhash.h:77
#define heap_free(v)
Definition: heap.h:319
always_inline uword mhash_key_vector_is_heap(mhash_t *h)
Definition: mhash.h:133
u32 hash_seed
Definition: mhash.h:65
uword value[0]
Definition: hash.h:151
u8 ** key_tmps
Definition: mhash.h:55
#define always_inline
Definition: clib.h:84
void mhash_init(mhash_t *h, uword n_value_bytes, uword n_key_bytes)
Definition: mhash.c:169
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
always_inline uword mhash_elts(mhash_t *m)
Definition: mhash.h:129
uword os_get_cpu_number(void)
Definition: unix-misc.c:206
#define hash_free(h)
Definition: hash.h:269
format_function_t format_mhash_key
Definition: mhash.h:157
always_inline uword mhash_unset_key(mhash_t *h, uword key, uword *old_value)
Definition: mhash.h:115
u32 * key_vector_free_indices
Definition: mhash.h:53
uword mhash_unset(mhash_t *h, void *key, uword *old_value)
Definition: mhash.c:350
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:298
hash_pair_t * mhash_get_pair(mhash_t *h, void *key)
Definition: mhash.c:257
always_inline uword hash_elts(void *v)
Definition: hash.h:111
unsigned int u32
Definition: types.h:88
u8 * key_vector_or_heap
Definition: mhash.h:49
uword * hash
Definition: mhash.h:68
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
u64 uword
Definition: types.h:112
unsigned char u8
Definition: types.h:56
always_inline uword mhash_value_bytes(mhash_t *m)
Definition: mhash.h:122
always_inline uword hash_value_bytes(hash_t *h)
Definition: hash.h:274
#define MHASH_C_STRING_KEY
Definition: mhash.h:61
uword mhash_set_mem(mhash_t *h, void *key, uword *new_value, uword *old_value)
Definition: mhash.c:272
#define MHASH_VEC_STRING_KEY
Definition: mhash.h:60
always_inline uword * mhash_get(mhash_t *h, void *key)
Definition: mhash.h:104