~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg_print.cc

  • Committer: Monty Taylor
  • Date: 2009-03-03 07:39:39 UTC
  • mto: This revision was merged to the branch mainline in revision 910.
  • Revision ID: mordred@inaugust.com-20090303073939-rfswfdo68klfcp1o
Updated comment version indicators to handle drizzle versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Mark Atwood
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
22
22
   errmsg_printf()
23
23
*/
24
24
 
25
 
#include <config.h>
26
 
 
27
 
#include <drizzled/definitions.h>
 
25
#include <drizzled/server_includes.h>
 
26
#include <drizzled/errmsg.h>
28
27
#include <drizzled/errmsg_print.h>
29
 
#include <drizzled/plugin/error_message.h>
30
 
 
31
 
#include <cerrno>
32
 
#include <cstring>
33
 
 
34
 
namespace drizzled
35
 
{
 
28
#include <drizzled/current_session.h>
 
29
 
 
30
// need this for stderr
 
31
#include <string.h>
 
32
 
 
33
void sql_print_error(const char *format, ...)
 
34
{
 
35
  va_list args;
 
36
  va_start(args, format);
 
37
  errmsg_vprintf(current_session, ERROR_LEVEL, format, args);
 
38
  va_end(args);
 
39
  return;
 
40
}
 
41
 
 
42
void sql_print_warning(const char *format, ...)
 
43
{
 
44
  va_list args;
 
45
  va_start(args, format);
 
46
  errmsg_vprintf(current_session, WARNING_LEVEL, format, args);
 
47
  va_end(args);
 
48
  return;
 
49
}
 
50
 
 
51
void sql_print_information(const char *format, ...)
 
52
{
 
53
  va_list args;
 
54
  va_start(args, format);
 
55
  errmsg_vprintf(current_session, INFORMATION_LEVEL, format, args);
 
56
  va_end(args);
 
57
  return;
 
58
}
36
59
 
37
60
void sql_perror(const char *message)
38
61
{
39
 
  char *errmsg_ptr;
40
 
  char errmsg[STRERROR_MAX];
41
 
  errmsg[0]= 0;
42
 
 
43
 
#ifdef STRERROR_R_CHAR_P
44
 
  errmsg_ptr= strerror_r(errno, errmsg, sizeof(errmsg));
45
 
#else
46
 
  strerror_r(errno, errmsg, sizeof(errmsg));
47
 
  errmsg_ptr= errmsg;
48
 
#endif
49
 
 
50
 
  errmsg_printf(error::ERROR, "%s: %s\n", message, errmsg);
51
 
 
52
 
}
53
 
 
54
 
// @todo Cap the size of message.
55
 
void sql_perror(const std::string &message)
56
 
{
57
 
  static std::string empty;
58
 
  sql_perror(message, empty);
59
 
}
60
 
 
61
 
// @todo Cap the size of message/extra.
62
 
void sql_perror(std::string message, const std::string &extra)
63
 
{
64
 
  char *errmsg_ptr;
65
 
  char errmsg[STRERROR_MAX];
66
 
  errmsg[0]= 0;
67
 
 
68
 
#ifdef STRERROR_R_CHAR_P
69
 
  errmsg_ptr= strerror_r(errno, errmsg, sizeof(errmsg));
70
 
#else
71
 
  strerror_r(errno, errmsg, sizeof(errmsg));
72
 
  errmsg_ptr= errmsg;
73
 
#endif
74
 
 
75
 
  if (not extra.empty())
76
 
  {
77
 
    if (message.at(message.size()) != ' ')
78
 
      message+= " ";
79
 
 
80
 
    message+= "'";
81
 
    message+= extra;
82
 
    message+= "'";
83
 
  }
84
 
 
85
 
  errmsg_printf(error::ERROR, "%s: %s\n", message.c_str(), errmsg);
86
 
}
87
 
 
88
 
bool errmsg_printf (error::level_t priority, char const *format, ...)
 
62
  // is stderr threadsafe?
 
63
  errmsg_printf(ERRMSG_LVL_ERROR, "%s: %s", message, strerror(errno));
 
64
}
 
65
 
 
66
 
 
67
bool errmsg_printf (int priority, char const *format, ...)
89
68
{
90
69
  bool rv;
91
70
  va_list args;
92
71
  va_start(args, format);
93
 
  rv= plugin::ErrorMessage::vprintf(priority, format, args);
 
72
  rv= errmsg_vprintf(current_session, priority, format, args);
94
73
  va_end(args);
95
74
  return rv;
96
75
}
97
 
 
98
 
} /* namespace drizzled */