1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008, 2009 Sun Microsystems, Inc.
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; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#include <boost/scoped_array.hpp>
24
#include <drizzled/plugin/logging.h>
25
#include <drizzled/gettext.h>
26
#include <drizzled/session.h>
27
#include <drizzled/errmsg_print.h>
28
#include <boost/date_time.hpp>
29
#include <boost/program_options.hpp>
30
#include <drizzled/module/option_map.h>
31
#include <libgearman/gearman.h>
33
#include <sys/types.h>
41
namespace drizzle_plugin
44
namespace po= boost::program_options;
46
/* TODO make this dynamic as needed */
47
static const int MAX_MSG_LEN= 32*1024;
49
/* quote a string to be safe to include in a CSV line
50
that means backslash quoting all commas, doublequotes, backslashes,
51
and all the ASCII unprintable characters
52
as long as we pass the high-bit bytes unchanged
53
this is safe to do to a UTF8 string
54
we dont allow overrunning the targetbuffer
55
to avoid having a very long query overwrite memory
57
TODO consider remapping the unprintables instead to "Printable
58
Representation", the Unicode characters from the area U+2400 to
59
U+2421 reserved for representing control characters when it is
60
necessary to print or display them rather than have them perform
61
their intended function.
64
static unsigned char *quotify (const unsigned char *src, size_t srclen,
65
unsigned char *dst, size_t dstlen)
67
static const char hexit[]= { '0', '1', '2', '3', '4', '5', '6', '7',
68
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
69
size_t dst_ndx; /* ndx down the dst */
70
size_t src_ndx; /* ndx down the src */
75
for (dst_ndx= 0,src_ndx= 0; src_ndx < srclen; src_ndx++)
78
/* Worst case, need 5 dst bytes for the next src byte.
79
backslash x hexit hexit null
80
so if not enough room, just terminate the string and return
82
if ((dstlen - dst_ndx) < 5)
84
dst[dst_ndx]= (unsigned char)0x00;
88
if (src[src_ndx] > 0x7f)
90
// pass thru high bit characters, they are non-ASCII UTF8 Unicode
91
dst[dst_ndx++]= src[src_ndx];
93
else if (src[src_ndx] == 0x00) // null
95
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) '0';
97
else if (src[src_ndx] == 0x07) // bell
99
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) 'a';
101
else if (src[src_ndx] == 0x08) // backspace
103
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) 'b';
105
else if (src[src_ndx] == 0x09) // horiz tab
107
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) 't';
109
else if (src[src_ndx] == 0x0a) // line feed
111
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) 'n';
113
else if (src[src_ndx] == 0x0b) // vert tab
115
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) 'v';
117
else if (src[src_ndx] == 0x0c) // formfeed
119
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) 'f';
121
else if (src[src_ndx] == 0x0d) // carrage return
123
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) 'r';
125
else if (src[src_ndx] == 0x1b) // escape
127
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= (unsigned char) 'e';
129
else if (src[src_ndx] == 0x22) // quotation mark
131
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= 0x22;
133
else if (src[src_ndx] == 0x2C) // comma
135
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= 0x2C;
137
else if (src[src_ndx] == 0x5C) // backslash
139
dst[dst_ndx++]= 0x5C; dst[dst_ndx++]= 0x5C;
141
else if ((src[src_ndx] < 0x20) || (src[src_ndx] == 0x7F)) // other unprintable ASCII
143
dst[dst_ndx++]= 0x5C;
144
dst[dst_ndx++]= (unsigned char) 'x';
145
dst[dst_ndx++]= hexit[(src[src_ndx] >> 4) & 0x0f];
146
dst[dst_ndx++]= hexit[src[src_ndx] & 0x0f];
148
else // everything else
150
dst[dst_ndx++]= src[src_ndx];
157
class LoggingGearman :
158
public drizzled::plugin::Logging
161
const std::string _host;
162
const std::string _function;
164
int _gearman_client_ok;
165
gearman_client_st _gearman_client;
168
LoggingGearman(const LoggingGearman&);
172
LoggingGearman(const std::string &host,
173
const std::string &function) :
174
drizzled::plugin::Logging("LoggingGearman"),
177
_gearman_client_ok(0),
180
gearman_return_t ret;
183
if (gearman_client_create(&_gearman_client) == NULL)
185
drizzled::sql_perror(_("fail gearman_client_create()"));
189
/* TODO, be able to override the port */
190
/* TODO, be able send to multiple servers */
191
ret= gearman_client_add_server(&_gearman_client,
193
if (ret != GEARMAN_SUCCESS)
195
drizzled::errmsg_printf(drizzled::error::ERROR, _("fail gearman_client_add_server(): %s"),
196
gearman_client_error(&_gearman_client));
200
_gearman_client_ok= 1;
206
if (_gearman_client_ok)
208
gearman_client_free(&_gearman_client);
212
virtual bool post(drizzled::Session *session)
214
boost::scoped_array<char> msgbuf(new char[MAX_MSG_LEN]);
217
assert(session != NULL);
219
/* in theory, we should return "true", meaning that the plugin isn't happy,
220
but that crashes the server, so for now, we just lie a little bit
223
if (not _gearman_client_ok)
227
TODO, the session object should have a "utime command completed"
228
inside itself, so be more accurate, and so this doesnt have to
229
keep calling current_utime, which can be slow.
231
uint64_t t_mark= session->getCurrentTimestamp(false);
234
// buffer to quotify the query
235
unsigned char qs[255];
237
// to avoid trying to printf %s something that is potentially NULL
238
drizzled::util::string::const_shared_ptr dbs(session->schema());
241
snprintf(msgbuf.get(), MAX_MSG_LEN,
242
"%"PRIu64",%"PRIu64",%"PRIu64",\"%.*s\",\"%s\",\"%.*s\","
243
"%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64",%"PRIu64","
244
"%"PRIu32",%"PRIu32",%"PRIu32",\"%s\"",
247
session->getQueryId(),
248
// dont need to quote the db name, always CSV safe
249
(int)dbs->size(), dbs->c_str(),
250
// do need to quote the query
251
quotify((const unsigned char *)session->getQueryString()->c_str(), session->getQueryString()->length(), qs, sizeof(qs)),
252
// getCommandName is defined in drizzled/sql_parse.h dont
253
// need to quote the command name, always CSV safe
254
(int)drizzled::getCommandName(session->command).size(),
255
drizzled::getCommandName(session->command).c_str(),
256
// counters are at end, to make it easier to add more
257
(t_mark - session->getConnectMicroseconds()),
258
(session->getElapsedTime()),
259
(t_mark - session->utime_after_lock),
260
session->sent_row_count,
261
session->examined_row_count,
263
session->total_warn_count,
264
session->getServerId(),
265
drizzled::glob_hostname
268
char job_handle[GEARMAN_JOB_HANDLE_SIZE];
270
(void) gearman_client_do_background(&_gearman_client,
273
(void *) msgbuf.get(),
281
static LoggingGearman *handler= NULL;
283
static int logging_gearman_plugin_init(drizzled::module::Context &context)
285
const drizzled::module::option_map &vm= context.getOptions();
287
handler= new LoggingGearman(vm["host"].as<std::string>(),
288
vm["function"].as<std::string>());
289
context.add(handler);
290
context.registerVariable(new drizzled::sys_var_const_string_val("host", vm["host"].as<std::string>()));
291
context.registerVariable(new drizzled::sys_var_const_string_val("function", vm["function"].as<std::string>()));
296
static void init_options(drizzled::module::option_context &context)
299
po::value<std::string>()->default_value("localhost"),
300
_("Hostname for logging to a Gearman server"));
302
po::value<std::string>()->default_value("drizzlelog"),
303
_("Gearman Function to send logging to"));
306
} /* namespace drizzle_plugin */
308
DRIZZLE_DECLARE_PLUGIN
313
"Mark Atwood <mark@fallenpegasus.com>",
314
N_("Log queries to a Gearman server"),
315
drizzled::PLUGIN_LICENSE_GPL,
316
drizzle_plugin::logging_gearman_plugin_init,
318
drizzle_plugin::init_options
320
DRIZZLE_DECLARE_PLUGIN_END;