~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/errmsg_stderr/errmsg_stderr.cc

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

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 (C) 2008 Mark Atwood
 
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; version 2 of the License.
 
9
 *
 
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.
 
14
 *
 
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
 
18
 */
 
19
 
 
20
/* need to define DRIZZLE_SERVER to get inside the Session */
 
21
#define DRIZZLE_SERVER 1
 
22
#include <drizzled/server_includes.h>
 
23
#include <drizzled/plugin_errmsg.h>
 
24
#include <drizzled/gettext.h>
 
25
 
 
26
#include <stdio.h>  /* for vsnprintf */
 
27
#include <stdarg.h>  /* for va_list */
 
28
#include <unistd.h>  /* for write(2) */
 
29
 
 
30
/* todo, make this dynamic as needed */
 
31
#define MAX_MSG_LEN 8192
 
32
 
 
33
bool errmsg_stderr_func (Session *session __attribute__((unused)),
 
34
                         int priority __attribute__((unused)),
 
35
                         const char *format, va_list ap)
 
36
{
 
37
  char msgbuf[MAX_MSG_LEN];
 
38
  int prv, wrv;
 
39
 
 
40
  prv= vsnprintf(msgbuf, MAX_MSG_LEN, format, ap);
 
41
  if (prv < 0) return true;
 
42
 
 
43
  /* a single write has a OS level thread lock
 
44
     so there is no need to have mutexes guarding this write,
 
45
  */
 
46
  wrv= write(2, msgbuf, prv);
 
47
  if ((wrv < 0) || (wrv != prv)) return true;
 
48
 
 
49
  return false;
 
50
}
 
51
 
 
52
static int errmsg_stderr_plugin_init(void *p)
 
53
{
 
54
  errmsg_t *l= (errmsg_t *) p;
 
55
 
 
56
  l->errmsg_func= errmsg_stderr_func;
 
57
 
 
58
  return 0;
 
59
}
 
60
 
 
61
static int errmsg_stderr_plugin_deinit(void *p)
 
62
{
 
63
  errmsg_t *l= (errmsg_t *) p;
 
64
 
 
65
  l->errmsg_func= NULL;
 
66
 
 
67
  return 0;
 
68
}
 
69
 
 
70
mysql_declare_plugin(errmsg_stderr)
 
71
{
 
72
  DRIZZLE_ERRMSG_PLUGIN,
 
73
  "errmsg_stderr",
 
74
  "0.1",
 
75
  "Mark Atwood <mark@fallenpegasus.com>",
 
76
  N_("Error Messages to stderr"),
 
77
  PLUGIN_LICENSE_GPL,
 
78
  errmsg_stderr_plugin_init,
 
79
  errmsg_stderr_plugin_deinit,
 
80
  NULL, /* status variables */
 
81
  NULL, /* system variables */
 
82
  NULL
 
83
}
 
84
mysql_declare_plugin_end;