8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 18:43:02 +01:00
firebird-mirror/src/dsql/errd.cpp
asfernandes aa254c0e64 Misc
2009-11-16 01:20:35 +00:00

326 lines
7.2 KiB
C++

/*
* PROGRAM: Dynamic SQL runtime support
* MODULE: err.cpp
* DESCRIPTION: Error handlers
*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*
* 27 Nov 2001 Ann W. Harrison - preserve string arguments in
* ERRD_post_warning
*
* 2002.10.28 Sean Leyne - Code cleanup, removed obsolete "MPEXL" port
*
* 2002.10.29 Sean Leyne - Removed obsolete "Netware" port
*
*/
#include "firebird.h"
#include <stdio.h>
#include <string.h>
#include "../jrd/common.h"
#include "../dsql/dsql.h"
#include "../dsql/sqlda.h"
#include "gen/iberror.h"
#include "../jrd/jrd.h"
#include "../dsql/errd_proto.h"
#include "../dsql/utld_proto.h"
// This is the only one place in dsql code, where we need both
// dsql.h and err_proto.h.
// To avoid warnings, undefine some macro's here
//#undef BUGCHECK
//#undef IBERROR
#include "../jrd/err_proto.h"
// To ensure that suspicious macro's not used in this file,
// undefine them once more.
//#undef BUGCHECK
//#undef IBERROR
#include "../jrd/gds_proto.h"
#include "../common/utils_proto.h"
using namespace Jrd;
using namespace Firebird;
static void internal_post(const ISC_STATUS* status_vector);
#ifdef DEV_BUILD
/**
ERRD_assert_msg
@brief Generate an assertion failure with a message
@param msg
@param file
@param lineno
**/
void ERRD_assert_msg(const char* msg, const char* file, ULONG lineno)
{
char buffer[MAXPATHLEN + 100];
fb_utils::snprintf(buffer, sizeof(buffer),
"Assertion failure: %s File: %s Line: %ld\n", // NTX: dev build
(msg ? msg : ""), (file ? file : ""), lineno);
ERRD_bugcheck(buffer);
}
#endif // DEV_BUILD
/**
ERRD_bugcheck
@brief Somebody has screwed up. Bugcheck.
@param text
**/
void ERRD_bugcheck(const char* text)
{
TEXT s[MAXPATHLEN + 120];
fb_utils::snprintf(s, sizeof(s), "INTERNAL: %s", text); // TXNN
ERRD_error(s);
}
/**
ERRD_error
@brief This routine should only be used by fatal
error messages, those that cannot use the
normal error routines because something
is very badly wrong. ERRD_post() should
be used by most error messages, especially
so that strings will be handled.
@param code
@param text
**/
void ERRD_error(const char* text)
{
TEXT s[MAXPATHLEN + 140];
fb_utils::snprintf(s, sizeof(s), "** DSQL error: %s **\n", text);
TRACE(s);
status_exception::raise(Arg::Gds(isc_random) << Arg::Str(s));
}
/**
ERRD_post_warning
@brief Post a warning to the current status vector.
@param status
@param
**/
bool ERRD_post_warning(const Firebird::Arg::StatusVector& v)
{
fb_assert(v.value()[0] == isc_arg_warning);
ISC_STATUS* status_vector = JRD_get_thread_data()->tdbb_status_vector;
size_t indx = 0;
if (status_vector[0] != isc_arg_gds ||
(status_vector[0] == isc_arg_gds && status_vector[1] == 0 &&
status_vector[2] != isc_arg_warning))
{
// this is a blank status vector
status_vector[0] = isc_arg_gds;
status_vector[1] = 0;
status_vector[2] = isc_arg_end;
indx = 2;
}
else
{
// find end of a status vector
size_t warning_indx = 0;
PARSE_STATUS(status_vector, indx, warning_indx);
if (indx) {
--indx;
}
}
if (indx + v.length() + 1 < ISC_STATUS_LENGTH)
{
memcpy(&status_vector[indx], v.value(), sizeof(ISC_STATUS) * (v.length() + 1));
ERR_make_permanent(&status_vector[indx]);
return true;
}
// not enough free space
return false;
}
/**
ERRD_post
@brief Post an error, copying any potentially
transient data before we punt.
@param statusVector
@param
**/
void ERRD_post(const Firebird::Arg::StatusVector& v)
{
fb_assert(v.value()[0] == isc_arg_gds);
internal_post(v.value());
}
/**
internal_post
@brief Post an error, copying any potentially
transient data before we punt.
@param tmp_status
@param
**/
static void internal_post(const ISC_STATUS* tmp_status)
{
ISC_STATUS* status_vector = JRD_get_thread_data()->tdbb_status_vector;
// calculate length of the status
size_t tmp_status_len = 0, warning_indx = 0;
PARSE_STATUS(tmp_status, tmp_status_len, warning_indx);
fb_assert(warning_indx == 0);
if (status_vector[0] != isc_arg_gds ||
(status_vector[0] == isc_arg_gds && status_vector[1] == 0 &&
status_vector[2] != isc_arg_warning))
{
// this is a blank status vector
status_vector[0] = isc_arg_gds;
status_vector[1] = isc_dsql_error;
status_vector[2] = isc_arg_end;
}
size_t status_len = 0;
PARSE_STATUS(status_vector, status_len, warning_indx);
if (status_len)
--status_len;
// check for duplicated error code
size_t i;
for (i = 0; i < ISC_STATUS_LENGTH; i++)
{
if (status_vector[i] == isc_arg_end && i == status_len) {
break; // end of argument list
}
if (i && i == warning_indx) {
break; // vector has no more errors
}
if (status_vector[i] == tmp_status[1] && i && status_vector[i - 1] != isc_arg_warning &&
i + tmp_status_len - 2 < ISC_STATUS_LENGTH &&
(memcmp(&status_vector[i], &tmp_status[1], sizeof(ISC_STATUS) * (tmp_status_len - 2)) == 0))
{
// duplicate found
ERRD_punt();
}
}
// if the status_vector has only warnings then adjust err_status_len
size_t err_status_len = i;
if (err_status_len == 2 && warning_indx) {
err_status_len = 0;
}
size_t warning_count = 0;
ISC_STATUS_ARRAY warning_status;
if (warning_indx)
{
// copy current warning(s) to a temp buffer
MOVE_CLEAR(warning_status, sizeof(warning_status));
memcpy(warning_status, &status_vector[warning_indx],
sizeof(ISC_STATUS) * (ISC_STATUS_LENGTH - warning_indx));
PARSE_STATUS(warning_status, warning_count, warning_indx);
}
// add the status into a real buffer right in between last
// error and first warning
i = err_status_len + tmp_status_len;
if (i < ISC_STATUS_LENGTH)
{
memcpy(&status_vector[err_status_len], tmp_status, sizeof(ISC_STATUS) * tmp_status_len);
ERR_make_permanent(&status_vector[err_status_len]);
// copy current warning(s) to the status_vector
if (warning_count && i + warning_count - 1 < ISC_STATUS_LENGTH)
{
memcpy(&status_vector[i - 1], warning_status, sizeof(ISC_STATUS) * warning_count);
}
}
ERRD_punt();
}
/**
ERRD_punt
@brief Error stuff has been copied to
status vector. Now punt.
**/
void ERRD_punt(const ISC_STATUS* local)
{
thread_db* tdbb = JRD_get_thread_data();
// copy local status into user status
if (local) {
UTLD_copy_status(local, tdbb->tdbb_status_vector);
}
// Save any strings in a permanent location
UTLD_save_status_strings(tdbb->tdbb_status_vector);
// Give up whatever we were doing and return to the user.
status_exception::raise(tdbb->tdbb_status_vector);
}