~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to plugin/query_log/query_log.h

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright 2011 Daniel Nichter
 
5
 *
 
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, either version 3 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#pragma once
 
21
 
 
22
#include <drizzled/plugin/event_observer.h>
 
23
#include "file.h"
 
24
#include "event.h"
 
25
 
 
26
namespace drizzled {
 
27
namespace plugin {
 
28
 
 
29
/**
 
30
 * @brief
 
31
 *   QueryLog implements the query_log plugin.
 
32
 *
 
33
 * @details
 
34
 *   This is our event observer plugin subclass that sits between Drizzle
 
35
 *   and logger classes like QueryLoggerFile.  This class encapsulates and
 
36
 *   manages data associated with the plugin: system variables and incoming
 
37
 *   events.  The future plan is to have other logger classes, like
 
38
 *   QueryLoggerTable or QueryLoggerUDPSocket.  So implemeting those should
 
39
 *   be easy because this class abstracts plugin data management from actual
 
40
 *   logging: it gets events from Drizzle, filters and prepares them, then
 
41
 *   sends them to logger classes which only have to log them.
 
42
 */
 
43
class QueryLog : public drizzled::plugin::EventObserver
 
44
{
 
45
public:
 
46
  QueryLog(bool enabled, QueryLoggerFile *logger_file);
 
47
 
 
48
  void registerSessionEventsDo(Session &session, EventObserverList &observers);
 
49
  bool observeEventDo(EventData &);
 
50
  bool afterStatement(AfterStatementEventData &data);
 
51
 
 
52
  /**
 
53
   * These are the query_log system variables.  So sysvar_enabled is
 
54
   * query_log_enabled in SHOW VARIABLES, etc.  They are all global and dynamic.
 
55
   */
 
56
  bool sysvar_enabled;
 
57
  bool sysvar_file_enabled;
 
58
  std::string sysvar_file;
 
59
  uint32_constraint sysvar_threshold_execution_time;
 
60
  uint32_constraint sysvar_threshold_lock_time;
 
61
  uint32_constraint sysvar_threshold_rows_examined;
 
62
  uint32_constraint sysvar_threshold_rows_sent;
 
63
  uint32_constraint sysvar_threshold_tmp_tables;
 
64
  uint32_constraint sysvar_threshold_warnings;
 
65
  uint32_constraint sysvar_threshold_session_time;
 
66
 
 
67
private:
 
68
  QueryLoggerFile *_logger_file;
 
69
  event_t _event;
 
70
};
 
71
 
 
72
} /* namespace plugin */
 
73
} /* namespace drizzled */