~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.cc

  • Committer: Stewart Smith
  • Date: 2009-10-08 05:39:17 UTC
  • mto: This revision was merged to the branch mainline in revision 1179.
  • Revision ID: stewart@flamingspork.com-20091008053917-b7u3opyo8997438r
removeĀ unusedĀ find_string_in_array

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA */
15
15
 
16
16
/**********************************************************************
17
17
This file contains the implementation of error and warnings related
41
41
 
42
42
***********************************************************************/
43
43
 
44
 
#include "config.h"
45
 
 
46
 
#include <cstdio>
47
 
#include <stdarg.h>
48
 
 
 
44
#include <drizzled/server_includes.h>
49
45
#include <drizzled/session.h>
50
46
#include <drizzled/sql_base.h>
51
47
#include <drizzled/item/empty_string.h>
52
48
#include <drizzled/item/return_int.h>
53
49
#include <drizzled/plugin/client.h>
54
50
 
55
 
using namespace std;
56
 
 
57
 
namespace drizzled
58
 
{
 
51
using namespace drizzled;
59
52
 
60
53
/*
61
54
  Store a new message in an error object
65
58
*/
66
59
void DRIZZLE_ERROR::set_msg(Session *session, const char *msg_arg)
67
60
{
68
 
  msg= session->warn_root.strdup_root(msg_arg);
 
61
  msg= strdup_root(&session->warn_root, msg_arg);
69
62
}
70
63
 
71
64
/*
84
77
 
85
78
void drizzle_reset_errors(Session *session, bool force)
86
79
{
87
 
  if (session->getQueryId() != session->getWarningQueryId() || force)
 
80
  if (session->query_id != session->warn_id || force)
88
81
  {
89
 
    session->setWarningQueryId(session->getQueryId());
90
 
    session->warn_root.free_root(MYF(0));
 
82
    session->warn_id= session->query_id;
 
83
    free_root(&session->warn_root,MYF(0));
91
84
    memset(session->warn_count, 0, sizeof(session->warn_count));
92
85
    if (force)
93
86
      session->total_warn_count= 0;
113
106
*/
114
107
 
115
108
DRIZZLE_ERROR *push_warning(Session *session, DRIZZLE_ERROR::enum_warning_level level,
116
 
                            drizzled::error_t code, const char *msg)
 
109
                          uint32_t code, const char *msg)
117
110
{
118
111
  DRIZZLE_ERROR *err= 0;
119
112
 
120
 
  if (level == DRIZZLE_ERROR::WARN_LEVEL_NOTE && !(session->options & OPTION_SQL_NOTES))
121
 
  {
122
 
    return NULL;
123
 
  }
 
113
  if (level == DRIZZLE_ERROR::WARN_LEVEL_NOTE &&
 
114
      !(session->options & OPTION_SQL_NOTES))
 
115
    return(0);
124
116
 
125
 
  if (session->getQueryId() != session->getWarningQueryId())
 
117
  if (session->query_id != session->warn_id)
126
118
    drizzle_reset_errors(session, 0);
127
119
  session->got_warning= 1;
128
120
 
129
121
  /* Abort if we are using strict mode and we are not using IGNORE */
130
122
  if ((int) level >= (int) DRIZZLE_ERROR::WARN_LEVEL_WARN &&
131
 
      session->abortOnWarning())
 
123
      session->really_abort_on_warning())
132
124
  {
133
125
    /* Avoid my_message() calling push_warning */
134
126
    bool no_warnings_for_error= session->no_warnings_for_error;
135
127
 
136
128
    session->no_warnings_for_error= 1;
137
129
 
138
 
    session->setKilled(Session::KILL_BAD_DATA);
 
130
    session->killed= Session::KILL_BAD_DATA;
139
131
    my_message(code, msg, MYF(0));
140
132
 
141
133
    session->no_warnings_for_error= no_warnings_for_error;
150
142
  {
151
143
    /* We have to use warn_root, as mem_root is freed after each query */
152
144
    if ((err= new (&session->warn_root) DRIZZLE_ERROR(session, code, level, msg)))
153
 
    {
154
145
      session->warn_list.push_back(err, &session->warn_root);
155
 
    }
156
146
  }
157
147
  session->warn_count[(uint32_t) level]++;
158
148
  session->total_warn_count++;
159
 
 
160
 
  return err;
 
149
  return(err);
161
150
}
162
151
 
163
152
/*
172
161
*/
173
162
 
174
163
void push_warning_printf(Session *session, DRIZZLE_ERROR::enum_warning_level level,
175
 
                         drizzled::error_t code, const char *format, ...)
 
164
                         uint32_t code, const char *format, ...)
176
165
{
177
166
  va_list args;
178
167
  char    warning[ERRMSGSIZE+20];
181
170
  vsnprintf(warning, sizeof(warning), format, args);
182
171
  va_end(args);
183
172
  push_warning(session, level, code, warning);
 
173
  return;
184
174
}
185
175
 
186
176
 
188
178
  Send all notes, errors or warnings to the client in a result set
189
179
 
190
180
  SYNOPSIS
191
 
    show_warnings()
 
181
    mysqld_show_warnings()
192
182
    session                     Thread handler
193
183
    levels_to_show      Bitmap for which levels to show
194
184
 
208
198
  { C_STRING_WITH_LEN("?") }
209
199
};
210
200
 
211
 
bool show_warnings(Session *session,
212
 
                   bitset<DRIZZLE_ERROR::NUM_ERRORS> &levels_to_show)
 
201
bool mysqld_show_warnings(Session *session,
 
202
                          bitset<DRIZZLE_ERROR::NUM_ERRORS> &levels_to_show)
213
203
{
214
204
  List<Item> field_list;
215
205
 
217
207
  field_list.push_back(new Item_return_int("Code",4, DRIZZLE_TYPE_LONG));
218
208
  field_list.push_back(new Item_empty_string("Message",DRIZZLE_ERRMSG_SIZE));
219
209
 
220
 
  if (session->getClient()->sendFields(&field_list))
 
210
  if (session->client->sendFields(&field_list))
221
211
    return true;
222
212
 
223
213
  DRIZZLE_ERROR *err;
237
227
      continue;
238
228
    if (idx > unit->select_limit_cnt)
239
229
      break;
240
 
    session->getClient()->store(warning_level_names[err->level].str,
241
 
                                warning_level_names[err->level].length);
242
 
    session->getClient()->store((uint32_t) err->code);
243
 
    session->getClient()->store(err->msg, strlen(err->msg));
244
 
    if (session->getClient()->flush())
 
230
    session->client->store(warning_level_names[err->level].str,
 
231
                           warning_level_names[err->level].length);
 
232
    session->client->store((uint32_t) err->code);
 
233
    session->client->store(err->msg, strlen(err->msg));
 
234
    if (session->client->flush())
245
235
      return(true);
246
236
  }
247
237
  session->my_eof();
248
238
  return(false);
249
239
}
250
 
 
251
 
} /* namespace drizzled */