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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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: Workers controller *
* Author: Gal Shachor <shachor@il.ibm.com> *
* Author: Henri Gomez <hgomez@apache.org> *
* Version: $Revision: 1665454 $ *
***************************************************************************/
#define _PLACE_WORKER_LIST_HERE
#include "jk_worker_list.h"
#include "jk_worker.h"
#include "jk_shm.h"
#include "jk_util.h"
#include "jk_mt.h"
#define JK_WORKER_SHUTDOWN_WAIT 100
#define JK_WORKER_SHUTDOWN_COUNT 10
static void close_workers(jk_logger_t *l);
static worker_factory get_factory_for(const 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);
/* Global worker list */
static jk_map_t *worker_map;
static int running_maintain = 0;
#if _MT_CODE
static JK_CRIT_SEC worker_lock;
#endif
static int worker_maintain_time = 0;
int wc_open(jk_map_t *init_data, jk_worker_env_t *we, jk_logger_t *l)
{
int rc;
JK_TRACE_ENTER(l);
if (!jk_map_alloc(&worker_map)) {
JK_TRACE_EXIT(l);
return JK_FALSE;
}
JK_INIT_CS(&worker_lock, rc);
if (rc == JK_FALSE) {
jk_log(l, JK_LOG_ERROR,
"creating thread lock (errno=%d)",
errno);
JK_TRACE_EXIT(l);
return JK_FALSE;
}
jk_map_dump(init_data, l);
we->init_data = init_data;
if (!jk_get_worker_list(init_data, &(we->worker_list),
&we->num_of_workers)) {
JK_TRACE_EXIT(l);
we->num_of_workers = 0;
we->worker_list = NULL;
return JK_FALSE;
}
worker_maintain_time = jk_get_worker_maintain_time(init_data);
if(worker_maintain_time < 0)
worker_maintain_time = 0;
if (!build_worker_map(init_data, we->worker_list,
we->num_of_workers, we, l)) {
close_workers(l);
we->num_of_workers = 0;
we->worker_list = NULL;
JK_TRACE_EXIT(l);
return JK_FALSE;
}
JK_TRACE_EXIT(l);
return JK_TRUE;
}
void wc_close(jk_logger_t *l)
{
JK_TRACE_ENTER(l);
JK_DELETE_CS(&worker_lock);
close_workers(l);
JK_TRACE_EXIT(l);
}
jk_worker_t *wc_get_worker_for_name(const char *name, jk_logger_t *l)
{
jk_worker_t *rc;
JK_TRACE_ENTER(l);
if (!name) {
JK_LOG_NULL_PARAMS(l);
JK_TRACE_EXIT(l);
return NULL;
}
rc = jk_map_get(worker_map, name, NULL);
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG, "%s a worker %s",
rc ? "found" : "did not find", name);
JK_TRACE_EXIT(l);
return rc;
}
int wc_create_worker(const char *name, int use_map,
jk_map_t *init_data,
jk_worker_t **rc, jk_worker_env_t *we, jk_logger_t *l)
{
JK_TRACE_ENTER(l);
if (jk_check_attribute_length("name", name, l) == JK_FALSE) {
JK_TRACE_EXIT(l);
return JK_FALSE;
}
if (rc) {
const char *type = jk_get_worker_type(init_data, name);
worker_factory fac = get_factory_for(type);
jk_worker_t *w = NULL;
unsigned int i, num_of_maps;
char **map_names;
int wtype;
*rc = NULL;
if (!fac) {
jk_log(l, JK_LOG_ERROR, "Unknown worker type %s for worker %s",
type, name);
JK_TRACE_EXIT(l);
return JK_FALSE;
}
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG,
"about to create instance %s of %s", name,
type);
if (((wtype = fac(&w, name, l)) == 0) || !w) {
jk_log(l, JK_LOG_ERROR,
"factory for %s failed for %s", type,
name);
JK_TRACE_EXIT(l);
return JK_FALSE;
}
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG,
"about to validate and init %s", name);
if (!w->validate(w, init_data, we, l)) {
w->destroy(&w, l);
jk_log(l, JK_LOG_ERROR,
"validate failed for %s", name);
JK_TRACE_EXIT(l);
return JK_FALSE;
}
if (!w->init(w, init_data, we, l)) {
w->destroy(&w, l);
jk_log(l, JK_LOG_ERROR, "init failed for %s",
name);
JK_TRACE_EXIT(l);
return JK_FALSE;
}
if (use_map &&
jk_get_worker_mount_list(init_data, name,
&map_names,
&num_of_maps) && num_of_maps) {
for (i = 0; i < num_of_maps; i++) {
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG,
"mounting %s to worker %s",
map_names[i], name);
if (uri_worker_map_add(we->uri_to_worker, map_names[i],
name, SOURCE_TYPE_WORKERDEF, l) == JK_FALSE) {
w->destroy(&w, l);
jk_log(l, JK_LOG_ERROR,
"mounting %s failed for %s",
map_names[i], name);
JK_TRACE_EXIT(l);
return JK_FALSE;
}
}
}
w->type = wtype;
*rc = w;
JK_TRACE_EXIT(l);
return JK_TRUE;
}
JK_LOG_NULL_PARAMS(l);
return JK_FALSE;
}
static void close_workers(jk_logger_t *l)
{
int sz = jk_map_size(worker_map);
JK_TRACE_ENTER(l);
if (sz > 0) {
int i;
for (i = 0; i < sz; i++) {
jk_worker_t *w = jk_map_value_at(worker_map, i);
if (w) {
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG,
"close_workers will destroy worker %s",
jk_map_name_at(worker_map, i));
w->destroy(&w, l);
}
}
}
jk_map_free(&worker_map);
JK_TRACE_EXIT(l);
}
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_TRACE_ENTER(l);
for (i = 0; i < num_of_workers; i++) {
jk_worker_t *w = NULL;
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG,
"creating worker %s", worker_list[i]);
if (wc_create_worker(worker_list[i], 1, init_data, &w, we, l)) {
jk_worker_t *oldw = NULL;
if (!jk_map_put(worker_map, worker_list[i], w, (void *)&oldw)) {
jk_log(l, JK_LOG_ERROR,
"failed to add worker %s to worker map",
worker_list[i]);
w->destroy(&w, l);
JK_TRACE_EXIT(l);
return JK_FALSE;
}
if (oldw) {
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG,
"removing old %s worker",
worker_list[i]);
oldw->destroy(&oldw, l);
}
}
else {
jk_log(l, JK_LOG_ERROR,
"failed to create worker %s",
worker_list[i]);
JK_TRACE_EXIT(l);
return JK_FALSE;
}
}
JK_TRACE_EXIT(l);
return JK_TRUE;
}
static worker_factory get_factory_for(const 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;
}
const char *wc_get_name_for_type(int type, jk_logger_t *l)
{
worker_factory_record_t *factory = &worker_factories[0];
while (factory->name) {
if (type == factory->type) {
jk_log(l, JK_LOG_DEBUG,
"Found worker type '%s'",
factory->name);
return factory->name;
}
factory++;
}
return NULL;
}
void wc_maintain(jk_logger_t *l)
{
static time_t last_maintain = 0;
int needs_global_maintenance;
int sz = jk_map_size(worker_map);
JK_TRACE_ENTER(l);
/* Only proceed if all of the below hold true:
* - there are workers
* - maintenance wasn't disabled by configuration
* - time since last maintenance is big enough
*/
if (sz > 0 && worker_maintain_time > 0 &&
difftime(time(NULL), last_maintain) >= worker_maintain_time &&
!running_maintain) {
int i;
JK_ENTER_CS(&worker_lock);
if (running_maintain ||
difftime(time(NULL), last_maintain) < worker_maintain_time) {
/* Already in maintain */
JK_LEAVE_CS(&worker_lock);
JK_TRACE_EXIT(l);
return;
}
/* Set the maintain run flag so other threads skip
* the maintain until we are finished.
*/
running_maintain = 1;
last_maintain = time(NULL);
JK_LEAVE_CS(&worker_lock);
needs_global_maintenance = jk_shm_check_maintain(last_maintain - worker_maintain_time);
for (i = 0; i < sz; i++) {
jk_worker_t *w = jk_map_value_at(worker_map, i);
if (w && w->maintain) {
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG,
"Maintaining worker %s",
jk_map_name_at(worker_map, i));
w->maintain(w, time(NULL), needs_global_maintenance, l);
}
}
JK_ENTER_CS(&worker_lock);
running_maintain = 0;
JK_LEAVE_CS(&worker_lock);
}
JK_TRACE_EXIT(l);
}
void wc_shutdown(jk_logger_t *l)
{
int sz = jk_map_size(worker_map);
JK_TRACE_ENTER(l);
if (sz > 0) {
int i;
i = JK_WORKER_SHUTDOWN_COUNT;
while (running_maintain && i > 0) {
jk_sleep(JK_WORKER_SHUTDOWN_WAIT);
i--;
}
if (running_maintain)
jk_log(l, JK_LOG_WARNING,
"Worker maintain still running while shutting down worker %s",
jk_map_name_at(worker_map, i));
running_maintain = 1;
for (i = 0; i < sz; i++) {
jk_worker_t *w = jk_map_value_at(worker_map, i);
if (w && w->shutdown) {
if (JK_IS_DEBUG_LEVEL(l))
jk_log(l, JK_LOG_DEBUG,
"Shutting down worker %s",
jk_map_name_at(worker_map, i));
w->shutdown(w, l);
}
}
}
JK_TRACE_EXIT(l);
}
|