1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
|
/* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA */
#include "sql_list.h" // Sql_alloc, List, List_iterator
#include "sql_cmd.h" // Sql_cmd
#include "sql_class.h" // Diagnostics_area
#include "sql_get_diagnostics.h" // Sql_cmd_get_diagnostics
/**
Execute this GET DIAGNOSTICS statement.
@param thd The current thread.
@remark Errors or warnings occurring during the execution of the GET
DIAGNOSTICS statement should not affect the diagnostics area
of a previous statement as the diagnostics information there
would be wiped out. Thus, in order to preserve the contents
of the diagnostics area from which information is being
retrieved, the GET DIAGNOSTICS statement is executed under
a separate diagnostics area. If any errors or warnings occur
during the execution of the GET DIAGNOSTICS statement, these
error or warnings (conditions) are appended to the list of
the original diagnostics area. The only exception to this is
fatal errors, which must always cause the statement to fail.
@retval false on success.
@retval true on error
*/
bool
Sql_cmd_get_diagnostics::execute(THD *thd)
{
bool rv;
Diagnostics_area new_stmt_da(thd->query_id, false, true);
Diagnostics_area *save_stmt_da= thd->get_stmt_da();
DBUG_ENTER("Sql_cmd_get_diagnostics::execute");
/* Disable the unneeded read-only mode of the original DA. */
save_stmt_da->set_warning_info_read_only(false);
/* Set new diagnostics area, execute statement and restore. */
thd->set_stmt_da(&new_stmt_da);
rv= m_info->aggregate(thd, save_stmt_da);
thd->set_stmt_da(save_stmt_da);
/* Bail out early if statement succeeded. */
if (! rv)
{
thd->get_stmt_da()->set_ok_status(0, 0, NULL);
DBUG_RETURN(false);
}
/* Statement failed, retrieve the error information for propagation. */
uint sql_errno= new_stmt_da.sql_errno();
const char *message= new_stmt_da.message();
const char *sqlstate= new_stmt_da.get_sqlstate();
/* In case of a fatal error, set it into the original DA.*/
if (thd->is_fatal_error)
{
save_stmt_da->set_error_status(sql_errno, message, sqlstate, NULL);
DBUG_RETURN(true);
}
/* Otherwise, just append the new error as a exception condition. */
save_stmt_da->push_warning(thd, sql_errno, sqlstate,
Sql_condition::WARN_LEVEL_ERROR,
message);
/* Appending might have failed. */
if (! (rv= thd->is_error()))
thd->get_stmt_da()->set_ok_status(0, 0, NULL);
DBUG_RETURN(rv);
}
/**
Set a value for this item.
@param thd The current thread.
@param value The obtained value.
@retval false on success.
@retval true on error.
*/
bool
Diagnostics_information_item::set_value(THD *thd, Item **value)
{
bool rv;
Settable_routine_parameter *srp;
DBUG_ENTER("Diagnostics_information_item::set_value");
/* Get a settable reference to the target. */
srp= m_target->get_settable_routine_parameter();
DBUG_ASSERT(srp);
/* Set variable/parameter value. */
rv= srp->set_value(thd, thd->spcont, value);
DBUG_RETURN(rv);
}
/**
Obtain statement information in the context of a given diagnostics area.
@param thd The current thread.
@param da The diagnostics area.
@retval false on success.
@retval true on error
*/
bool
Statement_information::aggregate(THD *thd, const Diagnostics_area *da)
{
bool rv= false;
Statement_information_item *stmt_info_item;
List_iterator<Statement_information_item> it(*m_items);
DBUG_ENTER("Statement_information::aggregate");
/*
Each specified target gets the value of each given
information item obtained from the diagnostics area.
*/
while ((stmt_info_item= it++))
{
if ((rv= evaluate(thd, stmt_info_item, da)))
break;
}
DBUG_RETURN(rv);
}
/**
Obtain the value of this statement information item in the context of
a given diagnostics area.
@param thd The current thread.
@param da The diagnostics area.
@retval Item representing the value.
@retval NULL on error.
*/
Item *
Statement_information_item::get_value(THD *thd, const Diagnostics_area *da)
{
Item *value= NULL;
DBUG_ENTER("Statement_information_item::get_value");
switch (m_name)
{
/*
The number of condition areas that have information. That is,
the number of errors and warnings within the diagnostics area.
*/
case NUMBER:
{
ulong count= da->cond_count();
value= new (thd->mem_root) Item_uint(count);
break;
}
/*
Number that shows how many rows were directly affected by
a data-change statement (INSERT, UPDATE, DELETE, MERGE,
REPLACE, LOAD).
*/
case ROW_COUNT:
value= new (thd->mem_root) Item_int(thd->get_row_count_func());
break;
}
DBUG_RETURN(value);
}
/**
Obtain condition information in the context of a given diagnostics area.
@param thd The current thread.
@param da The diagnostics area.
@retval false on success.
@retval true on error
*/
bool
Condition_information::aggregate(THD *thd, const Diagnostics_area *da)
{
bool rv= false;
longlong cond_number;
const Sql_condition *cond= NULL;
Condition_information_item *cond_info_item;
Diagnostics_area::Sql_condition_iterator it_conds= da->sql_conditions();
List_iterator_fast<Condition_information_item> it_items(*m_items);
DBUG_ENTER("Condition_information::aggregate");
/* Prepare the expression for evaluation. */
if (!m_cond_number_expr->fixed &&
m_cond_number_expr->fix_fields(thd, &m_cond_number_expr))
DBUG_RETURN(true);
cond_number= m_cond_number_expr->val_int();
/*
Limit to the number of available conditions. Warning_info::warn_count()
is not used because it indicates the number of condition regardless of
@@max_error_count, which prevents conditions from being pushed, but not
counted.
*/
if (cond_number < 1 || (ulonglong) cond_number > da->cond_count())
{
my_error(ER_DA_INVALID_CONDITION_NUMBER, MYF(0));
DBUG_RETURN(true);
}
/* Advance to the requested condition. */
while (cond_number--)
cond= it_conds++;
DBUG_ASSERT(cond);
/* Evaluate the requested information in the context of the condition. */
while ((cond_info_item= it_items++))
{
if ((rv= evaluate(thd, cond_info_item, cond)))
break;
}
DBUG_RETURN(rv);
}
/**
Create an UTF-8 string item to represent a condition item string.
@remark The string might not have a associated charset. For example,
this can be the case if the server does not or fails to process
the error message file.
@remark See "Design notes about Sql_condition::m_message_text." in sql_error.cc
@return Pointer to an string item, NULL on failure.
*/
Item *
Condition_information_item::make_utf8_string_item(THD *thd, const String *str)
{
/* Default is utf8 character set and utf8_general_ci collation. */
CHARSET_INFO *to_cs= &my_charset_utf8_general_ci;
/* If a charset was not set, assume that no conversion is needed. */
CHARSET_INFO *from_cs= str->charset() ? str->charset() : to_cs;
String tmp(str->ptr(), str->length(), from_cs);
/* If necessary, convert the string (ignoring errors), then copy it over. */
uint conv_errors;
return new Item_string(&tmp, to_cs, &conv_errors,
DERIVATION_COERCIBLE, MY_REPERTOIRE_UNICODE30);
}
/**
Obtain the value of this condition information item in the context of
a given condition.
@param thd The current thread.
@param da The diagnostics area.
@retval Item representing the value.
@retval NULL on error.
*/
Item *
Condition_information_item::get_value(THD *thd, const Sql_condition *cond)
{
String str;
Item *value= NULL;
DBUG_ENTER("Condition_information_item::get_value");
switch (m_name)
{
case CLASS_ORIGIN:
value= make_utf8_string_item(thd, &(cond->m_class_origin));
break;
case SUBCLASS_ORIGIN:
value= make_utf8_string_item(thd, &(cond->m_subclass_origin));
break;
case CONSTRAINT_CATALOG:
value= make_utf8_string_item(thd, &(cond->m_constraint_catalog));
break;
case CONSTRAINT_SCHEMA:
value= make_utf8_string_item(thd, &(cond->m_constraint_schema));
break;
case CONSTRAINT_NAME:
value= make_utf8_string_item(thd, &(cond->m_constraint_name));
break;
case CATALOG_NAME:
value= make_utf8_string_item(thd, &(cond->m_catalog_name));
break;
case SCHEMA_NAME:
value= make_utf8_string_item(thd, &(cond->m_schema_name));
break;
case TABLE_NAME:
value= make_utf8_string_item(thd, &(cond->m_table_name));
break;
case COLUMN_NAME:
value= make_utf8_string_item(thd, &(cond->m_column_name));
break;
case CURSOR_NAME:
value= make_utf8_string_item(thd, &(cond->m_cursor_name));
break;
case MESSAGE_TEXT:
value= make_utf8_string_item(thd, &(cond->m_message_text));
break;
case MYSQL_ERRNO:
value= new (thd->mem_root) Item_uint(cond->m_sql_errno);
break;
case RETURNED_SQLSTATE:
str.set_ascii(cond->get_sqlstate(), strlen(cond->get_sqlstate()));
value= make_utf8_string_item(thd, &str);
break;
}
DBUG_RETURN(value);
}
|