Apache Portable Runtime Utility Library
apr_reslist.h
Go to the documentation of this file.
1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef APR_RESLIST_H
18#define APR_RESLIST_H
19
25#include "apr.h"
26#include "apu.h"
27#include "apr_pools.h"
28#include "apr_errno.h"
29#include "apr_time.h"
30
37#ifdef __cplusplus
38extern "C" {
39#endif /* __cplusplus */
40
43
44/* Generic constructor called by resource list when it needs to create a
45 * resource.
46 * @param resource opaque resource
47 * @param params flags
48 * @param pool Pool
49 */
50typedef apr_status_t (*apr_reslist_constructor)(void **resource, void *params,
51 apr_pool_t *pool);
52
53/* Generic destructor called by resource list when it needs to destroy a
54 * resource.
55 * @param resource opaque resource
56 * @param params flags
57 * @param pool Pool
58 */
59typedef apr_status_t (*apr_reslist_destructor)(void *resource, void *params,
60 apr_pool_t *pool);
61
62/* Cleanup order modes */
63#define APR_RESLIST_CLEANUP_DEFAULT 0
64#define APR_RESLIST_CLEANUP_FIRST 1
89APU_DECLARE(apr_status_t) apr_reslist_create(apr_reslist_t **reslist,
90 int min, int smax, int hmax,
91 apr_interval_time_t ttl,
92 apr_reslist_constructor con,
93 apr_reslist_destructor de,
94 void *params,
95 apr_pool_t *pool);
96
108APU_DECLARE(apr_status_t) apr_reslist_destroy(apr_reslist_t *reslist);
109
118APU_DECLARE(apr_status_t) apr_reslist_acquire(apr_reslist_t *reslist,
119 void **resource);
120
126APU_DECLARE(apr_status_t) apr_reslist_release(apr_reslist_t *reslist,
127 void *resource);
128
135APU_DECLARE(void) apr_reslist_timeout_set(apr_reslist_t *reslist,
136 apr_interval_time_t timeout);
137
142APU_DECLARE(apr_uint32_t) apr_reslist_acquired_count(apr_reslist_t *reslist);
143
151APU_DECLARE(apr_status_t) apr_reslist_invalidate(apr_reslist_t *reslist,
152 void *resource);
153
159APU_DECLARE(apr_status_t) apr_reslist_maintain(apr_reslist_t *reslist);
160
175 apr_uint32_t mode);
176
177#ifdef __cplusplus
178}
179#endif
180
183#endif /* ! APR_RESLIST_H */
apr_status_t apr_reslist_destroy(apr_reslist_t *reslist)
apr_status_t apr_reslist_invalidate(apr_reslist_t *reslist, void *resource)
apr_status_t apr_reslist_create(apr_reslist_t **reslist, int min, int smax, int hmax, apr_interval_time_t ttl, apr_reslist_constructor con, apr_reslist_destructor de, void *params, apr_pool_t *pool)
struct apr_reslist_t apr_reslist_t
Definition: apr_reslist.h:42
void apr_reslist_cleanup_order_set(apr_reslist_t *reslist, apr_uint32_t mode)
apr_status_t apr_reslist_maintain(apr_reslist_t *reslist)
apr_uint32_t apr_reslist_acquired_count(apr_reslist_t *reslist)
apr_status_t apr_reslist_acquire(apr_reslist_t *reslist, void **resource)
apr_status_t apr_reslist_release(apr_reslist_t *reslist, void *resource)
void apr_reslist_timeout_set(apr_reslist_t *reslist, apr_interval_time_t timeout)