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 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
/* Gearman server and library
* Copyright (C) 2008 Brian Aker, Eric Day
* All rights reserved.
*
* Use and distribution licensed under the BSD license. See
* the COPYING file in the parent directory for full text.
*/
/**
* @file
* @brief Gearmand Thread Definitions
*/
#include "common.h"
#include "gearmand.h"
/*
* Private declarations
*/
/**
* @addtogroup gearmand_thread_private Private Gearmand Thread Functions
* @ingroup gearmand_thread
* @{
*/
static void *_thread(void *data);
static void _log(const char *line, gearman_verbose_t verbose, void *context);
static void _run(gearman_server_thread_st *thread, void *fn_arg);
static gearman_return_t _wakeup_init(gearmand_thread_st *thread);
static void _wakeup_close(gearmand_thread_st *thread);
static void _wakeup_clear(gearmand_thread_st *thread);
static void _wakeup_event(int fd, short events, void *arg);
static void _clear_events(gearmand_thread_st *thread);
/** @} */
/*
* Public definitions
*/
gearman_return_t gearmand_thread_create(gearmand_st *gearmand)
{
gearmand_thread_st *thread;
gearman_return_t ret;
int pthread_ret;
thread= malloc(sizeof(gearmand_thread_st));
if (thread == NULL)
{
gearmand_log_fatal(gearmand, "gearmand_thread_create:malloc");
return GEARMAN_MEMORY_ALLOCATION_FAILURE;
}
if (gearman_server_thread_create(&(gearmand->server),
&(thread->server_thread)) == NULL)
{
free(thread);
gearmand_log_fatal(gearmand, "gearmand_thread_create:gearman_server_thread_create:NULL");
return GEARMAN_MEMORY_ALLOCATION_FAILURE;
}
gearman_server_thread_set_log_fn(&(thread->server_thread), _log, thread,
gearmand->verbose);
gearman_server_thread_set_event_watch(&(thread->server_thread),
gearmand_connection_watch, NULL);
thread->options= 0;
thread->count= 0;
thread->dcon_count= 0;
thread->dcon_add_count= 0;
thread->free_dcon_count= 0;
thread->wakeup_fd[0]= -1;
thread->wakeup_fd[1]= -1;
GEARMAN_LIST_ADD(gearmand->thread, thread,)
thread->gearmand= gearmand;
thread->dcon_list= NULL;
thread->dcon_add_list= NULL;
thread->free_dcon_list= NULL;
/* If we have no threads, we still create a fake thread that uses the main
libevent instance. Otherwise create a libevent instance for each thread. */
if (gearmand->threads == 0)
thread->base= gearmand->base;
else
{
gearmand_log_info(gearmand, "Initializing libevent for IO thread");
thread->base= event_base_new();
if (thread->base == NULL)
{
gearmand_thread_free(thread);
gearmand_log_fatal(gearmand, "gearmand_thread_create:event_base_new:NULL");
return GEARMAN_EVENT;
}
}
ret= _wakeup_init(thread);
if (ret != GEARMAN_SUCCESS)
{
gearmand_thread_free(thread);
return ret;
}
/* If we are not running multi-threaded, just return the thread context. */
if (gearmand->threads == 0)
return GEARMAN_SUCCESS;
thread->count= gearmand->thread_count;
pthread_ret= pthread_mutex_init(&(thread->lock), NULL);
if (pthread_ret != 0)
{
thread->count= 0;
gearmand_thread_free(thread);
gearmand_log_fatal(gearmand, "gearmand_thread_create:pthread_mutex_init:%d", pthread_ret);
return GEARMAN_PTHREAD;
}
thread->options|= GEARMAND_THREAD_LOCK;
gearman_server_thread_set_run(&(thread->server_thread), _run, thread);
pthread_ret= pthread_create(&(thread->id), NULL, _thread, thread);
if (pthread_ret != 0)
{
thread->count= 0;
gearmand_thread_free(thread);
gearmand_log_fatal(gearmand, "gearmand_thread_create:pthread_create:%d", pthread_ret);
return GEARMAN_PTHREAD;
}
gearmand_log_info(gearmand, "Thread %u created", thread->count);
return GEARMAN_SUCCESS;
}
void gearmand_thread_free(gearmand_thread_st *thread)
{
gearmand_con_st *dcon;
if (thread->gearmand->threads && thread->count > 0)
{
gearmand_log_info(thread->gearmand, "Shutting down thread %u", thread->count);
gearmand_thread_wakeup(thread, GEARMAND_WAKEUP_SHUTDOWN);
(void) pthread_join(thread->id, NULL);
}
if (thread->options & GEARMAND_THREAD_LOCK)
(void) pthread_mutex_destroy(&(thread->lock));
_wakeup_close(thread);
while (thread->dcon_list != NULL)
gearmand_con_free(thread->dcon_list);
while (thread->dcon_add_list != NULL)
{
dcon= thread->dcon_add_list;
thread->dcon_add_list= dcon->next;
close(dcon->fd);
free(dcon);
}
while (thread->free_dcon_list != NULL)
{
dcon= thread->free_dcon_list;
thread->free_dcon_list= dcon->next;
free(dcon);
}
gearman_server_thread_free(&(thread->server_thread));
GEARMAN_LIST_DEL(thread->gearmand->thread, thread,)
if (thread->gearmand->threads > 0)
{
if (thread->base != NULL)
event_base_free(thread->base);
gearmand_log_info(thread->gearmand, "Thread %u shutdown complete", thread->count);
}
free(thread);
}
void gearmand_thread_wakeup(gearmand_thread_st *thread,
gearmand_wakeup_t wakeup)
{
uint8_t buffer= wakeup;
/* If this fails, there is not much we can really do. This should never fail
though if the thread is still active. */
if (write(thread->wakeup_fd[1], &buffer, 1) != 1)
gearmand_log_error(thread->gearmand, "gearmand_thread_wakeup:write:%d", errno);
}
void gearmand_thread_run(gearmand_thread_st *thread)
{
gearman_server_con_st *server_con;
gearman_return_t ret;
gearmand_con_st *dcon;
while (1)
{
server_con= gearman_server_thread_run(&(thread->server_thread), &ret);
if (ret == GEARMAN_SUCCESS || ret == GEARMAN_IO_WAIT ||
ret == GEARMAN_SHUTDOWN_GRACEFUL)
{
return;
}
if (server_con == NULL)
{
/* We either got a GEARMAN_SHUTDOWN or some other fatal internal error.
Either way, we want to shut the server down. */
gearmand_wakeup(thread->gearmand, GEARMAND_WAKEUP_SHUTDOWN);
return;
}
dcon= (gearmand_con_st *)gearman_server_con_data(server_con);
gearmand_log_info(thread->gearmand, "[%4u] %15s:%5s Disconnected", thread->count, dcon->host, dcon->port);
gearmand_con_free(dcon);
}
}
/*
* Private definitions
*/
static void *_thread(void *data)
{
gearmand_thread_st *thread= (gearmand_thread_st *)data;
gearmand_log_info(thread->gearmand, "[%4u] Entering thread event loop", thread->count);
if (event_base_loop(thread->base, 0) == -1)
{
gearmand_log_fatal(thread->gearmand, "_io_thread:event_base_loop:-1");
thread->gearmand->ret= GEARMAN_EVENT;
}
gearmand_log_info(thread->gearmand, "[%4u] Exiting thread event loop", thread->count);
return NULL;
}
static void _log(const char *line, gearman_verbose_t verbose, void *context)
{
gearmand_thread_st *dthread= (gearmand_thread_st *)context;
char buffer[GEARMAN_MAX_ERROR_SIZE];
snprintf(buffer, GEARMAN_MAX_ERROR_SIZE, "[%4u] %s", dthread->count, line);
(*dthread->gearmand->log_fn)(buffer, verbose,
(void *)dthread->gearmand->log_context);
}
static void _run(gearman_server_thread_st *thread __attribute__ ((unused)),
void *fn_arg)
{
gearmand_thread_st *dthread= (gearmand_thread_st *)fn_arg;
gearmand_thread_wakeup(dthread, GEARMAND_WAKEUP_RUN);
}
static gearman_return_t _wakeup_init(gearmand_thread_st *thread)
{
int ret;
gearmand_log_info(thread->gearmand, "Creating IO thread wakeup pipe");
ret= pipe(thread->wakeup_fd);
if (ret == -1)
{
gearmand_log_fatal(thread->gearmand, "_wakeup_init:pipe:%d", errno);
return GEARMAN_ERRNO;
}
ret= fcntl(thread->wakeup_fd[0], F_GETFL, 0);
if (ret == -1)
{
gearmand_log_fatal(thread->gearmand, "_wakeup_init:fcntl:F_GETFL:%d", errno);
return GEARMAN_ERRNO;
}
ret= fcntl(thread->wakeup_fd[0], F_SETFL, ret | O_NONBLOCK);
if (ret == -1)
{
gearmand_log_fatal(thread->gearmand, "_wakeup_init:fcntl:F_SETFL:%d", errno);
return GEARMAN_ERRNO;
}
event_set(&(thread->wakeup_event), thread->wakeup_fd[0], EV_READ | EV_PERSIST,
_wakeup_event, thread);
event_base_set(thread->base, &(thread->wakeup_event));
if (event_add(&(thread->wakeup_event), NULL) == -1)
{
gearmand_log_fatal(thread->gearmand, "_wakeup_init:event_add:-1");
return GEARMAN_EVENT;
}
thread->options|= GEARMAND_THREAD_WAKEUP_EVENT;
return GEARMAN_SUCCESS;
}
static void _wakeup_close(gearmand_thread_st *thread)
{
_wakeup_clear(thread);
if (thread->wakeup_fd[0] >= 0)
{
gearmand_log_info(thread->gearmand, "Closing IO thread wakeup pipe");
close(thread->wakeup_fd[0]);
thread->wakeup_fd[0]= -1;
close(thread->wakeup_fd[1]);
thread->wakeup_fd[1]= -1;
}
}
static void _wakeup_clear(gearmand_thread_st *thread)
{
if (thread->options & GEARMAND_THREAD_WAKEUP_EVENT)
{
gearmand_log_info(thread->gearmand, "[%4u] Clearing event for IO thread wakeup pipe", thread->count);
int del_ret= event_del(&(thread->wakeup_event));
assert(del_ret == 0);
thread->options&= (gearmand_thread_options_t)~GEARMAND_THREAD_WAKEUP_EVENT;
}
}
static void _wakeup_event(int fd, short events __attribute__ ((unused)),
void *arg)
{
gearmand_thread_st *thread= (gearmand_thread_st *)arg;
uint8_t buffer[GEARMAN_PIPE_BUFFER_SIZE];
ssize_t ret;
ssize_t x;
while (1)
{
ret= read(fd, buffer, GEARMAN_PIPE_BUFFER_SIZE);
if (ret == 0)
{
_clear_events(thread);
gearmand_log_fatal(thread->gearmand, "_wakeup_event:read:EOF");
thread->gearmand->ret= GEARMAN_PIPE_EOF;
return;
}
else if (ret == -1)
{
if (errno == EINTR)
continue;
if (errno == EAGAIN)
break;
_clear_events(thread);
gearmand_log_fatal(thread->gearmand, "_wakeup_event:read:%d", errno);
thread->gearmand->ret= GEARMAN_ERRNO;
return;
}
for (x= 0; x < ret; x++)
{
switch ((gearmand_wakeup_t)buffer[x])
{
case GEARMAND_WAKEUP_PAUSE:
gearmand_log_info(thread->gearmand, "[%4u] Received PAUSE wakeup event", thread->count);
break;
case GEARMAND_WAKEUP_SHUTDOWN_GRACEFUL:
gearmand_log_info(thread->gearmand,
"[%4u] Received SHUTDOWN_GRACEFUL wakeup event",
thread->count);
if (gearman_server_shutdown_graceful(&(thread->gearmand->server)) == GEARMAN_SHUTDOWN)
{
gearmand_wakeup(thread->gearmand, GEARMAND_WAKEUP_SHUTDOWN);
}
break;
case GEARMAND_WAKEUP_SHUTDOWN:
gearmand_log_info(thread->gearmand, "[%4u] Received SHUTDOWN wakeup event", thread->count);
_clear_events(thread);
break;
case GEARMAND_WAKEUP_CON:
gearmand_log_info(thread->gearmand, "[%4u] Received CON wakeup event", thread->count);
gearmand_con_check_queue(thread);
break;
case GEARMAND_WAKEUP_RUN:
gearmand_log_debug(thread->gearmand, "[%4u] Received RUN wakeup event", thread->count);
gearmand_thread_run(thread);
break;
default:
gearmand_log_fatal(thread->gearmand, "[%4u] Received unknown wakeup event (%u)", thread->count, buffer[x]);
_clear_events(thread);
thread->gearmand->ret= GEARMAN_UNKNOWN_STATE;
break;
}
}
}
}
static void _clear_events(gearmand_thread_st *thread)
{
_wakeup_clear(thread);
while (thread->dcon_list != NULL)
gearmand_con_free(thread->dcon_list);
}
|