~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/error_message.h

  • Committer: Brian Aker
  • Date: 2010-10-28 17:12:01 UTC
  • mfrom: (1887.1.3 merge)
  • Revision ID: brian@tangent.org-20101028171201-baj6l1bnntn1s4ad
Merge in POTFILES changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 *  Definitions required for Error Message plugin
5
5
 *
6
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
6
 *  Copyright (C) 2008 Sun Microsystems
7
7
 *
8
8
 *  This program is free software; you can redistribute it and/or modify
9
9
 *  it under the terms of the GNU General Public License as published by
23
23
#define DRIZZLED_PLUGIN_ERROR_MESSAGE_H
24
24
 
25
25
#include "drizzled/plugin/plugin.h"
26
 
#include "drizzled/error/level_t.h"
27
26
 
28
27
#include <stdarg.h>
29
28
 
30
29
#include <string>
31
30
 
32
 
#include "drizzled/visibility.h"
33
 
 
34
31
namespace drizzled
35
32
{
 
33
class Session;
36
34
 
37
35
namespace plugin
38
36
{
39
37
 
40
 
class DRIZZLED_API ErrorMessage : public Plugin
 
38
class ErrorMessage : public Plugin
41
39
{
42
40
  ErrorMessage();
43
41
  ErrorMessage(const ErrorMessage &);
44
42
  ErrorMessage& operator=(const ErrorMessage &);
45
 
 
46
43
public:
47
44
  explicit ErrorMessage(std::string name_arg)
48
45
   : Plugin(name_arg, "ErrorMessage")
49
46
  {}
50
47
  virtual ~ErrorMessage() {}
51
48
 
52
 
  virtual bool errmsg(error::level_t priority, const char *format, va_list ap)=0;
 
49
  virtual bool errmsg(Session *session, int priority,
 
50
                      const char *format, va_list ap)=0;
53
51
 
54
52
  static bool addPlugin(plugin::ErrorMessage *handler);
55
53
  static void removePlugin(plugin::ErrorMessage *handler);
56
54
 
57
 
  static bool vprintf(error::level_t priority, char const *format, va_list ap);
58
 
 
59
 
  bool removeLast() const
60
 
  {
61
 
    return true;
62
 
  }
 
55
  static bool vprintf(Session *session, int priority, char const *format,
 
56
                      va_list ap);
63
57
};
64
58
 
65
59
} /* namespace plugin */