~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_scheduling.h

  • Committer: Monty Taylor
  • Date: 2008-11-07 00:15:51 UTC
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: monty@inaugust.com-20081107001551-8vxb6sf1ti0i5p09
Cleaned up some headers for PCH.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
1
/*
 
2
 -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
3
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Definitions required for Configuration Variables plugin
5
 
 *
6
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 
 
5
 *  Definitions required for Configuration Variables plugin 
 
6
 
 
7
 *  Copyright (C) 2008 Mark Atwood
7
8
 *
8
9
 *  This program is free software; you can redistribute it and/or modify
9
10
 *  it under the terms of the GNU General Public License as published by
19
20
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21
 */
21
22
 
22
 
#ifndef DRIZZLED_PLUGIN_SCHEDULER_H
23
 
#define DRIZZLED_PLUGIN_SCHEDULER_H
24
 
 
25
 
#include "drizzled/session.h"
26
 
#include "drizzled/plugin/plugin.h"
27
 
 
28
 
#include <string>
29
 
#include <vector>
30
 
 
31
 
#include "drizzled/visibility.h"
32
 
 
33
 
namespace drizzled
34
 
{
35
 
 
36
 
class Session;
37
 
 
38
 
namespace plugin
39
 
{
40
 
 
41
 
/**
42
 
 * This class should be used by scheduler plugins to implement custom session
43
 
 * schedulers.
44
 
 */
45
 
class DRIZZLED_API Scheduler : public Plugin
46
 
{
47
 
  /* Disable default constructors */
48
 
  Scheduler();
49
 
  Scheduler(const Scheduler &);
50
 
  Scheduler& operator=(const Scheduler &);
51
 
public:
52
 
  explicit Scheduler(std::string name_arg)
53
 
    : Plugin(name_arg, "Scheduler")
54
 
  {}
55
 
  virtual ~Scheduler() {}
56
 
 
57
 
  /**
58
 
   * Add a session to the scheduler. When the scheduler is ready to run the
59
 
   * session, it should call session->run().
60
 
   */
61
 
  virtual bool addSession(Session::shared_ptr &session)= 0;
62
 
 
63
 
  /**
64
 
   * Notify the scheduler that it should be killed gracefully.
65
 
   */
66
 
  virtual void killSession(Session *) {}
67
 
 
68
 
  /**
69
 
   * This is called when a scheduler should kill the session immedaitely.
70
 
   */
71
 
  virtual void killSessionNow(Session::shared_ptr&) {}
72
 
 
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();
77
 
};
78
 
 
79
 
} /* namespace plugin */
80
 
} /* namespace drizzled */
81
 
 
82
 
#endif /* DRIZZLED_PLUGIN_SCHEDULER_H */
 
23
#ifndef DRIZZLED_PLUGIN_SCHEDULING_H
 
24
#define DRIZZLED_PLUGIN_SCHEDULING_H
 
25
 
 
26
typedef struct scheduling_st
 
27
{
 
28
  /* todo, define this api */
 
29
  /* this is the API that a scheduling plugin must implement.
 
30
     it should implement each of these function pointers.
 
31
     if a function returns bool true, that means it failed.
 
32
     if a function pointer is NULL, that's ok.
 
33
  */
 
34
 
 
35
  bool (*scheduling_func1)(Session *session, void *parm1, void *parm2);
 
36
  bool (*scheduling_func2)(Session *session, void *parm3, void *parm4);
 
37
} scheduling_t;
 
38
 
 
39
#endif /* DRIZZLED_PLUGIN_SCHEDULING_H */