123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- /* 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 Server Thread Definitions
- */
- #include <config.h>
- #include <libgearman-server/common.h>
- #define GEARMAN_CORE
- #include <libgearman/command.h>
- #ifdef __cplusplus
- #include <cassert>
- #include <cerrno>
- #else
- #include <assert.h>
- #include <errno.h>
- #endif
- /*
- * Private declarations
- */
- /**
- * @addtogroup gearman_server_private Private Server Functions
- * @ingroup gearman_server
- * @{
- */
- /**
- * Try reading packets for a connection.
- */
- static gearmand_error_t _thread_packet_read(gearman_server_con_st *con);
- /**
- * Flush outgoing packets for a connection.
- */
- static gearmand_error_t _thread_packet_flush(gearman_server_con_st *con);
- /**
- * Start processing thread for the server.
- */
- static gearmand_error_t _proc_thread_start(gearman_server_st *server);
- /**
- * Kill processing thread for the server.
- */
- static void _proc_thread_kill(gearman_server_st *server);
- /**
- * Processing thread.
- */
- static void *_proc(void *data);
- /** @} */
- /*
- * Public definitions
- */
- bool gearman_server_thread_init(gearman_server_st *server,
- gearman_server_thread_st *thread,
- gearman_log_server_fn *log_function,
- gearmand_thread_st *context,
- gearmand_event_watch_fn *event_watch)
- {
- assert(server);
- assert(thread);
- if (server->thread_count == 1)
- {
- /* The server is going to be multi-threaded, start processing thread. */
- if (_proc_thread_start(server) != GEARMAN_SUCCESS)
- {
- return false;
- }
- }
- thread->con_count= 0;
- thread->io_count= 0;
- thread->proc_count= 0;
- thread->free_con_count= 0;
- thread->free_packet_count= 0;
- thread->log_fn= log_function;
- thread->log_context= context;
- thread->run_fn= NULL;
- thread->run_fn_arg= NULL;
- thread->con_list= NULL;
- thread->io_list= NULL;
- thread->proc_list= NULL;
- thread->free_con_list= NULL;
- thread->free_packet_list= NULL;
- int error;
- if ((error= pthread_mutex_init(&(thread->lock), NULL)))
- {
- errno= error;
- gearmand_perror("pthread_mutex_init");
- return false;
- }
- GEARMAN_LIST_ADD(server->thread, thread,);
- thread->gearman= &(thread->gearmand_connection_list_static);
- gearmand_connection_list_init(thread->gearman, event_watch, NULL);
- return true;
- }
- void gearman_server_thread_free(gearman_server_thread_st *thread)
- {
- gearman_server_con_st *con;
- gearman_server_packet_st *packet;
- _proc_thread_kill(Server);
- while (thread->con_list != NULL)
- {
- gearman_server_con_free(thread->con_list);
- }
- while (thread->free_con_list != NULL)
- {
- con= thread->free_con_list;
- thread->free_con_list= con->next;
- gearmand_debug("free");
- free(con);
- }
- while (thread->free_packet_list != NULL)
- {
- packet= thread->free_packet_list;
- thread->free_packet_list= packet->next;
- gearmand_debug("free");
- free(packet);
- }
- if (thread->gearman != NULL)
- gearman_connection_list_free(thread->gearman);
- pthread_mutex_destroy(&(thread->lock));
- GEARMAN_LIST_DEL(Server->thread, thread,)
- }
- void gearman_server_thread_set_run(gearman_server_thread_st *thread,
- gearman_server_thread_run_fn *run_fn,
- void *run_fn_arg)
- {
- thread->run_fn= run_fn;
- thread->run_fn_arg= run_fn_arg;
- }
- gearmand_con_st *
- gearman_server_thread_run(gearman_server_thread_st *thread,
- gearmand_error_t *ret_ptr)
- {
- /* If we are multi-threaded, we may have packets to flush or connections that
- should start reading again. */
- if (Server->flags.threaded)
- {
- gearman_server_con_st *server_con;
- while ((server_con= gearman_server_con_io_next(thread)) != NULL)
- {
- if (server_con->is_dead)
- {
- if (server_con->proc_removed)
- {
- gearman_server_con_free(server_con);
- }
- continue;
- }
- if (server_con->ret != GEARMAN_SUCCESS)
- {
- *ret_ptr= server_con->ret;
- return gearman_server_con_data(server_con);
- }
- /* See if any outgoing packets were queued. */
- *ret_ptr= _thread_packet_flush(server_con);
- if (*ret_ptr != GEARMAN_SUCCESS && *ret_ptr != GEARMAN_IO_WAIT)
- {
- return gearman_server_con_data(server_con);
- }
- }
- }
- /* Check for new activity on connections. */
- {
- gearman_server_con_st *server_con;
- while ((server_con= gearmand_ready(thread->gearman)))
- {
- /* Try to read new packets. */
- if (server_con->con.revents & POLLIN)
- {
- *ret_ptr= _thread_packet_read(server_con);
- if (*ret_ptr != GEARMAN_SUCCESS && *ret_ptr != GEARMAN_IO_WAIT)
- return gearman_server_con_data(server_con);
- }
- /* Flush existing outgoing packets. */
- if (server_con->con.revents & POLLOUT)
- {
- *ret_ptr= _thread_packet_flush(server_con);
- if (*ret_ptr != GEARMAN_SUCCESS && *ret_ptr != GEARMAN_IO_WAIT)
- {
- return gearman_server_con_data(server_con);
- }
- }
- }
- }
- /* Start flushing new outgoing packets if we are single threaded. */
- if (! (Server->flags.threaded))
- {
- gearman_server_con_st *server_con;
- while ((server_con= gearman_server_con_io_next(thread)))
- {
- *ret_ptr= _thread_packet_flush(server_con);
- if (*ret_ptr != GEARMAN_SUCCESS && *ret_ptr != GEARMAN_IO_WAIT)
- {
- return gearman_server_con_data(server_con);
- }
- }
- }
- /* Check for the two shutdown modes. */
- if (Server->shutdown)
- {
- *ret_ptr= GEARMAN_SHUTDOWN;
- }
- else if (Server->shutdown_graceful)
- {
- if (Server->job_count == 0)
- {
- *ret_ptr= GEARMAN_SHUTDOWN;
- }
- else
- {
- *ret_ptr= GEARMAN_SHUTDOWN_GRACEFUL;
- }
- }
- else
- {
- *ret_ptr= GEARMAN_SUCCESS;
- }
- return NULL;
- }
- /*
- * Private definitions
- */
- static gearmand_error_t _thread_packet_read(gearman_server_con_st *con)
- {
- while (1)
- {
- if (con->packet == NULL)
- {
- if (! (con->packet= gearman_server_packet_create(con->thread, true)))
- {
- return GEARMAN_MEMORY_ALLOCATION_FAILURE;
- }
- }
- gearmand_error_t ret;
- if (gearmand_failed(ret= gearman_io_recv(con, true)))
- {
- if (ret == GEARMAN_IO_WAIT)
- {
- break;
- }
- gearman_server_packet_free(con->packet, con->thread, true);
- con->packet= NULL;
- return ret;
- }
- gearmand_log_debug(GEARMAN_DEFAULT_LOG_PARAM,
- "Received %s %s:%u",
- gearman_command_info(con->packet->packet.command)->name,
- con->_host == NULL ? "-" : con->_host,
- con->_port == NULL ? "-" : con->_port);
- /* We read a complete packet. */
- if (Server->flags.threaded)
- {
- /* Multi-threaded, queue for the processing thread to run. */
- gearman_server_proc_packet_add(con, con->packet);
- con->packet= NULL;
- }
- else
- {
- /* Single threaded, run the command here. */
- gearmand_error_t rc= gearman_server_run_command(con, &(con->packet->packet));
- gearmand_packet_free(&(con->packet->packet));
- gearman_server_packet_free(con->packet, con->thread, true);
- con->packet= NULL;
- if (gearmand_failed(rc))
- return rc;
- }
- }
- return GEARMAN_SUCCESS;
- }
- static gearmand_error_t _thread_packet_flush(gearman_server_con_st *con)
- {
- /* Check to see if we've already tried to avoid excessive system calls. */
- if (con->con.events & POLLOUT)
- return GEARMAN_IO_WAIT;
- while (con->io_packet_list)
- {
- gearmand_error_t ret;
- ret= gearman_io_send(con, &(con->io_packet_list->packet),
- con->io_packet_list->next == NULL ? true : false);
- if (gearmand_failed(ret))
- {
- return ret;
- }
- gearmand_log_debug(GEARMAN_DEFAULT_LOG_PARAM,
- "Sent %s to %s:%d",
- gearman_command_info(con->io_packet_list->packet.command)->name,
- con->_host == NULL ? "-" : con->_host,
- con->_port == NULL ? "-" : con->_port);
- gearman_server_io_packet_remove(con);
- }
- /* Clear the POLLOUT flag. */
- return gearmand_io_set_events(con, POLLIN);
- }
- static gearmand_error_t _proc_thread_start(gearman_server_st *server)
- {
- if ((errno= pthread_mutex_init(&(server->proc_lock), NULL)))
- {
- gearmand_perror("pthread_mutex_init");
- return GEARMAN_ERRNO;
- }
- if ((errno= pthread_cond_init(&(server->proc_cond), NULL)))
- {
- gearmand_perror("pthread_cond_init");
- return GEARMAN_ERRNO;
- }
- pthread_attr_t attr;
- if ((errno= pthread_attr_init(&attr)))
- {
- gearmand_perror("pthread_attr_init");
- return GEARMAN_ERRNO;
- }
- if ((errno= pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)))
- {
- gearmand_perror("pthread_attr_setscope");
- (void) pthread_attr_destroy(&attr);
- return GEARMAN_ERRNO;
- }
- if ((errno= pthread_create(&(server->proc_id), &attr, _proc, server)))
- {
- gearmand_perror("pthread_create");
- (void) pthread_attr_destroy(&attr);
- return GEARMAN_ERRNO;
- }
- (void) pthread_attr_destroy(&attr);
- server->flags.threaded= true;
- return GEARMAN_SUCCESS;
- }
- static void _proc_thread_kill(gearman_server_st *server)
- {
- if (! (server->flags.threaded) || server->proc_shutdown)
- return;
- server->proc_shutdown= true;
- /* Signal proc thread to shutdown. */
- (void) pthread_mutex_lock(&(server->proc_lock));
- (void) pthread_cond_signal(&(server->proc_cond));
- (void) pthread_mutex_unlock(&(server->proc_lock));
- /* Wait for the proc thread to exit and then cleanup. */
- (void) pthread_join(server->proc_id, NULL);
- (void) pthread_cond_destroy(&(server->proc_cond));
- (void) pthread_mutex_destroy(&(server->proc_lock));
- }
- static void *_proc(void *data)
- {
- gearman_server_st *server= (gearman_server_st *)data;
- gearman_server_thread_st *thread;
- gearman_server_con_st *con;
- gearman_server_packet_st *packet;
- gearmand_initialize_thread_logging("[ proc ]");
- while (1)
- {
- (void) pthread_mutex_lock(&(server->proc_lock));
- while (server->proc_wakeup == false)
- {
- if (server->proc_shutdown)
- {
- (void) pthread_mutex_unlock(&(server->proc_lock));
- return NULL;
- }
- (void) pthread_cond_wait(&(server->proc_cond), &(server->proc_lock));
- }
- server->proc_wakeup= false;
- (void) pthread_mutex_unlock(&(server->proc_lock));
- for (thread= server->thread_list; thread != NULL; thread= thread->next)
- {
- while ((con= gearman_server_con_proc_next(thread)) != NULL)
- {
- if (con->is_dead)
- {
- gearman_server_con_free_workers(con);
- while (con->client_list != NULL)
- gearman_server_client_free(con->client_list);
- con->proc_removed= true;
- gearman_server_con_io_add(con);
- continue;
- }
- while (1)
- {
- packet= gearman_server_proc_packet_remove(con);
- if (packet == NULL)
- break;
- con->ret= gearman_server_run_command(con, &(packet->packet));
- gearmand_packet_free(&(packet->packet));
- gearman_server_packet_free(packet, con->thread, false);
- }
- }
- }
- }
- }
|