Apache Portable Runtime
apr_hash.h
Go to the documentation of this file.
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 number of key/value pairs in the hash table.
00171  * @param ht The hash table
00172  * @return The number of key/value pairs in the hash table.
00173  */
00174 APR_DECLARE(unsigned int) apr_hash_count(apr_hash_t *ht);
00175 
00176 /**
00177  * Clear any key/value pairs in the hash table.
00178  * @param ht The hash table
00179  */
00180 APR_DECLARE(void) apr_hash_clear(apr_hash_t *ht);
00181 
00182 /**
00183  * Merge two hash tables into one new hash table. The values of the overlay
00184  * hash override the values of the base if both have the same key.  Both
00185  * hash tables must use the same hash function.
00186  * @param p The pool to use for the new hash table
00187  * @param overlay The table to add to the initial table
00188  * @param base The table that represents the initial values of the new table
00189  * @return A new hash table containing all of the data from the two passed in
00190  */
00191 APR_DECLARE(apr_hash_t *) apr_hash_overlay(apr_pool_t *p,
00192                                            const apr_hash_t *overlay, 
00193                                            const apr_hash_t *base);
00194 
00195 /**
00196  * Merge two hash tables into one new hash table. If the same key
00197  * is present in both tables, call the supplied merge function to
00198  * produce a merged value for the key in the new table.  Both
00199  * hash tables must use the same hash function.
00200  * @param p The pool to use for the new hash table
00201  * @param h1 The first of the tables to merge
00202  * @param h2 The second of the tables to merge
00203  * @param merger A callback function to merge values, or NULL to
00204  *  make values from h1 override values from h2 (same semantics as
00205  *  apr_hash_overlay())
00206  * @param data Client data to pass to the merger function
00207  * @return A new hash table containing all of the data from the two passed in
00208  */
00209 APR_DECLARE(apr_hash_t *) apr_hash_merge(apr_pool_t *p,
00210                                          const apr_hash_t *h1,
00211                                          const apr_hash_t *h2,
00212                                          void * (*merger)(apr_pool_t *p,
00213                                                      const void *key,
00214                                                      apr_ssize_t klen,
00215                                                      const void *h1_val,
00216                                                      const void *h2_val,
00217                                                      const void *data),
00218                                          const void *data);
00219 
00220 /**
00221  * Declaration prototype for the iterator callback function of apr_hash_do().
00222  *
00223  * @param rec The data passed as the first argument to apr_hash_[v]do()
00224  * @param key The key from this iteration of the hash table
00225  * @param klen The key length from this iteration of the hash table
00226  * @param value The value from this iteration of the hash table
00227  * @remark Iteration continues while this callback function returns non-zero.
00228  * To export the callback function for apr_hash_do() it must be declared 
00229  * in the _NONSTD convention.
00230  */
00231 typedef int (apr_hash_do_callback_fn_t)(void *rec, const void *key,
00232                                                    apr_ssize_t klen,
00233                                                    const void *value);
00234 
00235 /** 
00236  * Iterate over a hash table running the provided function once for every
00237  * element in the hash table. The @param comp function will be invoked for
00238  * every element in the hash table.
00239  *
00240  * @param comp The function to run
00241  * @param rec The data to pass as the first argument to the function
00242  * @param ht The hash table to iterate over
00243  * @return FALSE if one of the comp() iterations returned zero; TRUE if all
00244  *            iterations returned non-zero
00245  * @see apr_hash_do_callback_fn_t
00246  */
00247 APR_DECLARE(int) apr_hash_do(apr_hash_do_callback_fn_t *comp,
00248                              void *rec, const apr_hash_t *ht);
00249 
00250 /**
00251  * Get a pointer to the pool which the hash table was created in
00252  */
00253 APR_POOL_DECLARE_ACCESSOR(hash);
00254 
00255 /** @} */
00256 
00257 #ifdef __cplusplus
00258 }
00259 #endif
00260 
00261 #endif  /* !APR_HASH_H */
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines