0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/stdafx.cpp

71 lines
2.2 KiB
C++
Raw Normal View History

2008-06-06 15:43:15 +02:00
// stdafx.cpp : source file that includes just the standard includes
// db.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
/**
* Copyright (C) 2008 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2008-06-06 15:43:15 +02:00
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
2008-12-05 00:11:25 +01:00
Assertion lastAssert[4];
2008-06-06 15:43:15 +02:00
#undef assert
#undef yassert
#include "assert.h"
2008-12-05 00:11:25 +01:00
string getDbContext();
2008-09-09 16:19:31 +02:00
void sayDbContext(const char *errmsg = 0);
2008-06-06 15:43:15 +02:00
2008-12-05 00:11:25 +01:00
/* "warning" assert -- safe to continue, so we don't throw exception. */
2008-06-06 15:43:15 +02:00
void wasserted(const char *msg, const char *file, unsigned line) {
problem() << "Assertion failure " << msg << ' ' << file << ' ' << line << endl;
sayDbContext();
2008-12-05 00:11:25 +01:00
lastAssert[1].set(msg, getDbContext().c_str(), file, line);
2008-06-06 15:43:15 +02:00
}
void asserted(const char *msg, const char *file, unsigned line) {
2008-12-05 00:11:25 +01:00
problem() << "Assertion failure " << msg << ' ' << file << ' ' << line << endl;
sayDbContext();
lastAssert[0].set(msg, getDbContext().c_str(), file, line);
2008-06-06 15:43:15 +02:00
throw AssertionException();
}
2008-07-11 18:27:23 +02:00
2008-08-25 22:46:39 +02:00
void uasserted(const char *msg) {
problem() << "User Assertion " << msg << endl;
2008-12-05 00:11:25 +01:00
lastAssert[3].set(msg, getDbContext().c_str(), "", 0);
throw UserAssertionException(msg);
}
2008-07-11 18:27:23 +02:00
void msgasserted(const char *msg) {
2008-09-11 21:13:47 +02:00
log() << "Assertion: " << msg << '\n';
2008-12-05 00:11:25 +01:00
lastAssert[2].set(msg, getDbContext().c_str(), "", 0);
2008-09-11 21:13:47 +02:00
throw MsgAssertionException(msg);
2008-07-11 18:27:23 +02:00
}
2008-12-05 00:11:25 +01:00
string Assertion::toString() {
stringstream ss;
ss << msg << '\n';
if( *context )
ss << context << '\n';
if( *file )
ss << file << ' ' << line << '\n';
return ss.str();
}