bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / srclib / apr / include / apr_general.h
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_GENERAL_H
18 #define APR_GENERAL_H
19
20 /**
21  * @file apr_general.h
22  * This is collection of oddballs that didn't fit anywhere else,
23  * and might move to more appropriate headers with the release
24  * of APR 1.0.
25  * @brief APR Miscellaneous library routines
26  */
27
28 #include "apr.h"
29 #include "apr_pools.h"
30 #include "apr_errno.h"
31
32 #if APR_HAVE_SIGNAL_H
33 #include <signal.h>
34 #endif
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif /* __cplusplus */
39
40 /**
41  * @defgroup apr_general Miscellaneous library routines
42  * @ingroup APR 
43  * This is collection of oddballs that didn't fit anywhere else,
44  * and might move to more appropriate headers with the release
45  * of APR 1.0.
46  * @{
47  */
48
49 /** FALSE */
50 #ifndef FALSE
51 #define FALSE 0
52 #endif
53 /** TRUE */
54 #ifndef TRUE
55 #define TRUE (!FALSE)
56 #endif
57
58 /** a space */
59 #define APR_ASCII_BLANK  '\040'
60 /** a carrige return */
61 #define APR_ASCII_CR     '\015'
62 /** a line feed */
63 #define APR_ASCII_LF     '\012'
64 /** a tab */
65 #define APR_ASCII_TAB    '\011'
66
67 /** signal numbers typedef */
68 typedef int               apr_signum_t;
69
70 /**
71  * Finding offsets of elements within structures.
72  * Taken from the X code... they've sweated portability of this stuff
73  * so we don't have to.  Sigh...
74  * @param p_type pointer type name
75  * @param field  data field within the structure pointed to
76  * @return offset
77  */
78
79 #if defined(CRAY) || (defined(__arm) && !defined(LINUX))
80 #ifdef __STDC__
81 #define APR_OFFSET(p_type,field) _Offsetof(p_type,field)
82 #else
83 #ifdef CRAY2
84 #define APR_OFFSET(p_type,field) \
85         (sizeof(int)*((unsigned int)&(((p_type)NULL)->field)))
86
87 #else /* !CRAY2 */
88
89 #define APR_OFFSET(p_type,field) ((unsigned int)&(((p_type)NULL)->field))
90
91 #endif /* !CRAY2 */
92 #endif /* __STDC__ */
93 #else /* ! (CRAY || __arm) */
94
95 #define APR_OFFSET(p_type,field) \
96         ((long) (((char *) (&(((p_type)NULL)->field))) - ((char *) NULL)))
97
98 #endif /* !CRAY */
99
100 /**
101  * Finding offsets of elements within structures.
102  * @param s_type structure type name
103  * @param field  data field within the structure
104  * @return offset
105  */
106 #if defined(offsetof) && !defined(__cplusplus)
107 #define APR_OFFSETOF(s_type,field) offsetof(s_type,field)
108 #else
109 #define APR_OFFSETOF(s_type,field) APR_OFFSET(s_type*,field)
110 #endif
111
112 /** @deprecated @see APR_OFFSET */
113 #define APR_XtOffset APR_OFFSET
114
115 /** @deprecated @see APR_OFFSETOF */
116 #define APR_XtOffsetOf APR_OFFSETOF
117
118 #ifndef DOXYGEN
119
120 /* A couple of prototypes for functions in case some platform doesn't 
121  * have it
122  */
123 #if (!APR_HAVE_STRCASECMP) && (APR_HAVE_STRICMP) 
124 #define strcasecmp(s1, s2) stricmp(s1, s2)
125 #elif (!APR_HAVE_STRCASECMP)
126 int strcasecmp(const char *a, const char *b);
127 #endif
128
129 #if (!APR_HAVE_STRNCASECMP) && (APR_HAVE_STRNICMP)
130 #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n)
131 #elif (!APR_HAVE_STRNCASECMP)
132 int strncasecmp(const char *a, const char *b, size_t n);
133 #endif
134
135 #endif
136
137 /**
138  * Alignment macros
139  */
140
141 /* APR_ALIGN() is only to be used to align on a power of 2 boundary */
142 #define APR_ALIGN(size, boundary) \
143     (((size) + ((boundary) - 1)) & ~((boundary) - 1))
144
145 /** Default alignment */
146 #define APR_ALIGN_DEFAULT(size) APR_ALIGN(size, 8)
147
148
149 /**
150  * String and memory functions
151  */
152
153 /** Properly quote a value as a string in the C preprocessor */
154 #define APR_STRINGIFY(n) APR_STRINGIFY_HELPER(n)
155 /** Helper macro for APR_STRINGIFY */
156 #define APR_STRINGIFY_HELPER(n) #n
157
158 #if (!APR_HAVE_MEMMOVE)
159 #define memmove(a,b,c) bcopy(b,a,c)
160 #endif
161
162 #if (!APR_HAVE_MEMCHR)
163 void *memchr(const void *s, int c, size_t n);
164 #endif
165
166 /** @} */
167
168 /**
169  * @defgroup apr_library Library initialization and termination
170  * @{
171  */
172
173 /**
174  * Setup any APR internal data structures.  This MUST be the first function 
175  * called for any APR library.
176  * @remark See apr_app_initialize if this is an application, rather than
177  * a library consumer of apr.
178  */
179 APR_DECLARE(apr_status_t) apr_initialize(void);
180
181 /**
182  * Set up an application with normalized argc, argv (and optionally env) in
183  * order to deal with platform-specific oddities, such as Win32 services,
184  * code pages and signals.  This must be the first function called for any
185  * APR program.
186  * @param argc Pointer to the argc that may be corrected
187  * @param argv Pointer to the argv that may be corrected
188  * @param env Pointer to the env that may be corrected, may be NULL
189  * @remark See apr_initialize if this is a library consumer of apr.
190  * Otherwise, this call is identical to apr_initialize, and must be closed
191  * with a call to apr_terminate at the end of program execution.
192  */
193 APR_DECLARE(apr_status_t) apr_app_initialize(int *argc, 
194                                              char const * const * *argv, 
195                                              char const * const * *env);
196
197 /**
198  * Tear down any APR internal data structures which aren't torn down 
199  * automatically.
200  * @remark An APR program must call this function at termination once it 
201  *         has stopped using APR services.  The APR developers suggest using
202  *         atexit to ensure this is called.  When using APR from a language
203  *         other than C that has problems with the calling convention, use
204  *         apr_terminate2() instead.
205  */
206 APR_DECLARE_NONSTD(void) apr_terminate(void);
207
208 /**
209  * Tear down any APR internal data structures which aren't torn down 
210  * automatically, same as apr_terminate
211  * @remark An APR program must call either the apr_terminate or apr_terminate2 
212  *         function once it it has finished using APR services.  The APR 
213  *         developers suggest using atexit(apr_terminate) to ensure this is done.
214  *         apr_terminate2 exists to allow non-c language apps to tear down apr, 
215  *         while apr_terminate is recommended from c language applications.
216  */
217 APR_DECLARE(void) apr_terminate2(void);
218
219 /** @} */
220
221 /**
222  * @defgroup apr_random Random Functions
223  * @{
224  */
225
226 #if APR_HAS_RANDOM || defined(DOXYGEN)
227
228 /* TODO: I'm not sure this is the best place to put this prototype...*/
229 /**
230  * Generate random bytes.
231  * @param buf Buffer to fill with random bytes
232  * @param length Length of buffer in bytes (becomes apr_size_t in APR 1.0)
233  */
234 #ifdef APR_ENABLE_FOR_1_0
235 APR_DECLARE(apr_status_t) apr_generate_random_bytes(unsigned char * buf, 
236                                                     apr_size_t length);
237 #else
238 APR_DECLARE(apr_status_t) apr_generate_random_bytes(unsigned char * buf, 
239                                                     int length);
240 #endif
241
242 #endif
243 /** @} */
244
245 #ifdef __cplusplus
246 }
247 #endif
248
249 #endif  /* ! APR_GENERAL_H */