~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/query_log/file.cc

  • Committer: Mark Atwood
  • Date: 2011-08-01 05:22:14 UTC
  • mfrom: (1919.3.53 drizzle_pbms)
  • Revision ID: me@mark.atwood.name-20110801052214-3wdsx3xgld6b5v4f
mergeĀ lp:~barry-leslie/drizzle/drizzle_pbms

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
 
#include <config.h>
21
 
#include "file.h"
22
 
 
23
 
using namespace std;
24
 
 
25
 
QueryLoggerFile::QueryLoggerFile()
26
 
{
27
 
  _fh.setf(ios::fixed, ios::floatfield);
28
 
  _fh.precision(6);
29
 
}
30
 
 
31
 
QueryLoggerFile::~QueryLoggerFile()
32
 
{
33
 
  closeLogFile();
34
 
}
35
 
 
36
 
bool QueryLoggerFile::logEvent(const event_t *event)
37
 
{
38
 
  if (_fh.is_open())
39
 
  {
40
 
    _fh << "# " << event->ts << "\n"
41
 
        << "# session_id="     << event->session_id
42
 
        <<  " query_id="       << event->query_id
43
 
        <<  " rows_examined="  << event->rows_examined
44
 
        <<  " rows_sent="      << event->rows_sent
45
 
        <<  " tmp_tables="     << event->tmp_tables
46
 
        <<  " warnings="       << event->warnings
47
 
        << "\n"
48
 
        << "# execution_time=" << event->execution_time
49
 
        <<  " lock_time="      << event->lock_time
50
 
        <<  " session_time="   << event->session_time
51
 
        << "\n"
52
 
        << "# error=" << event->error << "\n"
53
 
        << "# schema=\"" << event->schema << "\"\n"
54
 
        << event->query << ";\n#"
55
 
        << endl;
56
 
  }
57
 
  return false; // success
58
 
}
59
 
 
60
 
bool QueryLoggerFile::openLogFile(const char *file)
61
 
{
62
 
  closeLogFile();
63
 
 
64
 
  _fh.open(file, ios::app);
65
 
  if (_fh.fail())
66
 
    return true; // error
67
 
 
68
 
  return false; // success
69
 
}
70
 
 
71
 
bool QueryLoggerFile::closeLogFile()
72
 
{
73
 
  if (_fh.is_open())
74
 
  {
75
 
    _fh.close();
76
 
    if (_fh.fail())
77
 
      return true;  // error
78
 
  }
79
 
 
80
 
  return false;  // success
81
 
}