1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
/*
* Copyright 1999-2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/***************************************************************************
* Description: Various utility functions *
* Author: Gal Shachor <shachor@il.ibm.com> *
* Author: Henri Gomez <hgomez@apache.org> *
* Author: Rainer Jung <rjung@apache.org> *
* Version: $Revision: 411539 $ *
***************************************************************************/
#ifndef _JK_UTIL_H
#define _JK_UTIL_H
#include "jk_global.h"
#include "jk_map.h"
#include "jk_pool.h"
#include "jk_logger.h"
#include "jk_service.h"
int jk_parse_log_level(const char *level);
int jk_open_file_logger(jk_logger_t **l, const char *file, int level);
int jk_close_file_logger(jk_logger_t **l);
int jk_log(jk_logger_t *l,
const char *file, int line, const char *funcname, int level,
const char *fmt, ...);
/* [V] Two general purpose functions. Should ease the function bloat. */
int jk_get_worker_str_prop(jk_map_t *m,
const char *wname, const char *pname, const char **prop);
int jk_get_worker_int_prop(jk_map_t *m,
const char *wname, const char *pname, int *prop);
const char *jk_get_worker_host(jk_map_t *m, const char *wname, const char *def);
const char *jk_get_worker_type(jk_map_t *m, const char *wname);
int jk_get_worker_port(jk_map_t *m, const char *wname, int def);
int jk_get_worker_cache_size(jk_map_t *m, const char *wname, int def);
int jk_get_worker_cache_size_min(jk_map_t *m, const char *wname, int def);
int jk_get_worker_socket_timeout(jk_map_t *m, const char *wname, int def);
int jk_get_worker_socket_buffer(jk_map_t *m, const char *wname, int def);
int jk_get_worker_socket_keepalive(jk_map_t *m, const char *wname, int def);
int jk_get_worker_cache_timeout(jk_map_t *m, const char *wname, int def);
int jk_get_worker_recovery_opts(jk_map_t *m, const char *wname, int def);
int jk_get_worker_connect_timeout(jk_map_t *m, const char *wname, int def);
int jk_get_worker_reply_timeout(jk_map_t *m, const char *wname, int def);
int jk_get_worker_prepost_timeout(jk_map_t *m, const char *wname, int def);
int jk_get_worker_recycle_timeout(jk_map_t *m, const char *wname, int def);
int jk_get_worker_recover_timeout(jk_map_t *m, const char *wname, int def);
const char *jk_get_worker_jvm_route(jk_map_t *m, const char *wname, const char *def);
const char *jk_get_worker_domain(jk_map_t *m, const char *wname, const char *def);
const char *jk_get_worker_redirect(jk_map_t *m, const char *wname, const char *def);
const char *jk_get_worker_secret_key(jk_map_t *m, const char *wname);
int jk_get_worker_retries(jk_map_t *m, const char *wname, int def);
int jk_get_is_worker_disabled(jk_map_t *m, const char *wname);
int jk_get_is_worker_stopped(jk_map_t *m, const char *wname);
void jk_set_log_format(const char *logformat);
int jk_get_worker_list(jk_map_t *m, char ***list, unsigned *num_of_wokers);
int jk_get_lb_factor(jk_map_t *m, const char *wname);
int jk_get_distance(jk_map_t *m, const char *wname);
int jk_get_is_sticky_session(jk_map_t *m, const char *wname);
int jk_get_is_sticky_session_force(jk_map_t *m, const char *wname);
int jk_get_lb_method(jk_map_t *m, const char *wname);
int jk_get_lb_lock(jk_map_t *m, const char *wname);
int jk_get_lb_worker_list(jk_map_t *m,
const char *lb_wname,
char ***list, unsigned int *num_of_wokers);
int jk_get_worker_mount_list(jk_map_t *m,
const char *wname,
char ***list, unsigned int *num_of_maps);
const char *jk_get_worker_secret(jk_map_t *m, const char *wname);
int jk_get_worker_mx(jk_map_t *m, const char *wname, unsigned *mx);
int jk_get_worker_ms(jk_map_t *m, const char *wname, unsigned *ms);
int jk_get_worker_classpath(jk_map_t *m, const char *wname, const char **cp);
int jk_get_worker_bridge_type(jk_map_t *m, const char *wname, unsigned *bt);
int jk_get_worker_jvm_path(jk_map_t *m, const char *wname, const char **vm_path);
int jk_get_worker_callback_dll(jk_map_t *m,
const char *wname, const char **cb_path);
int jk_get_worker_cmd_line(jk_map_t *m, const char *wname, const char **cmd_line);
int jk_file_exists(const char *f);
int jk_is_path_poperty(const char *prp_name);
int jk_is_cmd_line_poperty(const char *prp_name);
int jk_is_unique_property(const char *prp_name);
int jk_is_deprecated_property(const char *prp_name);
int jk_get_worker_stdout(jk_map_t *m, const char *wname, const char **stdout_name);
int jk_get_worker_stderr(jk_map_t *m, const char *wname, const char **stderr_name);
int jk_get_worker_sysprops(jk_map_t *m, const char *wname, const char **sysprops);
int jk_get_worker_libpath(jk_map_t *m, const char *wname, const char **libpath);
char **jk_parse_sysprops(jk_pool_t *p, const char *sysprops);
void jk_append_libpath(jk_pool_t *p, const char *libpath);
void jk_set_worker_def_cache_size(int sz);
int jk_get_worker_def_cache_size(int protocol);
int jk_get_worker_maintain_time(jk_map_t *m);
#define TC32_BRIDGE_TYPE 32
#define TC33_BRIDGE_TYPE 33
#define TC40_BRIDGE_TYPE 40
#define TC41_BRIDGE_TYPE 41
#define TC50_BRIDGE_TYPE 50
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _JK_UTIL_H */
|