~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/scheduler.h

  • Committer: Brian Aker
  • Date: 2010-08-12 17:19:46 UTC
  • mfrom: (1701.1.1 turn-off-csv)
  • Revision ID: brian@tangent.org-20100812171946-n44naaqhg27gehlh
MErge Monty, remove CSV from auto-build

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 *  Definitions required for Configuration Variables plugin
5
5
 *
6
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
6
 *  Copyright (C) 2008 Sun Microsystems
7
7
 *
8
8
 *  This program is free software; you can redistribute it and/or modify
9
9
 *  it under the terms of the GNU General Public License as published by
22
22
#ifndef DRIZZLED_PLUGIN_SCHEDULER_H
23
23
#define DRIZZLED_PLUGIN_SCHEDULER_H
24
24
 
25
 
#include <drizzled/plugin/plugin.h>
26
 
#include <drizzled/session.h>
 
25
#include "drizzled/plugin/plugin.h"
27
26
 
28
27
#include <string>
29
28
#include <vector>
30
29
 
31
 
#include <drizzled/visibility.h>
32
 
 
33
30
namespace drizzled
34
31
{
35
 
 
36
32
class Session;
37
33
 
38
34
namespace plugin
42
38
 * This class should be used by scheduler plugins to implement custom session
43
39
 * schedulers.
44
40
 */
45
 
class DRIZZLED_API Scheduler : public Plugin
 
41
class Scheduler : public Plugin
46
42
{
47
43
  /* Disable default constructors */
48
44
  Scheduler();
58
54
   * Add a session to the scheduler. When the scheduler is ready to run the
59
55
   * session, it should call session->run().
60
56
   */
61
 
  virtual bool addSession(Session::shared_ptr &session)= 0;
 
57
  virtual bool addSession(Session *session)= 0;
62
58
 
63
59
  /**
64
60
   * Notify the scheduler that it should be killed gracefully.
68
64
  /**
69
65
   * This is called when a scheduler should kill the session immedaitely.
70
66
   */
71
 
  virtual void killSessionNow(Session::shared_ptr&) {}
 
67
  virtual void killSessionNow(Session *) {}
72
68
 
73
69
  static bool addPlugin(plugin::Scheduler *sced);
74
70
  static void removePlugin(plugin::Scheduler *sced);
75
71
  static bool setPlugin(const std::string& name);
76
72
  static Scheduler *getScheduler();
 
73
 
 
74
  /**
 
75
   * Return the thread stack size that should be used for all threads.
 
76
   */
 
77
  size_t getThreadStackSize() const;
 
78
 
77
79
};
78
80
 
79
81
} /* namespace plugin */