1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Definitions required for Configuration Variables plugin
6
* Copyright (C) 2008 Sun Microsystems, Inc.
8
* This program is free software; you can redistribute it and/or modify
9
* it under the terms of the GNU General Public License as published by
10
* the Free Software Foundation; version 2 of the License.
12
* This program is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
* GNU General Public License for more details.
17
* You should have received a copy of the GNU General Public License
18
* along with this program; if not, write to the Free Software
19
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#ifndef DRIZZLED_PLUGIN_SCHEDULER_H
23
#define DRIZZLED_PLUGIN_SCHEDULER_H
25
#include "drizzled/session.h"
26
#include "drizzled/plugin/plugin.h"
31
#include "drizzled/visibility.h"
42
* This class should be used by scheduler plugins to implement custom session
45
class DRIZZLED_API Scheduler : public Plugin
47
/* Disable default constructors */
49
Scheduler(const Scheduler &);
50
Scheduler& operator=(const Scheduler &);
52
explicit Scheduler(std::string name_arg)
53
: Plugin(name_arg, "Scheduler")
55
virtual ~Scheduler() {}
58
* Add a session to the scheduler. When the scheduler is ready to run the
59
* session, it should call session->run().
61
virtual bool addSession(Session::shared_ptr &session)= 0;
64
* Notify the scheduler that it should be killed gracefully.
66
virtual void killSession(Session *) {}
69
* This is called when a scheduler should kill the session immedaitely.
71
virtual void killSessionNow(Session::shared_ptr&) {}
73
static bool addPlugin(plugin::Scheduler *sced);
74
static void removePlugin(plugin::Scheduler *sced);
75
static bool setPlugin(const std::string& name);
76
static Scheduler *getScheduler();
79
} /* namespace plugin */
80
} /* namespace drizzled */
82
#endif /* DRIZZLED_PLUGIN_SCHEDULER_H */