home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277221_apr_pools.h < prev    next >
C/C++ Source or Header  |  2004-02-13  |  24KB  |  664 lines

  1. /* Copyright 2000-2004 The Apache Software Foundation
  2.  *
  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.  
  16. #ifndef APR_POOLS_H
  17. #define APR_POOLS_H
  18.  
  19. /**
  20.  * @file apr_pools.h
  21.  * @brief APR memory allocation
  22.  *
  23.  * Resource allocation routines...
  24.  *
  25.  * designed so that we don't have to keep track of EVERYTHING so that
  26.  * it can be explicitly freed later (a fundamentally unsound strategy ---
  27.  * particularly in the presence of die()).
  28.  *
  29.  * Instead, we maintain pools, and allocate items (both memory and I/O
  30.  * handlers) from the pools --- currently there are two, one for per
  31.  * transaction info, and one for config info.  When a transaction is over,
  32.  * we can delete everything in the per-transaction apr_pool_t without fear,
  33.  * and without thinking too hard about it either.
  34.  */
  35.  
  36. #include "apr.h"
  37. #include "apr_errno.h"
  38. #include "apr_general.h" /* for APR_STRINGIFY */
  39. #define APR_WANT_MEMFUNC /**< for no good reason? */
  40. #include "apr_want.h"
  41.  
  42. #ifdef __cplusplus
  43. extern "C" {
  44. #endif
  45.  
  46. /**
  47.  * @defgroup apr_pools Memory Pool Functions
  48.  * @ingroup APR 
  49.  * @{
  50.  */
  51.  
  52. /** The fundamental pool type */
  53. typedef struct apr_pool_t apr_pool_t;
  54.  
  55.  
  56. /**
  57.  * Declaration helper macro to construct apr_foo_pool_get()s.
  58.  *
  59.  * This standardized macro is used by opaque (APR) data types to return
  60.  * the apr_pool_t that is associated with the data type.
  61.  *
  62.  * APR_POOL_DECLARE_ACCESSOR() is used in a header file to declare the
  63.  * accessor function. A typical usage and result would be:
  64.  * <pre>
  65.  *    APR_POOL_DECLARE_ACCESSOR(file);
  66.  * becomes:
  67.  *    APR_DECLARE(apr_pool_t *) apr_file_pool_get(apr_file_t *ob);
  68.  * </pre>
  69.  * @remark Doxygen unwraps this macro (via doxygen.conf) to provide 
  70.  * actual help for each specific occurance of apr_foo_pool_get.
  71.  * @remark the linkage is specified for APR. It would be possible to expand
  72.  *       the macros to support other linkages.
  73.  */
  74. #define APR_POOL_DECLARE_ACCESSOR(type) \
  75.     APR_DECLARE(apr_pool_t *) apr_##type##_pool_get \
  76.         (const apr_##type##_t *the##type)
  77.  
  78. /** 
  79.  * Implementation helper macro to provide apr_foo_pool_get()s.
  80.  *
  81.  * In the implementation, the APR_POOL_IMPLEMENT_ACCESSOR() is used to
  82.  * actually define the function. It assumes the field is named "pool".
  83.  */
  84. #define APR_POOL_IMPLEMENT_ACCESSOR(type) \
  85.     APR_DECLARE(apr_pool_t *) apr_##type##_pool_get \
  86.             (const apr_##type##_t *the##type) \
  87.         { return the##type->pool; }
  88.  
  89.  
  90. /**
  91.  * Pool debug levels
  92.  *
  93.  * <pre>
  94.  * | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
  95.  * ---------------------------------
  96.  * |   |   |   |   |   |   |   | x |  General debug code enabled (usefull in
  97.  *                                    combination with --with-efence).
  98.  *
  99.  * |   |   |   |   |   |   | x |   |  Verbose output on stderr (report
  100.  *                                    CREATE, CLEAR, DESTROY).
  101.  *
  102.  * |   |   |   | x |   |   |   |   |  Verbose output on stderr (report
  103.  *                                    PALLOC, PCALLOC).
  104.  *
  105.  * |   |   |   |   |   | x |   |   |  Lifetime checking. On each use of a
  106.  *                                    pool, check its lifetime.  If the pool
  107.  *                                    is out of scope, abort().
  108.  *                                    In combination with the verbose flag
  109.  *                                    above, it will output LIFE in such an
  110.  *                                    event prior to aborting.
  111.  *
  112.  * |   |   |   |   | x |   |   |   |  Pool owner checking.  On each use of a
  113.  *                                    pool, check if the current thread is the
  114.  *                                    pools owner.  If not, abort().  In
  115.  *                                    combination with the verbose flag above,
  116.  *                                    it will output OWNER in such an event
  117.  *                                    prior to aborting.  Use the debug
  118.  *                                    function apr_pool_owner_set() to switch
  119.  *                                    a pools ownership.
  120.  *
  121.  * When no debug level was specified, assume general debug mode.
  122.  * If level 0 was specified, debugging is switched off
  123.  * </pre>
  124.  */
  125. #if defined(APR_POOL_DEBUG)
  126. #if (APR_POOL_DEBUG != 0) && (APR_POOL_DEBUG - 0 == 0)
  127. #undef APR_POOL_DEBUG
  128. #define APR_POOL_DEBUG 1
  129. #endif
  130. #else
  131. #define APR_POOL_DEBUG 0
  132. #endif
  133.  
  134. /** the place in the code where the particular function was called */
  135. #define APR_POOL__FILE_LINE__ __FILE__ ":" APR_STRINGIFY(__LINE__)
  136.  
  137.  
  138.  
  139. /** A function that is called when allocation fails. */
  140. typedef int (*apr_abortfunc_t)(int retcode);
  141.  
  142. /*
  143.  * APR memory structure manipulators (pools, tables, and arrays).
  144.  */
  145.  
  146. /*
  147.  * Initialization
  148.  */
  149.  
  150. /**
  151.  * Setup all of the internal structures required to use pools
  152.  * @remark Programs do NOT need to call this directly.  APR will call this
  153.  *      automatically from apr_initialize.
  154.  * @internal
  155.  */
  156. APR_DECLARE(apr_status_t) apr_pool_initialize(void);
  157.  
  158. /**
  159.  * Tear down all of the internal structures required to use pools
  160.  * @remark Programs do NOT need to call this directly.  APR will call this
  161.  *      automatically from apr_terminate.
  162.  * @internal
  163.  */
  164. APR_DECLARE(void) apr_pool_terminate(void);
  165.  
  166.  
  167. /*
  168.  * Pool creation/destruction
  169.  */
  170.  
  171. #include "apr_allocator.h"
  172.  
  173. /**
  174.  * Create a new pool.
  175.  * @param newpool The pool we have just created.
  176.  * @param parent The parent pool.  If this is NULL, the new pool is a root
  177.  *        pool.  If it is non-NULL, the new pool will inherit all
  178.  *        of its parent pool's attributes, except the apr_pool_t will
  179.  *        be a sub-pool.
  180.  * @param abort_fn A function to use if the pool cannot allocate more memory.
  181.  * @param allocator The allocator to use with the new pool.  If NULL the
  182.  *        allocator of the parent pool will be used.
  183.  */
  184. APR_DECLARE(apr_status_t) apr_pool_create_ex(apr_pool_t **newpool,
  185.                                              apr_pool_t *parent,
  186.                                              apr_abortfunc_t abort_fn,
  187.                                              apr_allocator_t *allocator);
  188.  
  189. /**
  190.  * Debug version of apr_pool_create_ex.
  191.  * @param newpool @see apr_pool_create.
  192.  * @param parent @see apr_pool_create.
  193.  * @param abort_fn @see apr_pool_create.
  194.  * @param allocator @see apr_pool_create.
  195.  * @param file_line Where the function is called from.
  196.  *        This is usually APR_POOL__FILE_LINE__.
  197.  * @remark Only available when APR_POOL_DEBUG is defined.
  198.  *         Call this directly if you have you apr_pool_create_ex
  199.  *         calls in a wrapper function and wish to override
  200.  *         the file_line argument to reflect the caller of
  201.  *         your wrapper function.  If you do not have
  202.  *         apr_pool_create_ex in a wrapper, trust the macro
  203.  *         and don't call apr_pool_create_ex_debug directly.
  204.  */
  205. APR_DECLARE(apr_status_t) apr_pool_create_ex_debug(apr_pool_t **newpool,
  206.                                                    apr_pool_t *parent,
  207.                                                    apr_abortfunc_t abort_fn,
  208.                                                    apr_allocator_t *allocator,
  209.                                                    const char *file_line);
  210.  
  211. #if APR_POOL_DEBUG
  212. #define apr_pool_create_ex(newpool, parent, abort_fn, allocator)  \
  213.     apr_pool_create_ex_debug(newpool, parent, abort_fn, allocator, \
  214.                              APR_POOL__FILE_LINE__)
  215. #endif
  216.  
  217. /**
  218.  * Create a new pool.
  219.  * @param newpool The pool we have just created.
  220.  * @param parent The parent pool.  If this is NULL, the new pool is a root
  221.  *        pool.  If it is non-NULL, the new pool will inherit all
  222.  *        of its parent pool's attributes, except the apr_pool_t will
  223.  *        be a sub-pool.
  224.  */
  225. #if defined(DOXYGEN)
  226. APR_DECLARE(apr_status_t) apr_pool_create(apr_pool_t **newpool,
  227.                                           apr_pool_t *parent);
  228. #else
  229. #if APR_POOL_DEBUG
  230. #define apr_pool_create(newpool, parent) \
  231.     apr_pool_create_ex_debug(newpool, parent, NULL, NULL, \
  232.                              APR_POOL__FILE_LINE__)
  233. #else
  234. #define apr_pool_create(newpool, parent) \
  235.     apr_pool_create_ex(newpool, parent, NULL, NULL)
  236. #endif
  237. #endif
  238.  
  239. /** @deprecated @see apr_pool_create_ex */
  240. #if APR_POOL_DEBUG
  241. #define apr_pool_sub_make(newpool, parent, abort_fn) \
  242.     (void)apr_pool_create_ex_debug(newpool, parent, abort_fn, \
  243.                                    NULL, \
  244.                                    APR_POOL__FILE_LINE__)
  245. #else
  246. #define apr_pool_sub_make(newpool, parent, abort_fn) \
  247.     (void)apr_pool_create_ex(newpool, parent, abort_fn, NULL)
  248. #endif
  249.  
  250. /**
  251.  * Find the pools allocator
  252.  * @param pool The pool to get the allocator from.
  253.  */
  254. APR_DECLARE(apr_allocator_t *) apr_pool_allocator_get(apr_pool_t *pool);
  255.  
  256. /**
  257.  * Clear all memory in the pool and run all the cleanups. This also destroys all
  258.  * subpools.
  259.  * @param p The pool to clear
  260.  * @remark This does not actually free the memory, it just allows the pool
  261.  *         to re-use this memory for the next allocation.
  262.  * @see apr_pool_destroy()
  263.  */
  264. APR_DECLARE(void) apr_pool_clear(apr_pool_t *p);
  265.  
  266. /**
  267.  * Debug version of apr_pool_clear.
  268.  * @param p See: apr_pool_clear.
  269.  * @param file_line Where the function is called from.
  270.  *        This is usually APR_POOL__FILE_LINE__.
  271.  * @remark Only available when APR_POOL_DEBUG is defined.
  272.  *         Call this directly if you have you apr_pool_clear
  273.  *         calls in a wrapper function and wish to override
  274.  *         the file_line argument to reflect the caller of
  275.  *         your wrapper function.  If you do not have
  276.  *         apr_pool_clear in a wrapper, trust the macro
  277.  *         and don't call apr_pool_destroy_clear directly.
  278.  */
  279. APR_DECLARE(void) apr_pool_clear_debug(apr_pool_t *p,
  280.                                        const char *file_line);
  281.  
  282. #if APR_POOL_DEBUG
  283. #define apr_pool_clear(p) \
  284.     apr_pool_clear_debug(p, APR_POOL__FILE_LINE__)
  285. #endif
  286.  
  287. /**
  288.  * Destroy the pool. This takes similar action as apr_pool_clear() and then
  289.  * frees all the memory.
  290.  * @param p The pool to destroy
  291.  * @remark This will actually free the memory
  292.  */
  293. APR_DECLARE(void) apr_pool_destroy(apr_pool_t *p);
  294.  
  295. /**
  296.  * Debug version of apr_pool_destroy.
  297.  * @param p See: apr_pool_destroy.
  298.  * @param file_line Where the function is called from.
  299.  *        This is usually APR_POOL__FILE_LINE__.
  300.  * @remark Only available when APR_POOL_DEBUG is defined.
  301.  *         Call this directly if you have you apr_pool_destroy
  302.  *         calls in a wrapper function and wish to override
  303.  *         the file_line argument to reflect the caller of
  304.  *         your wrapper function.  If you do not have
  305.  *         apr_pool_destroy in a wrapper, trust the macro
  306.  *         and don't call apr_pool_destroy_debug directly.
  307.  */
  308. APR_DECLARE(void) apr_pool_destroy_debug(apr_pool_t *p,
  309.                                          const char *file_line);
  310.  
  311. #if APR_POOL_DEBUG
  312. #define apr_pool_destroy(p) \
  313.     apr_pool_destroy_debug(p, APR_POOL__FILE_LINE__)
  314. #endif
  315.  
  316.  
  317. /*
  318.  * Memory allocation
  319.  */
  320.  
  321. /**
  322.  * Allocate a block of memory from a pool
  323.  * @param p The pool to allocate from
  324.  * @param size The amount of memory to allocate
  325.  * @return The allocated memory
  326.  */
  327. APR_DECLARE(void *) apr_palloc(apr_pool_t *p, apr_size_t size);
  328.  
  329. /**
  330.  * Debug version of apr_palloc
  331.  * @param p See: apr_palloc
  332.  * @param size See: apr_palloc
  333.  * @param file_line Where the function is called from.
  334.  *        This is usually APR_POOL__FILE_LINE__.
  335.  * @return See: apr_palloc
  336.  */
  337. APR_DECLARE(void *) apr_palloc_debug(apr_pool_t *p, apr_size_t size,
  338.                                      const char *file_line);
  339.  
  340. #if APR_POOL_DEBUG
  341. #define apr_palloc(p, size) \
  342.     apr_palloc_debug(p, size, APR_POOL__FILE_LINE__)
  343. #endif
  344.  
  345. /**
  346.  * Allocate a block of memory from a pool and set all of the memory to 0
  347.  * @param p The pool to allocate from
  348.  * @param size The amount of memory to allocate
  349.  * @return The allocated memory
  350.  */
  351. #if defined(DOXYGEN)
  352. APR_DECLARE(void *) apr_pcalloc(apr_pool_t *p, apr_size_t size);
  353. #elif !APR_POOL_DEBUG
  354. #define apr_pcalloc(p, size) memset(apr_palloc(p, size), 0, size)
  355. #endif
  356.  
  357. /**
  358.  * Debug version of apr_pcalloc
  359.  * @param p See: apr_pcalloc
  360.  * @param size See: apr_pcalloc
  361.  * @param file_line Where the function is called from.
  362.  *        This is usually APR_POOL__FILE_LINE__.
  363.  * @return See: apr_pcalloc
  364.  */
  365. APR_DECLARE(void *) apr_pcalloc_debug(apr_pool_t *p, apr_size_t size,
  366.                                       const char *file_line);
  367.  
  368. #if APR_POOL_DEBUG
  369. #define apr_pcalloc(p, size) \
  370.     apr_pcalloc_debug(p, size, APR_POOL__FILE_LINE__)
  371. #endif
  372.  
  373.  
  374. /*
  375.  * Pool Properties
  376.  */
  377.  
  378. /**
  379.  * Set the function to be called when an allocation failure occurs.
  380.  * @remark If the program wants APR to exit on a memory allocation error,
  381.  *      then this function can be called to set the callback to use (for
  382.  *      performing cleanup and then exiting). If this function is not called,
  383.  *      then APR will return an error and expect the calling program to
  384.  *      deal with the error accordingly.
  385.  */
  386. APR_DECLARE(void) apr_pool_abort_set(apr_abortfunc_t abortfunc,
  387.                                      apr_pool_t *pool);
  388.  
  389. /** @deprecated @see apr_pool_abort_set */
  390. APR_DECLARE(void) apr_pool_set_abort(apr_abortfunc_t abortfunc,
  391.                                      apr_pool_t *pool);
  392.  
  393. /**
  394.  * Get the abort function associated with the specified pool.
  395.  * @param pool The pool for retrieving the abort function.
  396.  * @return The abort function for the given pool.
  397.  */
  398. APR_DECLARE(apr_abortfunc_t) apr_pool_abort_get(apr_pool_t *pool);
  399.  
  400. /** @deprecated @see apr_pool_abort_get */
  401. APR_DECLARE(apr_abortfunc_t) apr_pool_get_abort(apr_pool_t *pool);
  402.  
  403. /**
  404.  * Get the parent pool of the specified pool.
  405.  * @param pool The pool for retrieving the parent pool.
  406.  * @return The parent of the given pool.
  407.  */
  408. APR_DECLARE(apr_pool_t *) apr_pool_parent_get(apr_pool_t *pool);
  409.  
  410. /** @deprecated @see apr_pool_parent_get */
  411. APR_DECLARE(apr_pool_t *) apr_pool_get_parent(apr_pool_t *pool);
  412.  
  413. /**
  414.  * Determine if pool a is an ancestor of pool b
  415.  * @param a The pool to search
  416.  * @param b The pool to search for
  417.  * @return True if a is an ancestor of b, NULL is considered an ancestor
  418.  *         of all pools.
  419.  */
  420. APR_DECLARE(int) apr_pool_is_ancestor(apr_pool_t *a, apr_pool_t *b);
  421.  
  422. /**
  423.  * Tag a pool (give it a name)
  424.  * @param pool The pool to tag
  425.  * @param tag  The tag
  426.  */
  427. APR_DECLARE(void) apr_pool_tag(apr_pool_t *pool, const char *tag);
  428.  
  429.  
  430. /*
  431.  * User data management
  432.  */
  433.  
  434. /**
  435.  * Set the data associated with the current pool
  436.  * @param data The user data associated with the pool.
  437.  * @param key The key to use for association
  438.  * @param cleanup The cleanup program to use to cleanup the data (NULL if none)
  439.  * @param pool The current pool
  440.  * @warning The data to be attached to the pool should have a life span
  441.  *          at least as long as the pool it is being attached to.
  442.  *
  443.  *      Users of APR must take EXTREME care when choosing a key to
  444.  *      use for their data.  It is possible to accidentally overwrite
  445.  *      data by choosing a key that another part of the program is using.
  446.  *      Therefore it is advised that steps are taken to ensure that unique
  447.  *      keys are used for all of the userdata objects in a particular pool
  448.  *      (the same key in two different pools or a pool and one of its
  449.  *      subpools is okay) at all times.  Careful namespace prefixing of
  450.  *      key names is a typical way to help ensure this uniqueness.
  451.  */
  452. APR_DECLARE(apr_status_t) apr_pool_userdata_set(
  453.     const void *data,
  454.     const char *key,
  455.     apr_status_t (*cleanup)(void *),
  456.     apr_pool_t *pool);
  457.  
  458. /**
  459.  * Set the data associated with the current pool
  460.  * @param data The user data associated with the pool.
  461.  * @param key The key to use for association
  462.  * @param cleanup The cleanup program to use to cleanup the data (NULL if none)
  463.  * @param pool The current pool
  464.  * @note same as apr_pool_userdata_set(), except that this version doesn't
  465.  *       make a copy of the key (this function is useful, for example, when
  466.  *       the key is a string literal)
  467.  * @warning This should NOT be used if the key could change addresses by
  468.  *       any means between the apr_pool_userdata_setn() call and a
  469.  *       subsequent apr_pool_userdata_get() on that key, such as if a
  470.  *       static string is used as a userdata key in a DSO and the DSO could
  471.  *       be unloaded and reloaded between the _setn() and the _get().  You
  472.  *       MUST use apr_pool_userdata_set() in such cases.
  473.  * @warning More generally, the key and the data to be attached to the
  474.  *       pool should have a life span at least as long as the pool itself.
  475.  *
  476.  */
  477. APR_DECLARE(apr_status_t) apr_pool_userdata_setn(
  478.     const void *data,
  479.     const char *key,
  480.     apr_status_t (*cleanup)(void *),
  481.     apr_pool_t *pool);
  482.  
  483. /**
  484.  * Return the data associated with the current pool.
  485.  * @param data The user data associated with the pool.
  486.  * @param key The key for the data to retrieve
  487.  * @param pool The current pool.
  488.  */
  489. APR_DECLARE(apr_status_t) apr_pool_userdata_get(void **data, const char *key,
  490.                                                 apr_pool_t *pool);
  491.  
  492.  
  493. /*
  494.  * Cleanup
  495.  *
  496.  * Cleanups are performed in the reverse order they were registered.  That is:
  497.  * Last In, First Out.
  498.  */
  499.  
  500. /**
  501.  * Register a function to be called when a pool is cleared or destroyed
  502.  * @param p The pool register the cleanup with
  503.  * @param data The data to pass to the cleanup function.
  504.  * @param plain_cleanup The function to call when the pool is cleared
  505.  *                      or destroyed
  506.  * @param child_cleanup The function to call when a child process is being
  507.  *                      shutdown - this function is called in the child, obviously!
  508.  */
  509. APR_DECLARE(void) apr_pool_cleanup_register(
  510.     apr_pool_t *p,
  511.     const void *data,
  512.     apr_status_t (*plain_cleanup)(void *),
  513.     apr_status_t (*child_cleanup)(void *));
  514.  
  515. /**
  516.  * Remove a previously registered cleanup function
  517.  * @param p The pool remove the cleanup from
  518.  * @param data The data to remove from cleanup
  519.  * @param cleanup The function to remove from cleanup
  520.  * @remarks For some strange reason only the plain_cleanup is handled by this
  521.  *          function
  522.  */
  523. APR_DECLARE(void) apr_pool_cleanup_kill(apr_pool_t *p, const void *data,
  524.                                         apr_status_t (*cleanup)(void *));
  525.  
  526. /**
  527.  * Replace the child cleanup of a previously registered cleanup
  528.  * @param p The pool of the registered cleanup
  529.  * @param data The data of the registered cleanup
  530.  * @param plain_cleanup The plain cleanup function of the registered cleanup
  531.  * @param child_cleanup The function to register as the child cleanup
  532.  */
  533. APR_DECLARE(void) apr_pool_child_cleanup_set(
  534.     apr_pool_t *p,
  535.     const void *data,
  536.     apr_status_t (*plain_cleanup)(void *),
  537.     apr_status_t (*child_cleanup)(void *));
  538.  
  539. /**
  540.  * Run the specified cleanup function immediately and unregister it. Use
  541.  * @a data instead of the data that was registered with the cleanup.
  542.  * @param p The pool remove the cleanup from
  543.  * @param data The data to remove from cleanup
  544.  * @param cleanup The function to remove from cleanup
  545.  */
  546. APR_DECLARE(apr_status_t) apr_pool_cleanup_run(
  547.     apr_pool_t *p,
  548.     void *data,
  549.     apr_status_t (*cleanup)(void *));
  550.  
  551. /**
  552.  * An empty cleanup function
  553.  * @param data The data to cleanup
  554.  */
  555. APR_DECLARE_NONSTD(apr_status_t) apr_pool_cleanup_null(void *data);
  556.  
  557. /* Preparing for exec() --- close files, etc., but *don't* flush I/O
  558.  * buffers, *don't* wait for subprocesses, and *don't* free any memory.
  559.  */
  560. /**
  561.  * Run all of the child_cleanups, so that any unnecessary files are
  562.  * closed because we are about to exec a new program
  563.  */
  564. APR_DECLARE(void) apr_pool_cleanup_for_exec(void);
  565.  
  566.  
  567. /**
  568.  * @defgroup PoolDebug Pool Debugging functions.
  569.  *
  570.  * pools have nested lifetimes -- sub_pools are destroyed when the
  571.  * parent pool is cleared.  We allow certain liberties with operations
  572.  * on things such as tables (and on other structures in a more general
  573.  * sense) where we allow the caller to insert values into a table which
  574.  * were not allocated from the table's pool.  The table's data will
  575.  * remain valid as long as all the pools from which its values are
  576.  * allocated remain valid.
  577.  *
  578.  * For example, if B is a sub pool of A, and you build a table T in
  579.  * pool B, then it's safe to insert data allocated in A or B into T
  580.  * (because B lives at most as long as A does, and T is destroyed when
  581.  * B is cleared/destroyed).  On the other hand, if S is a table in
  582.  * pool A, it is safe to insert data allocated in A into S, but it
  583.  * is *not safe* to insert data allocated from B into S... because
  584.  * B can be cleared/destroyed before A is (which would leave dangling
  585.  * pointers in T's data structures).
  586.  *
  587.  * In general we say that it is safe to insert data into a table T
  588.  * if the data is allocated in any ancestor of T's pool.  This is the
  589.  * basis on which the APR_POOL_DEBUG code works -- it tests these ancestor
  590.  * relationships for all data inserted into tables.  APR_POOL_DEBUG also
  591.  * provides tools (apr_pool_find, and apr_pool_is_ancestor) for other
  592.  * folks to implement similar restrictions for their own data
  593.  * structures.
  594.  *
  595.  * However, sometimes this ancestor requirement is inconvenient --
  596.  * sometimes we're forced to create a sub pool (such as through
  597.  * apr_sub_req_lookup_uri), and the sub pool is guaranteed to have
  598.  * the same lifetime as the parent pool.  This is a guarantee implemented
  599.  * by the *caller*, not by the pool code.  That is, the caller guarantees
  600.  * they won't destroy the sub pool individually prior to destroying the
  601.  * parent pool.
  602.  *
  603.  * In this case the caller must call apr_pool_join() to indicate this
  604.  * guarantee to the APR_POOL_DEBUG code.  There are a few examples spread
  605.  * through the standard modules.
  606.  *
  607.  * These functions are only implemented when #APR_POOL_DEBUG is set.
  608.  *
  609.  * @{
  610.  */
  611. #if APR_POOL_DEBUG || defined(DOXYGEN)
  612. /**
  613.  * Guarantee that a subpool has the same lifetime as the parent.
  614.  * @param p The parent pool
  615.  * @param sub The subpool
  616.  */
  617. APR_DECLARE(void) apr_pool_join(apr_pool_t *p, apr_pool_t *sub);
  618.  
  619. /**
  620.  * Find a pool from something allocated in it.
  621.  * @param mem The thing allocated in the pool
  622.  * @return The pool it is allocated in
  623.  */
  624. APR_DECLARE(apr_pool_t *) apr_pool_find(const void *mem);
  625.  
  626. /**
  627.  * Report the number of bytes currently in the pool
  628.  * @param p The pool to inspect
  629.  * @param recurse Recurse/include the subpools' sizes
  630.  * @return The number of bytes
  631.  */
  632. APR_DECLARE(apr_size_t) apr_pool_num_bytes(apr_pool_t *p, int recurse);
  633.  
  634. /**
  635.  * Lock a pool
  636.  * @param pool The pool to lock
  637.  * @param flag  The flag
  638.  */
  639. APR_DECLARE(void) apr_pool_lock(apr_pool_t *pool, int flag);
  640.  
  641. /* @} */
  642.  
  643. #else /* APR_POOL_DEBUG or DOXYGEN */
  644.  
  645. #ifdef apr_pool_join
  646. #undef apr_pool_join
  647. #endif
  648. #define apr_pool_join(a,b)
  649.  
  650. #ifdef apr_pool_lock
  651. #undef apr_pool_lock
  652. #endif
  653. #define apr_pool_lock(pool, lock)
  654.  
  655. #endif /* APR_POOL_DEBUG or DOXYGEN */
  656.  
  657. /** @} */
  658.  
  659. #ifdef __cplusplus
  660. }
  661. #endif
  662.  
  663. #endif /* !APR_POOLS_H */
  664.