2009-06-04 12:25:58 +01:00
|
|
|
// assert_util.cpp
|
|
|
|
|
|
2009-10-27 15:58:27 -04:00
|
|
|
/* Copyright 2009 10gen Inc.
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
2009-06-04 12:25:58 +01:00
|
|
|
|
2010-04-27 15:27:52 -04:00
|
|
|
#include "pch.h"
|
2009-06-04 12:25:58 +01:00
|
|
|
#include "assert_util.h"
|
|
|
|
|
#include "assert.h"
|
2010-11-06 15:50:35 -04:00
|
|
|
//#include "file.h"
|
2010-05-25 22:02:47 -07:00
|
|
|
#include <cmath>
|
|
|
|
|
using namespace std;
|
2009-06-04 12:25:58 +01:00
|
|
|
|
2010-04-26 12:14:14 -04:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
#include <cxxabi.h>
|
|
|
|
|
#include <sys/file.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-06-22 00:26:08 +02:00
|
|
|
//#include "../bson/bson.h"
|
|
|
|
|
#include "../db/jsobj.h"
|
2010-06-21 13:41:34 -04:00
|
|
|
|
2009-06-04 12:25:58 +01:00
|
|
|
namespace mongo {
|
|
|
|
|
|
2010-02-23 07:51:36 -05:00
|
|
|
AssertionCount assertionCount;
|
2011-01-04 00:40:41 -05:00
|
|
|
|
2010-02-23 07:51:36 -05:00
|
|
|
AssertionCount::AssertionCount()
|
2011-01-04 00:40:41 -05:00
|
|
|
: regular(0),warning(0),msg(0),user(0),rollovers(0) {
|
2010-02-23 07:51:36 -05:00
|
|
|
}
|
|
|
|
|
|
2011-01-04 00:40:41 -05:00
|
|
|
void AssertionCount::rollover() {
|
2010-02-23 07:51:36 -05:00
|
|
|
rollovers++;
|
|
|
|
|
regular = 0;
|
|
|
|
|
warning = 0;
|
|
|
|
|
msg = 0;
|
|
|
|
|
user = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-04 00:40:41 -05:00
|
|
|
void AssertionCount::condrollover( int newvalue ) {
|
2010-02-23 07:51:36 -05:00
|
|
|
static int max = (int)pow( 2.0 , 30 );
|
|
|
|
|
if ( newvalue >= max )
|
|
|
|
|
rollover();
|
|
|
|
|
}
|
2010-06-21 13:41:34 -04:00
|
|
|
|
|
|
|
|
void ExceptionInfo::append( BSONObjBuilder& b , const char * m , const char * c ) const {
|
|
|
|
|
if ( msg.empty() )
|
|
|
|
|
b.append( m , "unknown assertion" );
|
|
|
|
|
else
|
|
|
|
|
b.append( m , msg );
|
2011-01-04 00:40:41 -05:00
|
|
|
|
2010-06-21 13:41:34 -04:00
|
|
|
if ( code )
|
|
|
|
|
b.append( c , code );
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-04 00:40:41 -05:00
|
|
|
|
|
|
|
|
string getDbContext();
|
|
|
|
|
|
|
|
|
|
/* "warning" assert -- safe to continue, so we don't throw exception. */
|
2009-06-04 12:25:58 +01:00
|
|
|
void wasserted(const char *msg, const char *file, unsigned line) {
|
2011-03-17 11:34:10 -04:00
|
|
|
problem() << "warning Assertion failure " << msg << ' ' << file << ' ' << dec << line << endl;
|
2009-06-04 12:25:58 +01:00
|
|
|
sayDbContext();
|
2009-12-28 17:12:49 -05:00
|
|
|
raiseError(0,msg && *msg ? msg : "wassertion failure");
|
2010-02-23 07:51:36 -05:00
|
|
|
assertionCount.condrollover( ++assertionCount.warning );
|
2011-03-29 07:54:57 -04:00
|
|
|
#if defined(_DEBUG) || defined(_DURABLEDEFAULTON)
|
|
|
|
|
// this is so we notice in buildbot
|
|
|
|
|
log() << "\n\n***aborting after wassert() failure in a debug/test build\n\n" << endl;
|
|
|
|
|
abort();
|
|
|
|
|
#endif
|
2009-06-04 12:25:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void asserted(const char *msg, const char *file, unsigned line) {
|
2010-02-23 07:51:36 -05:00
|
|
|
assertionCount.condrollover( ++assertionCount.regular );
|
2009-06-04 12:25:58 +01:00
|
|
|
problem() << "Assertion failure " << msg << ' ' << file << ' ' << dec << line << endl;
|
|
|
|
|
sayDbContext();
|
2009-12-28 17:12:49 -05:00
|
|
|
raiseError(0,msg && *msg ? msg : "assertion failure");
|
2009-10-01 10:41:15 -04:00
|
|
|
stringstream temp;
|
|
|
|
|
temp << "assertion " << file << ":" << line;
|
2010-06-21 13:41:34 -04:00
|
|
|
AssertionException e(temp.str(),0);
|
2009-11-02 18:53:44 -05:00
|
|
|
breakpoint();
|
2011-03-22 00:52:34 -04:00
|
|
|
#if defined(_DEBUG) || defined(_DURABLEDEFAULTON)
|
2011-03-29 07:54:57 -04:00
|
|
|
// this is so we notice in buildbot
|
2011-03-22 00:52:34 -04:00
|
|
|
log() << "\n\n***aborting after assert() failure in a debug/test build\n\n" << endl;
|
|
|
|
|
abort();
|
|
|
|
|
#endif
|
2009-10-01 10:41:15 -04:00
|
|
|
throw e;
|
2009-06-04 12:25:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void uassert_nothrow(const char *msg) {
|
2009-12-28 17:12:49 -05:00
|
|
|
raiseError(0,msg);
|
2009-06-04 12:25:58 +01:00
|
|
|
}
|
|
|
|
|
|
2009-12-28 16:43:43 -05:00
|
|
|
void uasserted(int msgid, const char *msg) {
|
2010-02-23 07:51:36 -05:00
|
|
|
assertionCount.condrollover( ++assertionCount.user );
|
2011-05-22 01:11:03 -04:00
|
|
|
LOG(1) << "User Assertion: " << msgid << ":" << msg << endl;
|
2009-12-28 17:12:49 -05:00
|
|
|
raiseError(msgid,msg);
|
2009-12-28 17:06:07 -05:00
|
|
|
throw UserException(msgid, msg);
|
2009-06-04 12:25:58 +01:00
|
|
|
}
|
|
|
|
|
|
2009-12-28 16:43:43 -05:00
|
|
|
void msgasserted(int msgid, const char *msg) {
|
2010-02-23 07:51:36 -05:00
|
|
|
assertionCount.condrollover( ++assertionCount.warning );
|
2010-05-19 12:11:17 -04:00
|
|
|
tlog() << "Assertion: " << msgid << ":" << msg << endl;
|
2009-12-28 17:12:49 -05:00
|
|
|
raiseError(msgid,msg && *msg ? msg : "massert failure");
|
2009-11-02 18:53:44 -05:00
|
|
|
breakpoint();
|
2010-04-22 18:43:37 -04:00
|
|
|
printStackTrace();
|
|
|
|
|
throw MsgAssertionException(msgid, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void msgassertedNoTrace(int msgid, const char *msg) {
|
|
|
|
|
assertionCount.condrollover( ++assertionCount.warning );
|
|
|
|
|
log() << "Assertion: " << msgid << ":" << msg << endl;
|
|
|
|
|
raiseError(msgid,msg && *msg ? msg : "massert failure");
|
2009-12-28 17:06:07 -05:00
|
|
|
throw MsgAssertionException(msgid, msg);
|
2009-06-04 12:25:58 +01:00
|
|
|
}
|
|
|
|
|
|
2011-01-04 00:40:41 -05:00
|
|
|
void streamNotGood( int code , string msg , std::ios& myios ) {
|
2010-01-24 21:05:46 -05:00
|
|
|
stringstream ss;
|
|
|
|
|
// errno might not work on all systems for streams
|
|
|
|
|
// if it doesn't for a system should deal with here
|
2010-04-24 14:23:25 -04:00
|
|
|
ss << msg << " stream invalid: " << errnoWithDescription();
|
2010-01-24 21:05:46 -05:00
|
|
|
throw UserException( code , ss.str() );
|
|
|
|
|
}
|
2011-01-04 00:40:41 -05:00
|
|
|
|
|
|
|
|
string errnoWithPrefix( const char * prefix ) {
|
2010-02-04 10:59:13 -05:00
|
|
|
stringstream ss;
|
|
|
|
|
if ( prefix )
|
|
|
|
|
ss << prefix << ": ";
|
2010-04-24 14:03:14 -04:00
|
|
|
ss << errnoWithDescription();
|
2010-02-04 10:59:13 -05:00
|
|
|
return ss.str();
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-04 00:40:41 -05:00
|
|
|
string demangleName( const type_info& typeinfo ) {
|
2010-04-26 12:14:14 -04:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
return typeinfo.name();
|
|
|
|
|
#else
|
|
|
|
|
int status;
|
2011-01-04 00:40:41 -05:00
|
|
|
|
2010-04-26 12:14:14 -04:00
|
|
|
char * niceName = abi::__cxa_demangle(typeinfo.name(), 0, 0, &status);
|
|
|
|
|
if ( ! niceName )
|
|
|
|
|
return typeinfo.name();
|
2011-01-04 00:40:41 -05:00
|
|
|
|
2010-04-26 12:14:14 -04:00
|
|
|
string s = niceName;
|
|
|
|
|
free(niceName);
|
|
|
|
|
return s;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-05 17:01:33 -04:00
|
|
|
}
|
|
|
|
|
|