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