jk_util.h
来自「Tomcat 4.1与WebServer集成组件的源代码包.」· C头文件 代码 · 共 231 行
H
231 行
/* ========================================================================= * * * * The Apache Software License, Version 1.1 * * * * Copyright (c) 1999-2001 The Apache Software Foundation. * * All rights reserved. * * * * ========================================================================= * * * * Redistribution and use in source and binary forms, with or without modi- * * fication, are permitted provided that the following conditions are met: * * * * 1. Redistributions of source code must retain the above copyright notice * * notice, this list of conditions and the following disclaimer. * * * * 2. Redistributions in binary form must reproduce the above copyright * * notice, this list of conditions and the following disclaimer in the * * documentation and/or other materials provided with the distribution. * * * * 3. The end-user documentation included with the redistribution, if any, * * must include the following acknowlegement: * * * * "This product includes software developed by the Apache Software * * Foundation <http://www.apache.org/>." * * * * Alternately, this acknowlegement may appear in the software itself, if * * and wherever such third-party acknowlegements normally appear. * * * * 4. The names "The Jakarta Project", "Jk", and "Apache Software * * Foundation" must not be used to endorse or promote products derived * * from this software without prior written permission. For written * * permission, please contact <apache@apache.org>. * * * * 5. Products derived from this software may not be called "Apache" nor may * * "Apache" appear in their names without prior written permission of the * * Apache Software Foundation. * * * * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES * * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * * THE APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY * * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * * POSSIBILITY OF SUCH DAMAGE. * * * * ========================================================================= * * * * This software consists of voluntary contributions made by many indivi- * * duals on behalf of the Apache Software Foundation. For more information * * on the Apache Software Foundation, please see <http://www.apache.org/>. * * * * ========================================================================= *//*************************************************************************** * Description: Various utility functions * * Author: Gal Shachor <shachor@il.ibm.com> * * Author: Henri Gomez <hgomez@slib.fr> * * Version: $Revision: 1.9 $ * ***************************************************************************/#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, 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, char **prop);int jk_get_worker_int_prop(jk_map_t *m, const char *wname, const char *pname, int *prop);char *jk_get_worker_host(jk_map_t *m, const char *wname, const char *def);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_socket_timeout(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);char * jk_get_worker_secret_key(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);double jk_get_lb_factor(jk_map_t *m, const char *wname);int jk_get_is_sticky_session(jk_map_t *m, const char *wname);int jk_get_is_local_worker(jk_map_t *m, const char *wname);int jk_get_is_local_worker_only_flag(jk_map_t *m, const char *lb_wname);int jk_get_lb_worker_list(jk_map_t *m, const char *lb_wname, char ***list, unsigned *num_of_wokers);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, 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, char **vm_path);int jk_get_worker_callback_dll(jk_map_t *m, const char *wname, char **cb_path);int jk_get_worker_cmd_line(jk_map_t *m, const char *wname, 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_get_worker_stdout(jk_map_t *m, const char *wname, char **stdout_name);int jk_get_worker_stderr(jk_map_t *m, const char *wname, char **stderr_name);int jk_get_worker_sysprops(jk_map_t *m, const char *wname, char **sysprops);int jk_get_worker_libpath(jk_map_t *m, const char *wname, 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_init_ws_service(jk_ws_service_t *s);#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 __cplusplusextern "C" {#endif /* __cplusplus */#ifdef __cplusplus}#endif /* __cplusplus */#endif /* _JK_UTIL_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?