~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/error_message.h

  • Committer: Monty Taylor
  • Date: 2010-12-26 03:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226031544-1cf3raipu53fnmyj
Through page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 */