00001 /* Licensed to the Apache Software Foundation (ASF) under one or more 00002 * contributor license agreements. See the NOTICE file distributed with 00003 * this work for additional information regarding copyright ownership. 00004 * The ASF licenses this file to You under the Apache License, Version 2.0 00005 * (the "License"); you may not use this file except in compliance with 00006 * the License. You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00017 #ifndef APR_HASH_H 00018 #define APR_HASH_H 00019 00020 /** 00021 * @file apr_hash.h 00022 * @brief APR Hash Tables 00023 */ 00024 00025 #include "apr_pools.h" 00026 00027 #ifdef __cplusplus 00028 extern "C" { 00029 #endif 00030 00031 /** 00032 * @defgroup apr_hash Hash Tables 00033 * @ingroup APR 00034 * @{ 00035 */ 00036 00037 /** 00038 * When passing a key to apr_hash_set or apr_hash_get, this value can be 00039 * passed to indicate a string-valued key, and have apr_hash compute the 00040 * length automatically. 00041 * 00042 * @remark apr_hash will use strlen(key) for the length. The NUL terminator 00043 * is not included in the hash value (why throw a constant in?). 00044 * Since the hash table merely references the provided key (rather 00045 * than copying it), apr_hash_this() will return the NUL-term'd key. 00046 */ 00047 #define APR_HASH_KEY_STRING (-1) 00048 00049 /** 00050 * Abstract type for hash tables. 00051 */ 00052 typedef struct apr_hash_t apr_hash_t; 00053 00054 /** 00055 * Abstract type for scanning hash tables. 00056 */ 00057 typedef struct apr_hash_index_t apr_hash_index_t; 00058 00059 /** 00060 * Callback functions for calculating hash values. 00061 * @param key The key. 00062 * @param klen The length of the key, or APR_HASH_KEY_STRING to use the string 00063 * length. If APR_HASH_KEY_STRING then returns the actual key length. 00064 */ 00065 typedef unsigned int (*apr_hashfunc_t)(const char *key, apr_ssize_t *klen); 00066 00067 /** 00068 * The default hash function. 00069 */ 00070 APR_DECLARE_NONSTD(unsigned int) apr_hashfunc_default(const char *key, 00071 apr_ssize_t *klen); 00072 00073 /** 00074 * Create a hash table. 00075 * @param pool The pool to allocate the hash table out of 00076 * @return The hash table just created 00077 */ 00078 APR_DECLARE(apr_hash_t *) apr_hash_make(apr_pool_t *pool); 00079 00080 /** 00081 * Create a hash table with a custom hash function 00082 * @param pool The pool to allocate the hash table out of 00083 * @param hash_func A custom hash function. 00084 * @return The hash table just created 00085 */ 00086 APR_DECLARE(apr_hash_t *) apr_hash_make_custom(apr_pool_t *pool, 00087 apr_hashfunc_t hash_func); 00088 00089 /** 00090 * Make a copy of a hash table 00091 * @param pool The pool from which to allocate the new hash table 00092 * @param h The hash table to clone 00093 * @return The hash table just created 00094 * @remark Makes a shallow copy 00095 */ 00096 APR_DECLARE(apr_hash_t *) apr_hash_copy(apr_pool_t *pool, 00097 const apr_hash_t *h); 00098 00099 /** 00100 * Associate a value with a key in a hash table. 00101 * @param ht The hash table 00102 * @param key Pointer to the key 00103 * @param klen Length of the key. Can be APR_HASH_KEY_STRING to use the string length. 00104 * @param val Value to associate with the key 00105 * @remark If the value is NULL the hash entry is deleted. 00106 */ 00107 APR_DECLARE(void) apr_hash_set(apr_hash_t *ht, const void *key, 00108 apr_ssize_t klen, const void *val); 00109 00110 /** 00111 * Look up the value associated with a key in a hash table. 00112 * @param ht The hash table 00113 * @param key Pointer to the key 00114 * @param klen Length of the key. Can be APR_HASH_KEY_STRING to use the string length. 00115 * @return Returns NULL if the key is not present. 00116 */ 00117 APR_DECLARE(void *) apr_hash_get(apr_hash_t *ht, const void *key, 00118 apr_ssize_t klen); 00119 00120 /** 00121 * Start iterating over the entries in a hash table. 00122 * @param p The pool to allocate the apr_hash_index_t iterator. If this 00123 * pool is NULL, then an internal, non-thread-safe iterator is used. 00124 * @param ht The hash table 00125 * @return The iteration state 00126 * @remark There is no restriction on adding or deleting hash entries during 00127 * an iteration (although the results may be unpredictable unless all you do 00128 * is delete the current entry) and multiple iterations can be in 00129 * progress at the same time. 00130 * 00131 * @par Example: 00132 * 00133 * @code 00134 * int sum_values(apr_pool_t *p, apr_hash_t *ht) 00135 * { 00136 * apr_hash_index_t *hi; 00137 * void *val; 00138 * int sum = 0; 00139 * for (hi = apr_hash_first(p, ht); hi; hi = apr_hash_next(hi)) { 00140 * apr_hash_this(hi, NULL, NULL, &val); 00141 * sum += *(int *)val; 00142 * } 00143 * return sum; 00144 * } 00145 * @endcode 00146 */ 00147 APR_DECLARE(apr_hash_index_t *) apr_hash_first(apr_pool_t *p, apr_hash_t *ht); 00148 00149 /** 00150 * Continue iterating over the entries in a hash table. 00151 * @param hi The iteration state 00152 * @return a pointer to the updated iteration state. NULL if there are no more 00153 * entries. 00154 */ 00155 APR_DECLARE(apr_hash_index_t *) apr_hash_next(apr_hash_index_t *hi); 00156 00157 /** 00158 * Get the current entry's details from the iteration state. 00159 * @param hi The iteration state 00160 * @param key Return pointer for the pointer to the key. 00161 * @param klen Return pointer for the key length. 00162 * @param val Return pointer for the associated value. 00163 * @remark The return pointers should point to a variable that will be set to the 00164 * corresponding data, or they may be NULL if the data isn't interesting. 00165 */ 00166 APR_DECLARE(void) apr_hash_this(apr_hash_index_t *hi, const void **key, 00167 apr_ssize_t *klen, void **val); 00168 00169 /** 00170 * Get the current entry's key from the iteration state. 00171 * @param hi The iteration state 00172 * @return The pointer to the key 00173 */ 00174 APR_DECLARE(const void*) apr_hash_this_key(apr_hash_index_t *hi); 00175 00176 /** 00177 * Get the current entry's key length from the iteration state. 00178 * @param hi The iteration state 00179 * @return The key length 00180 */ 00181 APR_DECLARE(apr_ssize_t) apr_hash_this_key_len(apr_hash_index_t *hi); 00182 00183 /** 00184 * Get the current entry's value from the iteration state. 00185 * @param hi The iteration state 00186 * @return The pointer to the value 00187 */ 00188 APR_DECLARE(void*) apr_hash_this_val(apr_hash_index_t *hi); 00189 00190 /** 00191 * Get the number of key/value pairs in the hash table. 00192 * @param ht The hash table 00193 * @return The number of key/value pairs in the hash table. 00194 */ 00195 APR_DECLARE(unsigned int) apr_hash_count(apr_hash_t *ht); 00196 00197 /** 00198 * Clear any key/value pairs in the hash table. 00199 * @param ht The hash table 00200 */ 00201 APR_DECLARE(void) apr_hash_clear(apr_hash_t *ht); 00202 00203 /** 00204 * Merge two hash tables into one new hash table. The values of the overlay 00205 * hash override the values of the base if both have the same key. Both 00206 * hash tables must use the same hash function. 00207 * @param p The pool to use for the new hash table 00208 * @param overlay The table to add to the initial table 00209 * @param base The table that represents the initial values of the new table 00210 * @return A new hash table containing all of the data from the two passed in 00211 */ 00212 APR_DECLARE(apr_hash_t *) apr_hash_overlay(apr_pool_t *p, 00213 const apr_hash_t *overlay, 00214 const apr_hash_t *base); 00215 00216 /** 00217 * Merge two hash tables into one new hash table. If the same key 00218 * is present in both tables, call the supplied merge function to 00219 * produce a merged value for the key in the new table. Both 00220 * hash tables must use the same hash function. 00221 * @param p The pool to use for the new hash table 00222 * @param h1 The first of the tables to merge 00223 * @param h2 The second of the tables to merge 00224 * @param merger A callback function to merge values, or NULL to 00225 * make values from h1 override values from h2 (same semantics as 00226 * apr_hash_overlay()) 00227 * @param data Client data to pass to the merger function 00228 * @return A new hash table containing all of the data from the two passed in 00229 */ 00230 APR_DECLARE(apr_hash_t *) apr_hash_merge(apr_pool_t *p, 00231 const apr_hash_t *h1, 00232 const apr_hash_t *h2, 00233 void * (*merger)(apr_pool_t *p, 00234 const void *key, 00235 apr_ssize_t klen, 00236 const void *h1_val, 00237 const void *h2_val, 00238 const void *data), 00239 const void *data); 00240 00241 /** 00242 * Declaration prototype for the iterator callback function of apr_hash_do(). 00243 * 00244 * @param rec The data passed as the first argument to apr_hash_[v]do() 00245 * @param key The key from this iteration of the hash table 00246 * @param klen The key length from this iteration of the hash table 00247 * @param value The value from this iteration of the hash table 00248 * @remark Iteration continues while this callback function returns non-zero. 00249 * To export the callback function for apr_hash_do() it must be declared 00250 * in the _NONSTD convention. 00251 */ 00252 typedef int (apr_hash_do_callback_fn_t)(void *rec, const void *key, 00253 apr_ssize_t klen, 00254 const void *value); 00255 00256 /** 00257 * Iterate over a hash table running the provided function once for every 00258 * element in the hash table. The @param comp function will be invoked for 00259 * every element in the hash table. 00260 * 00261 * @param comp The function to run 00262 * @param rec The data to pass as the first argument to the function 00263 * @param ht The hash table to iterate over 00264 * @return FALSE if one of the comp() iterations returned zero; TRUE if all 00265 * iterations returned non-zero 00266 * @see apr_hash_do_callback_fn_t 00267 */ 00268 APR_DECLARE(int) apr_hash_do(apr_hash_do_callback_fn_t *comp, 00269 void *rec, const apr_hash_t *ht); 00270 00271 /** 00272 * Get a pointer to the pool which the hash table was created in 00273 */ 00274 APR_POOL_DECLARE_ACCESSOR(hash); 00275 00276 /** @} */ 00277 00278 #ifdef __cplusplus 00279 } 00280 #endif 00281 00282 #endif /* !APR_HASH_H */