mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
127 lines
2.8 KiB
C++
127 lines
2.8 KiB
C++
/*-
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* Copyright (c) 1997, 1998
|
|
* Sleepycat Software. All rights reserved.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef lint
|
|
static const char sccsid[] = "@(#)cxx_except.cpp 10.6 (Sleepycat) 4/10/98";
|
|
#endif /* not lint */
|
|
|
|
#include "db_cxx.h"
|
|
#include "cxx_int.h"
|
|
#include <string.h>
|
|
|
|
// tmpString is used to create strings on the stack
|
|
//
|
|
class tmpString
|
|
{
|
|
public:
|
|
tmpString(const char *str1,
|
|
const char *str2 = 0,
|
|
const char *str3 = 0,
|
|
const char *str4 = 0,
|
|
const char *str5 = 0)
|
|
{
|
|
int len = strlen(str1);
|
|
if (str2)
|
|
len += strlen(str2);
|
|
if (str3)
|
|
len += strlen(str3);
|
|
if (str4)
|
|
len += strlen(str4);
|
|
if (str5)
|
|
len += strlen(str5);
|
|
|
|
s_ = new char[len+1];
|
|
|
|
strcpy(s_, str1);
|
|
if (str2)
|
|
strcat(s_, str2);
|
|
if (str3)
|
|
strcat(s_, str3);
|
|
if (str4)
|
|
strcat(s_, str4);
|
|
if (str5)
|
|
strcat(s_, str5);
|
|
}
|
|
~tmpString() { delete [] s_; }
|
|
operator const char *() { return s_; }
|
|
|
|
private:
|
|
char *s_;
|
|
};
|
|
|
|
// Note: would not be needed if we can inherit from exception
|
|
// It does not appear to be possible to inherit from exception
|
|
// with the current Microsoft library (VC5.0).
|
|
//
|
|
static char *dupString(const char *s)
|
|
{
|
|
char *r = new char[strlen(s)+1];
|
|
strcpy(r, s);
|
|
return r;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// DbException //
|
|
// //
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
DbException::~DbException()
|
|
{
|
|
if (what_)
|
|
delete [] what_;
|
|
}
|
|
|
|
DbException::DbException(int err)
|
|
: err_(err)
|
|
{
|
|
what_ = dupString(strerror(err));
|
|
}
|
|
|
|
DbException::DbException(const char *description)
|
|
: err_(0)
|
|
{
|
|
what_ = dupString(tmpString(description));
|
|
}
|
|
|
|
DbException::DbException(const char *prefix, int err)
|
|
: err_(err)
|
|
{
|
|
what_ = dupString(tmpString(prefix, ": ", strerror(err)));
|
|
}
|
|
|
|
DbException::DbException(const char *prefix1, const char *prefix2, int err)
|
|
: err_(err)
|
|
{
|
|
what_ = dupString(tmpString(prefix1, ": ", prefix2, ": ", strerror(err)));
|
|
}
|
|
|
|
DbException::DbException(const DbException &that)
|
|
: err_(that.err_)
|
|
{
|
|
what_ = dupString(that.what_);
|
|
}
|
|
|
|
DbException &DbException::operator = (const DbException &that)
|
|
{
|
|
err_ = that.err_;
|
|
what_ = dupString(that.what_);
|
|
return *this;
|
|
}
|
|
|
|
const int DbException::get_errno()
|
|
{
|
|
return err_;
|
|
}
|
|
|
|
const char *DbException::what() const
|
|
{
|
|
return what_;
|
|
}
|