17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
#include "drizzled/plugin/scheduler.h"
26
#include "drizzled/gettext.h"
27
#include "drizzled/errmsg_print.h"
32
extern size_t my_thread_stack_size;
34
std::vector<plugin::Scheduler *> all_schedulers;
37
static plugin::Scheduler *scheduler= NULL;
40
class FindSchedulerByName : public std::unary_function<plugin::Scheduler *, bool>
42
const std::string *name;
44
FindSchedulerByName(const std::string *name_arg)
46
result_type operator() (argument_type sched)
48
return (bool)((name->compare(sched->getName()) == 0));
53
bool plugin::Scheduler::addPlugin(plugin::Scheduler *sched)
55
std::vector<plugin::Scheduler *>::iterator iter=
56
std::find_if(all_schedulers.begin(), all_schedulers.end(),
57
FindSchedulerByName(&sched->getName()));
59
if (iter != all_schedulers.end())
61
errmsg_printf(ERRMSG_LVL_ERROR,
62
_("Attempted to register a scheduler %s, but a scheduler "
63
"has already been registered with that name.\n"),
64
sched->getName().c_str());
69
all_schedulers.push_back(sched);
75
void plugin::Scheduler::removePlugin(plugin::Scheduler *sched)
77
all_schedulers.erase(std::find(all_schedulers.begin(),
83
bool plugin::Scheduler::setPlugin(const std::string& name)
85
std::vector<plugin::Scheduler *>::iterator iter=
86
std::find_if(all_schedulers.begin(), all_schedulers.end(),
87
FindSchedulerByName(&name));
89
if (iter != all_schedulers.end())
91
if (scheduler != NULL)
92
scheduler->deactivate();
94
scheduler->activate();
98
errmsg_printf(ERRMSG_LVL_WARN,
99
_("Attempted to configure %s as the scheduler, which did "
100
"not exist.\n"), name.c_str());
105
plugin::Scheduler *plugin::Scheduler::getScheduler()
110
} /* namespace drizzled */
20
#include <drizzled/server_includes.h>
21
#include <drizzled/scheduling.h>
22
#include <drizzled/gettext.h>
23
#include <drizzled/plugin_scheduling.h>
24
#include <drizzled/connect.h>
26
scheduling_st thread_scheduler;
27
static bool scheduler_inited= false; /* We must insist that only one of these plugins get loaded at a time */
29
static void post_kill_dummy(Session *) { return; }
30
static bool end_thread_dummy(Session *, bool) { return false; }
32
extern char *opt_scheduler;
34
int scheduling_initializer(st_plugin_int *plugin)
36
if (memcmp(plugin->plugin->name, opt_scheduler, strlen(opt_scheduler)))
41
fprintf(stderr, "You cannot load more then one scheduler plugin\n");
45
memset(&thread_scheduler, 0, sizeof(scheduling_st));
47
assert(plugin->plugin->init); /* Find poorly designed plugins */
48
if (plugin->plugin->init)
51
thread_scheduler.post_kill_notification= post_kill_dummy;
52
thread_scheduler.end_thread= end_thread_dummy;
53
thread_scheduler.init_new_connection_thread= init_new_connection_handler_thread;
55
if (plugin->plugin->init((void *)&thread_scheduler))
58
TRANSLATORS> The leading word "scheduling" is the name
59
of the plugin api, and so should not be translated.
61
errmsg_printf(ERRMSG_LVL_ERROR, _("scheduling plugin '%s' init() failed"),
67
/* We are going to assert() on any plugin that is not well written. */
68
assert(thread_scheduler.max_threads);
69
assert(thread_scheduler.init_new_connection_thread);
70
assert(thread_scheduler.add_connection);
71
assert(thread_scheduler.post_kill_notification);
72
assert(thread_scheduler.end_thread);
74
scheduler_inited= true;
75
/* We populate so we can find which plugin was initialized later on */
76
plugin->data= (void *)&thread_scheduler;
77
plugin->state= PLUGIN_IS_READY;
86
int scheduling_finalizer(st_plugin_int *plugin)
88
/* We know which one we initialized since its data pointer is filled */
89
if (plugin->plugin->deinit && plugin->data)
91
if (plugin->plugin->deinit((void *)&thread_scheduler))
93
/* TRANSLATORS: The leading word "scheduling" is the name
94
of the plugin api, and so should not be translated. */
95
errmsg_printf(ERRMSG_LVL_ERROR, _("scheduling plugin '%s' deinit() failed"),