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;
42
class Error_message_notify : public plugin::ErrorMessage
44
std::vector<std::string> errmsg_tags;
46
Error_message_notify()
47
: plugin::ErrorMessage("Error_message_notify"),
50
errmsg_tags.push_back("Unknown");
51
errmsg_tags.push_back("Debug");
52
errmsg_tags.push_back("Info");
53
errmsg_tags.push_back("Warn");
54
errmsg_tags.push_back("Error");
57
virtual bool errmsg(Session *, int priority, const char *format, va_list ap)
59
char msgbuf[MAX_MSG_LEN];
62
prv= vsnprintf(msgbuf, MAX_MSG_LEN, format, ap);
63
if (prv < 0) return true;
65
Notify::Notification n(errmsg_tags[priority].c_str(), msgbuf);
67
* @TODO: Make this timeout a system variable
71
#ifdef GLIBMM_EXCEPTIONS_ENABLED
76
boost::scoped_ptr<Glib::Error> error;
80
std::cerr << _("Failed to send error message to libnotify\n");
83
#ifdef GLIBMM_EXCEPTIONS_ENABLED
85
catch (Glib::Error& err)
87
std::cerr << err.what() << std::endl;
96
static Error_message_notify *handler= NULL;
97
static int plugin_init(module::Context &context)
99
Notify::init("Drizzled");
100
handler= new Error_message_notify();
101
context.add(handler);
106
DRIZZLE_PLUGIN(plugin_init, NULL, NULL);