jk_worker.c
来自「Tomcat 4.1与WebServer集成组件的源代码包.」· C语言 代码 · 共 267 行
C
267 行
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil-*- *//* ========================================================================= * * * * 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: Workers controller * * Author: Gal Shachor <shachor@il.ibm.com> * * Author: Henri Gomez <hgomez@slib.fr> * * Version: $Revision: 1.11 $ * ***************************************************************************/#define _PLACE_WORKER_LIST_HERE#include "jk_worker_list.h"#include "jk_worker.h"#include "jk_util.h"static void close_workers(jk_logger_t *l);static worker_factory get_factory_for(char *type);static int build_worker_map(jk_map_t *init_data, char **worker_list, unsigned num_of_workers, jk_worker_env_t *we, jk_logger_t *l);int wc_open(jk_map_t *init_data, jk_worker_env_t *we, jk_logger_t *l){ char **worker_list = NULL; unsigned num_of_workers = 0; jk_log(l, JK_LOG_DEBUG, "Into wc_open\n"); if(!map_alloc(&worker_map)) { return JK_FALSE; } if(!jk_get_worker_list(init_data, &worker_list, &num_of_workers)) { return JK_FALSE; } if(!build_worker_map(init_data, worker_list, num_of_workers, we, l)) { close_workers(l); return JK_FALSE; } we->num_of_workers=num_of_workers; we->first_worker=worker_list[0]; jk_log(l, JK_LOG_DEBUG, "wc_open, done %d\n", num_of_workers); return JK_TRUE;}void wc_close(jk_logger_t *l){ jk_log(l, JK_LOG_DEBUG, "Into wc_close\n"); close_workers(l); jk_log(l, JK_LOG_DEBUG, "wc_close, done\n"); }jk_worker_t *wc_get_worker_for_name(const char *name, jk_logger_t *l){ jk_worker_t * rc; if(!name) { jk_log(l, JK_LOG_ERROR, "wc_get_worker_for_name NULL name\n"); } jk_log(l, JK_LOG_DEBUG, "Into wc_get_worker_for_name %s\n", name); rc = map_get(worker_map, name, NULL); jk_log(l, JK_LOG_DEBUG, "wc_get_worker_for_name, done %s found a worker\n", rc ? "" : "did not"); return rc;}int wc_create_worker(const char *name, jk_map_t *init_data, jk_worker_t **rc, jk_worker_env_t *we, jk_logger_t *l){ jk_log(l, JK_LOG_DEBUG, "Into wc_create_worker\n"); if(rc) { char *type = jk_get_worker_type(init_data, name); worker_factory fac = get_factory_for(type); jk_worker_t *w = NULL; *rc = NULL; if(!fac) { jk_log(l, JK_LOG_ERROR, "wc_create_worker NULL factory for %s\n", type); return JK_FALSE; } jk_log(l, JK_LOG_DEBUG, "wc_create_worker, about to create instance %s of %s\n", name, type); if(!fac(&w, name, l) || !w) { jk_log(l, JK_LOG_ERROR, "wc_create_worker factory for %s failed for %s\n", type, name); return JK_FALSE; } jk_log(l, JK_LOG_DEBUG, "wc_create_worker, about to validate and init %s\n", name); if(!w->validate(w, init_data, we, l)) { w->destroy(&w, l); jk_log(l, JK_LOG_ERROR, "wc_create_worker validate failed for %s\n", name); return JK_FALSE; } if(!w->init(w, init_data, we, l)) { w->destroy(&w, l); jk_log(l, JK_LOG_ERROR, "wc_create_worker init failed for %s\n", name); return JK_FALSE; } *rc = w; jk_log(l, JK_LOG_DEBUG, "wc_create_worker, done\n"); return JK_TRUE; } jk_log(l, JK_LOG_ERROR, "wc_create_worker, NUll input\n"); return JK_FALSE;}static void close_workers(jk_logger_t *l){ int sz = map_size(worker_map); jk_log(l, JK_LOG_DEBUG, "close_workers got %d workers to destroy\n", sz); if(sz > 0) { int i; for(i = 0 ; i < sz ; i++) { jk_worker_t *w = map_value_at(worker_map, i); if(w) { jk_log(l, JK_LOG_DEBUG, "close_workers will destroy worker %s\n", map_name_at(worker_map, i)); w->destroy(&w, l); } } } map_free(&worker_map);}static int build_worker_map(jk_map_t *init_data, char **worker_list, unsigned num_of_workers, jk_worker_env_t *we, jk_logger_t *l){ unsigned i; jk_log(l, JK_LOG_DEBUG, "Into build_worker_map, creating %d workers\n", num_of_workers); for(i = 0 ; i < num_of_workers ; i++) { jk_worker_t *w = NULL; jk_log(l, JK_LOG_DEBUG, "build_worker_map, creating worker %s\n", worker_list[i]); if(wc_create_worker(worker_list[i], init_data, &w, we, l)) { jk_worker_t *oldw = NULL; if(!map_put(worker_map, worker_list[i], w, (void *)&oldw)) { w->destroy(&w, l); return JK_FALSE; } jk_log(l, JK_LOG_DEBUG, "build_worker_map, removing old %s worker \n", worker_list[i]); if(oldw) { oldw->destroy(&oldw, l); } } else { jk_log(l, JK_LOG_ERROR, "build_worker_map failed to create worker%s\n", worker_list[i]); return JK_FALSE; } } jk_log(l, JK_LOG_DEBUG, "build_worker_map, done\n"); return JK_TRUE;}static worker_factory get_factory_for(char *type){ worker_factory_record_t *factory = &worker_factories[0]; while(factory->name) { if(0 == strcmp(factory->name, type)) { return factory->fac; } factory ++; } return NULL;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?