OSDN Git Service

* temp commit.
[modchxj/mod_chxj.git] / include / chxj_apache.h
1 /*
2  * Copyright (C) 2005-2008 Atsushi Konno All rights reserved.
3  * Copyright (C) 2005 QSDN,Inc. All rights reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 #ifndef __CHXJ_APACHE_H__
18 #define __CHXJ_APACHE_H__
19
20
21 #if defined(CHXJ_TEST)
22 #  define chxj_log_rerror test_log_rerror
23 #  define chxj_log_perror test_log_perror
24 #  define chxj_log_error test_log_error
25 #  define chxj_run_http_scheme test_run_http_scheme
26 #  include "apr.h"
27 #  include "apr_pools.h"
28 #  include "apr_tables.h"
29 #  include "apr_uri.h"
30 #  define APLOG_EMERG 0   /* system is unusable */
31 #  define APLOG_ALERT 1   /* action must be taken immediately */
32 #  define APLOG_CRIT  2   /* critical conditions */
33 #  define APLOG_ERR   3   /* error conditions */
34 #  define APLOG_WARNING   4   /* warning conditions */
35 #  define APLOG_NOTICE    5   /* normal but significant condition */
36 #  define APLOG_INFO  6   /* informational */
37 #  define APLOG_DEBUG 7   /* debug-level messages */
38 #  define APLOG_LEVELMASK 7   /* mask off the level value */
39 #  ifndef __CONFIG_H__
40 #    define __CONFIG_H__
41 #    undef PACKAGE_NAME
42 #    undef PACKAGE_STRING
43 #    undef PACKAGE_TARNAME
44 #    undef PACKAGE_VERSION
45 #    include "test_config.h"
46 #  endif
47 #  define AP_MODULE_DECLARE_DATA
48 #  define APLOG_MARK   __FILE__,__LINE__
49 typedef struct module_struct module;
50 struct module_struct {
51     int version;
52     int minor_version;
53     int module_index;
54     const char *name;
55     void *dynamic_load_handle;
56     struct module_struct *next;
57     unsigned long magic;
58     void (*rewrite_args) (void *process);
59     void *(*create_dir_config) (apr_pool_t *p, char *dir);
60     void *(*merge_dir_config) (apr_pool_t *p, void *base_conf, void *new_conf);
61     void *(*create_server_config) (apr_pool_t *p, void *s);
62     void *(*merge_server_config) (apr_pool_t *p, void *base_conf, void *new_conf);
63     const void *cmds;
64     void (*register_hooks) (apr_pool_t *p);
65 };
66 typedef struct ap_conf_vector_t ap_conf_vector_t;
67 typedef struct test_request_rec {
68   apr_pool_t *pool;
69   ap_conf_vector_t *per_dir_config;
70   apr_table_t *headers_in;
71   apr_table_t *headers_out;
72   apr_table_t *err_headers_out;
73   char *uri;
74   char *args;
75   char *hostname;
76   char *unparsed_uri;
77   apr_uri_t parsed_uri;
78 } request_rec;
79
80
81 extern void test_log_error(const char *file, int line, int level, apr_status_t status, const request_rec *r, const char *fmt, ...);
82 extern void test_log_rerror(const char *file, int line, int level, apr_status_t status, const request_rec *r, const char *fmt, ...);
83 extern void test_log_perror(const char *file, int line, int level, apr_status_t status, apr_pool_t *p, const char *fmt, ...);
84 extern const char *test_run_http_scheme(request_rec *r);
85 extern char *test_os_escape_path(apr_pool_t *p, const char *path, int partial);
86 extern void test_set_content_type(request_rec *r, const char *ct);
87 extern void *test_get_module_config(const ap_conf_vector_t *cv, const module *m);
88 extern char *test_ap_escape_html(apr_pool_t *p, const char *s);
89
90 #else
91 #  include "httpd.h"
92 #  include "http_config.h"
93 #  include "http_protocol.h"
94 #  include "http_request.h"
95 #  include "http_log.h"
96 #  include "ap_config.h"
97 #  include "util_filter.h"
98 #  ifndef __CONFIG_H__
99 #    define __CONFIG_H__
100
101 #    undef PACKAGE_NAME
102 #    undef PACKAGE_STRING
103 #    undef PACKAGE_TARNAME
104 #    undef PACKAGE_VERSION
105 #    include "config.h"
106 #  endif
107 #  define chxj_log_rerror ap_log_rerror
108 #  define chxj_log_error ap_log_error
109 #  define chxj_log_perror ap_log_perror
110 #  define chxj_run_http_scheme chxj_apache_run_http_scheme
111 #endif
112
113 #define chxj_escape_uri(p,path) chxj_os_escape_path(p,path,1)
114
115 extern const char *chxj_apache_run_http_scheme(request_rec *r);
116 extern char * chxj_os_escape_path(apr_pool_t *p, const char *path, int partial);
117 extern void chxj_set_content_type(request_rec *r, const char *ct);
118 extern void * chxj_get_module_config(const ap_conf_vector_t *cv, const module *m);
119 extern char *chxj_ap_escape_html(apr_pool_t *p, const char *s);
120
121
122 #endif
123 /*
124  * vim:ts=2 et
125  */