apr_hash.h

説明を見る。
00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
00002  * applicable.
00003  *
00004  * Licensed under the Apache License, Version 2.0 (the "License");
00005  * you may not use this file except in compliance with the License.
00006  * 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  * @remark  There is no restriction on adding or deleting hash entries during
00126  * an iteration (although the results may be unpredictable unless all you do
00127  * is delete the current entry) and multiple iterations can be in
00128  * progress at the same time.
00129 
00130  * @example
00131  */
00132 /**
00133  * <PRE>
00134  * 
00135  * int sum_values(apr_pool_t *p, apr_hash_t *ht)
00136  * {
00137  *     apr_hash_index_t *hi;
00138  *     void *val;
00139  *     int sum = 0;
00140  *     for (hi = apr_hash_first(p, ht); hi; hi = apr_hash_next(hi)) {
00141  *         apr_hash_this(hi, NULL, NULL, &val);
00142  *         sum += *(int *)val;
00143  *     }
00144  *     return sum;
00145  * }
00146  * </PRE>
00147  */
00148 APR_DECLARE(apr_hash_index_t *) apr_hash_first(apr_pool_t *p, apr_hash_t *ht);
00149 
00150 /**
00151  * Continue iterating over the entries in a hash table.
00152  * @param hi The iteration state
00153  * @return a pointer to the updated iteration state.  NULL if there are no more  
00154  *         entries.
00155  */
00156 APR_DECLARE(apr_hash_index_t *) apr_hash_next(apr_hash_index_t *hi);
00157 
00158 /**
00159  * Get the current entry's details from the iteration state.
00160  * @param hi The iteration state
00161  * @param key Return pointer for the pointer to the key.
00162  * @param klen Return pointer for the key length.
00163  * @param val Return pointer for the associated value.
00164  * @remark The return pointers should point to a variable that will be set to the
00165  *         corresponding data, or they may be NULL if the data isn't interesting.
00166  */
00167 APR_DECLARE(void) apr_hash_this(apr_hash_index_t *hi, const void **key, 
00168                                 apr_ssize_t *klen, void **val);
00169 
00170 /**
00171  * Get the number of key/value pairs in the hash table.
00172  * @param ht The hash table
00173  * @return The number of key/value pairs in the hash table.
00174  */
00175 APR_DECLARE(unsigned int) apr_hash_count(apr_hash_t *ht);
00176 
00177 /**
00178  * Merge two hash tables into one new hash table. The values of the overlay
00179  * hash override the values of the base if both have the same key.  Both
00180  * hash tables must use the same hash function.
00181  * @param p The pool to use for the new hash table
00182  * @param overlay The table to add to the initial table
00183  * @param base The table that represents the initial values of the new table
00184  * @return A new hash table containing all of the data from the two passed in
00185  */
00186 APR_DECLARE(apr_hash_t *) apr_hash_overlay(apr_pool_t *p,
00187                                            const apr_hash_t *overlay, 
00188                                            const apr_hash_t *base);
00189 
00190 /**
00191  * Merge two hash tables into one new hash table. If the same key
00192  * is present in both tables, call the supplied merge function to
00193  * produce a merged value for the key in the new table.  Both
00194  * hash tables must use the same hash function.
00195  * @param p The pool to use for the new hash table
00196  * @param h1 The first of the tables to merge
00197  * @param h2 The second of the tables to merge
00198  * @param merger A callback function to merge values, or NULL to
00199  *  make values from h1 override values from h2 (same semantics as
00200  *  apr_hash_overlay())
00201  * @param data Client data to pass to the merger function
00202  * @return A new hash table containing all of the data from the two passed in
00203  */
00204 APR_DECLARE(apr_hash_t *) apr_hash_merge(apr_pool_t *p,
00205                                          const apr_hash_t *h1,
00206                                          const apr_hash_t *h2,
00207                                          void * (*merger)(apr_pool_t *p,
00208                                                      const void *key,
00209                                                      apr_ssize_t klen,
00210                                                      const void *h1_val,
00211                                                      const void *h2_val,
00212                                                      const void *data),
00213                                          const void *data);
00214 
00215 /**
00216  * Get a pointer to the pool which the hash table was created in
00217  */
00218 APR_POOL_DECLARE_ACCESSOR(hash);
00219 
00220 /** @} */
00221 
00222 #ifdef __cplusplus
00223 }
00224 #endif
00225 
00226 #endif  /* !APR_HASH_H */

Apache Portable Runtimeに対してSun Jul 19 22:04:00 2009に生成されました。  doxygen 1.4.7