1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008, 2009 Sun Microsystems, Inc.
4
* Copyright (C) 2008,2009 Sun Microsystems
6
6
* This program is free software; you can redistribute it and/or modify
7
7
* it under the terms of the GNU General Public License as published by
24
24
#include <drizzled/plugin/logging.h>
25
25
#include <drizzled/gettext.h>
26
26
#include <drizzled/session.h>
27
#include <drizzled/errmsg_print.h>
28
#include <boost/date_time.hpp>
29
27
#include <boost/program_options.hpp>
30
28
#include <drizzled/module/option_map.h>
31
29
#include <libgearman/gearman.h>
32
30
#include <limits.h>
33
32
#include <sys/types.h>
34
33
#include <sys/stat.h>
41
namespace drizzle_plugin
39
using namespace drizzled;
44
40
namespace po= boost::program_options;
46
42
/* TODO make this dynamic as needed */
47
43
static const int MAX_MSG_LEN= 32*1024;
45
static bool sysvar_logging_gearman_enable;
46
static char* sysvar_logging_gearman_host= NULL;
47
static char* sysvar_logging_gearman_function= NULL;
50
/* stolen from mysys/my_getsystime
51
until the Session has a good utime "now" we can use
52
will have to use this instead */
54
static uint64_t get_microtime()
56
#if defined(HAVE_GETHRTIME)
57
return gethrtime()/1000;
62
The following loop is here because gettimeofday may fail on some systems
64
while (gettimeofday(&t, NULL) != 0) {}
65
newtime= (uint64_t)t.tv_sec * 1000000 + t.tv_usec;
67
#endif /* defined(HAVE_GETHRTIME) */
49
70
/* quote a string to be safe to include in a CSV line
50
71
that means backslash quoting all commas, doublequotes, backslashes,
51
72
and all the ASCII unprintable characters
157
class LoggingGearman :
158
public drizzled::plugin::Logging
178
class LoggingGearman : public 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&);
181
int gearman_client_ok;
182
gearman_client_st gearman_client;
172
LoggingGearman(const std::string &host,
173
const std::string &function) :
174
drizzled::plugin::Logging("LoggingGearman"),
177
_gearman_client_ok(0),
187
: plugin::Logging("LoggingGearman"),
180
190
gearman_return_t ret;
183
if (gearman_client_create(&_gearman_client) == NULL)
192
if (sysvar_logging_gearman_enable == false)
195
if (sysvar_logging_gearman_host == NULL)
199
if (gearman_client_create(&gearman_client) == NULL)
185
drizzled::sql_perror(_("fail gearman_client_create()"));
201
char errmsg[STRERROR_MAX];
202
strerror_r(errno, errmsg, sizeof(errmsg));
203
errmsg_printf(ERRMSG_LVL_ERROR, _("fail gearman_client_create(): %s"),
189
208
/* TODO, be able to override the port */
190
209
/* TODO, be able send to multiple servers */
191
ret= gearman_client_add_server(&_gearman_client,
210
ret= gearman_client_add_server(&gearman_client,
211
sysvar_logging_gearman_host, 0);
193
212
if (ret != GEARMAN_SUCCESS)
195
drizzled::errmsg_printf(drizzled::error::ERROR, _("fail gearman_client_add_server(): %s"),
196
gearman_client_error(&_gearman_client));
214
errmsg_printf(ERRMSG_LVL_ERROR, _("fail gearman_client_add_server(): %s"),
215
gearman_client_error(&gearman_client));
200
_gearman_client_ok= 1;
219
gearman_client_ok= 1;
204
223
~LoggingGearman()
206
if (_gearman_client_ok)
225
if (gearman_client_ok)
208
gearman_client_free(&_gearman_client);
227
gearman_client_free(&gearman_client);
212
virtual bool post(drizzled::Session *session)
231
virtual bool post(Session *session)
214
233
boost::scoped_array<char> msgbuf(new char[MAX_MSG_LEN]);
215
234
int msgbuf_len= 0;
220
239
but that crashes the server, so for now, we just lie a little bit
223
if (not _gearman_client_ok)
242
if (!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);
245
/* TODO, the session object should have a "utime command completed"
246
inside itself, so be more accurate, and so this doesnt have to
247
keep calling current_utime, which can be slow */
249
uint64_t t_mark= get_microtime();
234
251
// buffer to quotify the query
235
252
unsigned char qs[255];
237
254
// to avoid trying to printf %s something that is potentially NULL
238
drizzled::util::string::const_shared_ptr dbs(session->schema());
255
const char *dbs= session->db.empty() ? "" : session->db.c_str();
241
258
snprintf(msgbuf.get(), MAX_MSG_LEN,
246
263
session->thread_id,
247
264
session->getQueryId(),
248
265
// dont need to quote the db name, always CSV safe
249
(int)dbs->size(), dbs->c_str(),
266
(int)session->db.length(), dbs,
250
267
// 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(),
268
quotify((const unsigned char *)session->getQueryString().c_str(),
269
session->getQueryLength(), qs, sizeof(qs)),
270
// command_name is defined in drizzled/sql_parse.cc
271
// dont need to quote the command name, always CSV safe
272
(int)command_name[session->command].length,
273
command_name[session->command].str,
256
274
// counters are at end, to make it easier to add more
257
275
(t_mark - session->getConnectMicroseconds()),
258
(session->getElapsedTime()),
276
(t_mark - session->start_utime),
259
277
(t_mark - session->utime_after_lock),
260
278
session->sent_row_count,
261
279
session->examined_row_count,
262
280
session->tmp_table,
263
281
session->total_warn_count,
264
282
session->getServerId(),
265
drizzled::glob_hostname
268
286
char job_handle[GEARMAN_JOB_HANDLE_SIZE];
270
(void) gearman_client_do_background(&_gearman_client,
288
(void) gearman_client_do_background(&gearman_client,
289
sysvar_logging_gearman_function,
273
291
(void *) msgbuf.get(),
274
292
(size_t) msgbuf_len,
281
299
static LoggingGearman *handler= NULL;
283
static int logging_gearman_plugin_init(drizzled::module::Context &context)
301
static int logging_gearman_plugin_init(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>());
303
handler= new LoggingGearman();
289
304
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
309
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"));
312
po::value<bool>(&sysvar_logging_gearman_enable)->default_value(false)->zero_tokens(),
313
N_("Enable logging to a gearman server"));
306
} /* namespace drizzle_plugin */
316
static DRIZZLE_SYSVAR_BOOL(
318
sysvar_logging_gearman_enable,
320
N_("Enable logging to a gearman server"),
321
NULL, /* check func */
322
NULL, /* update func */
323
false /* default */);
325
static DRIZZLE_SYSVAR_STR(
327
sysvar_logging_gearman_host,
329
N_("Hostname for logging to a Gearman server"),
330
NULL, /* check func */
331
NULL, /* update func*/
332
"localhost" /* default */);
334
static DRIZZLE_SYSVAR_STR(
336
sysvar_logging_gearman_function,
338
N_("Gearman Function to send logging to"),
339
NULL, /* check func */
340
NULL, /* update func*/
341
"drizzlelog" /* default */);
343
static drizzle_sys_var* logging_gearman_system_variables[]= {
344
DRIZZLE_SYSVAR(enable),
345
DRIZZLE_SYSVAR(host),
346
DRIZZLE_SYSVAR(function),
308
350
DRIZZLE_DECLARE_PLUGIN
313
355
"Mark Atwood <mark@fallenpegasus.com>",
314
356
N_("Log queries to a Gearman server"),
315
drizzled::PLUGIN_LICENSE_GPL,
316
drizzle_plugin::logging_gearman_plugin_init,
318
drizzle_plugin::init_options
358
logging_gearman_plugin_init,
359
logging_gearman_system_variables,
320
362
DRIZZLE_DECLARE_PLUGIN_END;