8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-31 17:23:03 +01:00
firebird-mirror/src/common/StatusArg.cpp
2014-12-02 20:37:16 +00:00

340 lines
8.4 KiB
C++

/*
* PROGRAM: Firebird exceptions classes
* MODULE: StatusArg.cpp
* DESCRIPTION: Build status vector with variable number of elements
*
* The contents of this file are subject to the Initial
* Developer's 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.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
*
* Software distributed under the License is distributed AS IS,
* 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 Alex Peshkov
* for the Firebird Open Source RDBMS project.
*
* Copyright (c) 2008 Alex Peshkov <peshkoff at mail.ru>
* and all contributors signed below.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*
*
*/
#include "firebird.h"
#include "../common/StatusArg.h"
#include "../common/utils_proto.h"
#include "../common/classes/fb_string.h"
#include "../common/classes/MetaName.h"
#include "../common/classes/alloc.h"
#include "fb_exception.h"
#include "gen/iberror.h"
#include "firebird/Interface.h"
#include "../common/msg_encode.h"
#ifdef WIN_NT
#include <windows.h>
#else
#include <errno.h>
#endif
namespace {
// Didn't want to bring dyn.h and friends here.
const int DYN_MSG_FAC = 8;
}
namespace Firebird {
namespace Arg {
Base::Base(ISC_STATUS k, ISC_STATUS c) throw(Firebird::BadAlloc) :
implementation(FB_NEW(*getDefaultMemoryPool()) ImplBase(k, c))
{
}
StatusVector::ImplStatusVector::ImplStatusVector(const ISC_STATUS* s) throw() : Base::ImplBase(0, 0)
{
fb_assert(s);
clear();
// special case - empty initialized status vector, no warnings
if (s[0] != isc_arg_gds || s[1] != 0 || s[2] != 0)
{
append(s, FB_NELEM(m_status_vector) - 1);
}
}
StatusVector::ImplStatusVector::ImplStatusVector(const IStatus* s) throw() : Base::ImplBase(0, 0)
{
fb_assert(s);
clear();
if (s->getStatus() & IStatus::FB_HAS_ERRORS)
append(s->getErrors(), FB_NELEM(m_status_vector) - 1);
if (s->getStatus() & IStatus::FB_HAS_WARNINGS)
append(s->getWarnings(), FB_NELEM(m_status_vector) - 1);
}
StatusVector::StatusVector(ISC_STATUS k, ISC_STATUS c) throw(Firebird::BadAlloc) :
Base(FB_NEW(*getDefaultMemoryPool()) ImplStatusVector(k, c))
{
operator<<(*(static_cast<Base*>(this)));
}
StatusVector::StatusVector(const ISC_STATUS* s) throw(Firebird::BadAlloc) :
Base(FB_NEW(*getDefaultMemoryPool()) ImplStatusVector(s))
{
}
StatusVector::StatusVector(const IStatus* s) throw(Firebird::BadAlloc) :
Base(FB_NEW(*getDefaultMemoryPool()) ImplStatusVector(s))
{
}
StatusVector::StatusVector() throw(Firebird::BadAlloc) :
Base(FB_NEW(*getDefaultMemoryPool()) ImplStatusVector(0, 0))
{
}
void StatusVector::ImplStatusVector::clear() throw()
{
m_length = 0;
m_warning = 0;
m_status_vector[0] = isc_arg_end;
}
bool StatusVector::ImplStatusVector::compare(const StatusVector& v) const throw()
{
return m_length == v.length() &&
memcmp(m_status_vector, v.value(), m_length * sizeof(ISC_STATUS)) == 0;
}
void StatusVector::ImplStatusVector::makePermanent() throw()
{
makePermanentVector(m_status_vector);
}
void StatusVector::ImplStatusVector::assign(const Exception& ex) throw()
{
clear();
ex.stuff_exception(m_status_vector);
m_length = fb_utils::statusLength(m_status_vector);
}
void StatusVector::ImplStatusVector::append(const StatusVector& v) throw()
{
ImplStatusVector newVector(getKind(), getCode());
if (newVector.appendErrors(this))
{
if (newVector.appendErrors(v.implementation))
{
if (newVector.appendWarnings(this))
newVector.appendWarnings(v.implementation);
}
}
*this = newVector;
}
void StatusVector::ImplStatusVector::prepend(const StatusVector& v) throw()
{
ImplStatusVector newVector(getKind(), getCode());
if (newVector.appendErrors(v.implementation))
{
if (newVector.appendErrors(this))
{
if (newVector.appendWarnings(v.implementation))
newVector.appendWarnings(this);
}
}
*this = newVector;
}
bool StatusVector::ImplStatusVector::appendErrors(const ImplBase* const v) throw()
{
return append(v->value(), v->firstWarning() ? v->firstWarning() : v->length());
}
bool StatusVector::ImplStatusVector::appendWarnings(const ImplBase* const v) throw()
{
if (! v->firstWarning())
return true;
return append(v->value() + v->firstWarning(), v->length() - v->firstWarning());
}
bool StatusVector::ImplStatusVector::append(const ISC_STATUS* const from, const unsigned int count) throw()
{
// CVC: I didn't expect count to be zero but it's, in some calls
fb_assert(count >= 0 && count <= ISC_STATUS_LENGTH);
if (!count)
return true; // not sure it's the best option here
unsigned int copied =
fb_utils::copyStatus(&m_status_vector[m_length], FB_NELEM(m_status_vector) - m_length, from, count);
m_length += copied;
if (!m_warning)
{
for (unsigned n = 0; n < m_length; )
{
if (m_status_vector[n] == isc_arg_warning)
{
m_warning = n;
break;
}
n += (m_status_vector[n] == isc_arg_cstring) ? 3 : 2;
}
}
return copied == count;
}
void StatusVector::ImplStatusVector::shiftLeft(const Base& arg) throw()
{
if (m_length < FB_NELEM(m_status_vector) - 2)
{
m_status_vector[m_length++] = arg.getKind();
m_status_vector[m_length++] = arg.getCode();
m_status_vector[m_length] = isc_arg_end;
}
}
void StatusVector::ImplStatusVector::shiftLeft(const Warning& arg) throw()
{
const int cur = m_warning ? 0 : m_length;
shiftLeft(*static_cast<const Base*>(&arg));
if (cur && m_status_vector[cur] == isc_arg_warning)
m_warning = cur;
}
void StatusVector::ImplStatusVector::shiftLeft(const char* text) throw()
{
shiftLeft(Str(text));
}
void StatusVector::ImplStatusVector::shiftLeft(const AbstractString& text) throw()
{
shiftLeft(Str(text));
}
void StatusVector::ImplStatusVector::shiftLeft(const MetaName& text) throw()
{
shiftLeft(Str(text));
}
void StatusVector::raise() const
{
if (hasData())
{
status_exception::raise(*this);
}
status_exception::raise(Gds(isc_random) << Str("Attempt to raise empty exception"));
}
ISC_STATUS StatusVector::ImplStatusVector::copyTo(ISC_STATUS* dest) const throw()
{
if (hasData())
{
memcpy(dest, value(), (length() + 1u) * sizeof(ISC_STATUS));
}
else
{
dest[0] = isc_arg_gds;
dest[1] = FB_SUCCESS;
dest[2] = isc_arg_end;
}
return dest[1];
}
ISC_STATUS StatusVector::ImplStatusVector::copyTo(IStatus* dest) const throw()
{
dest->init();
if (hasData())
{
const ISC_STATUS* v = m_status_vector;
unsigned int length = m_length;
unsigned int warning = m_warning;
if (v[warning] == isc_arg_warning)
{
dest->setWarnings2(length - warning, &v[warning]);
if (warning)
dest->setErrors2(warning, v);
}
else
dest->setErrors2(length, v);
}
return m_status_vector[1];
}
Gds::Gds(ISC_STATUS s) throw() :
StatusVector(isc_arg_gds, s) { }
PrivateDyn::PrivateDyn(ISC_STATUS codeWithoutFacility) throw() :
Gds(ENCODE_ISC_MSG(codeWithoutFacility, DYN_MSG_FAC)) { }
Num::Num(ISC_STATUS s) throw() :
Base(isc_arg_number, s) { }
Interpreted::Interpreted(const char* text) throw() :
StatusVector(isc_arg_interpreted, (ISC_STATUS)(IPTR) text) { }
Interpreted::Interpreted(const AbstractString& text) throw() :
StatusVector(isc_arg_interpreted, (ISC_STATUS)(IPTR) text.c_str()) { }
Unix::Unix(ISC_STATUS s) throw() :
Base(isc_arg_unix, s) { }
Mach::Mach(ISC_STATUS s) throw() :
Base(isc_arg_next_mach, s) { }
Windows::Windows(ISC_STATUS s) throw() :
Base(isc_arg_win32, s) { }
Warning::Warning(ISC_STATUS s) throw() :
StatusVector(isc_arg_warning, s) { }
// Str overloading.
Str::Str(const char* text) throw() :
Base(isc_arg_string, (ISC_STATUS)(IPTR) text) { }
Str::Str(const AbstractString& text) throw() :
Base(isc_arg_string, (ISC_STATUS)(IPTR) text.c_str()) { }
Str::Str(const MetaName& text) throw() :
Base(isc_arg_string, (ISC_STATUS)(IPTR) text.c_str()) { }
SqlState::SqlState(const char* text) throw() :
Base(isc_arg_sql_state, (ISC_STATUS)(IPTR) text) { }
SqlState::SqlState(const AbstractString& text) throw() :
Base(isc_arg_sql_state, (ISC_STATUS)(IPTR) text.c_str()) { }
OsError::OsError() throw() :
#ifdef WIN_NT
Base(isc_arg_win32, GetLastError()) { }
#else
Base(isc_arg_unix, errno) { }
#endif
OsError::OsError(ISC_STATUS s) throw() :
#ifdef WIN_NT
Base(isc_arg_win32, s) { }
#else
Base(isc_arg_unix, s) { }
#endif
} // namespace Arg
} // namespace Firebird