1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2010 Monty Taylor
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 <cstdio> /* for vsnprintf */
23
#include <stdarg.h> /* for va_list */
24
#include <unistd.h> /* for write(2) */
26
#include <libnotifymm.h>
27
#include <boost/scoped_ptr.hpp>
32
#include <drizzled/plugin/error_message.h>
33
#include <drizzled/gettext.h>
34
#include <drizzled/plugin.h>
37
/* todo, make this dynamic as needed */
38
#define MAX_MSG_LEN 8192
40
using namespace drizzled;
44
class Error_message_notify : public plugin::ErrorMessage
46
vector<string> errmsg_tags;
48
Error_message_notify()
49
: plugin::ErrorMessage("Error_message_notify"),
52
errmsg_tags.push_back("Unknown");
53
errmsg_tags.push_back("Debug");
54
errmsg_tags.push_back("Info");
55
errmsg_tags.push_back("Warn");
56
errmsg_tags.push_back("Error");
59
virtual bool errmsg(Session *, int priority, const char *format, va_list ap)
61
char msgbuf[MAX_MSG_LEN];
64
prv= vsnprintf(msgbuf, MAX_MSG_LEN, format, ap);
65
if (prv < 0) return true;
67
Notify::Notification n(errmsg_tags[priority].c_str(), msgbuf);
69
* @TODO: Make this timeout a system variable
73
#ifdef GLIBMM_EXCEPTIONS_ENABLED
78
boost::scoped_ptr<Glib::Error> error;
82
fprintf(stderr, _("Failed to send error message to libnotify\n"));
85
#ifdef GLIBMM_EXCEPTIONS_ENABLED
87
catch (Glib::Error& err)
89
cerr << err.what() << endl;
98
static Error_message_notify *handler= NULL;
99
static int plugin_init(module::Context &context)
101
Notify::init("Drizzled");
102
handler= new Error_message_notify();
103
context.add(handler);
108
DRIZZLE_PLUGIN(plugin_init, NULL, NULL);