summaryrefslogtreecommitdiff
path: root/stdafx.cpp
blob: f02f44d5e1ec215782ff45875cee998418406084 (plain)
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
// 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/>.
*/

#include "stdafx.h"

// TODO: reference any additional headers you need in STDAFX.H
// and not in this file

Assertion lastAssert[4];

#undef assert

#undef yassert
#include "assert.h"

string getDbContext();
void sayDbContext(const char *errmsg = 0);

/* "warning" assert -- safe to continue, so we don't throw exception. */
void wasserted(const char *msg, const char *file, unsigned line) { 
	problem() << "Assertion failure " << msg << ' ' << file << ' ' << line << endl;
	sayDbContext();
    lastAssert[1].set(msg, getDbContext().c_str(), file, line);
}

void asserted(const char *msg, const char *file, unsigned line) {
	problem() << "Assertion failure " << msg << ' ' << file << ' ' << line << endl;
	sayDbContext();
    lastAssert[0].set(msg, getDbContext().c_str(), file, line);
	throw AssertionException();
}

void uasserted(const char *msg) { 
	problem() << "User Assertion " << msg << endl;
    lastAssert[3].set(msg, getDbContext().c_str(), "", 0);
	throw UserAssertionException(msg);
}

void msgasserted(const char *msg) {
	log() << "Assertion: " << msg << '\n';
    lastAssert[2].set(msg, getDbContext().c_str(), "", 0);
	throw MsgAssertionException(msg);
}

string Assertion::toString() { 
    if( !isSet() )
        return "";

    stringstream ss;
    ss << msg << '\n';
    if( *context )
        ss << context << '\n';
    if( *file )
        ss << file << ' ' << line << '\n';
    return ss.str();
}