~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_logging.h

  • Committer: Monty Taylor
  • Date: 2008-12-06 22:41:03 UTC
  • mto: (656.1.7 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: monty@inaugust.com-20081206224103-jdouqwt9hb0f01y1
Moved non-working tests into broken suite for easier running of working tests.

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 Query Logging plugin
5
 
 *
6
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 
 
5
 *  Definitions required for Query Logging 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
22
23
#ifndef DRIZZLED_PLUGIN_LOGGING_H
23
24
#define DRIZZLED_PLUGIN_LOGGING_H
24
25
 
25
 
#include <drizzled/plugin/plugin.h>
26
 
 
27
 
#include <string>
28
 
 
29
 
#include <drizzled/visibility.h>
30
 
 
31
 
namespace drizzled
32
 
{
33
 
class Session;
34
 
 
35
 
namespace plugin
36
 
{
37
 
 
38
 
class DRIZZLED_API Logging : public Plugin
39
 
{
40
 
  Logging();
41
 
  Logging(const Logging &);
42
 
  Logging& operator=(const Logging &);
43
 
public:
44
 
  explicit Logging(std::string name_arg)
45
 
    : Plugin(name_arg, "Logging")
46
 
  {}
47
 
  virtual ~Logging() {}
48
 
 
49
 
  /**
50
 
   * Make these no-op rather than pure-virtual so that it's easy for a plugin
51
 
   * to only implement one.
52
 
   */
53
 
  virtual bool pre(Session *) {return false;}
54
 
  virtual bool post(Session *) {return false;}
55
 
  virtual bool postEnd(Session*) {return false;}
56
 
  virtual bool resetGlobalScoreboard() {return false;}
57
 
 
58
 
  static bool addPlugin(Logging *handler);
59
 
  static void removePlugin(Logging *handler);
60
 
  static bool preDo(Session *session);
61
 
  static bool postDo(Session *session);
62
 
  static bool postEndDo(Session *session);
63
 
  static bool resetStats(Session *session);
64
 
};
65
 
 
66
 
} /* namespace plugin */
67
 
} /* namespace drizzled */
 
26
typedef struct logging_st
 
27
{
 
28
  bool (*logging_pre)(Session *session);
 
29
  bool (*logging_post)(Session *session);
 
30
} logging_t;
68
31
 
69
32
#endif /* DRIZZLED_PLUGIN_LOGGING_H */