1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
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 */