358 lines
12 KiB
C++
358 lines
12 KiB
C++
#include "common/Utilities.h"
|
|
#include "common/StackTrace.h"
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <stdexcept>
|
|
#include <fstream>
|
|
#include <string.h>
|
|
#include <signal.h>
|
|
#include <math.h>
|
|
#include <algorithm>
|
|
|
|
#ifdef USE_MPI
|
|
#include "mpi.h"
|
|
#endif
|
|
|
|
// Detect the OS and include system dependent headers
|
|
#if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64) || defined(_MSC_VER)
|
|
// Note: windows has not been testeds
|
|
#define USE_WINDOWS
|
|
#include <windows.h>
|
|
#include <process.h>
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
#include <psapi.h>
|
|
#include <DbgHelp.h>
|
|
#define mkdir(path, mode) _mkdir(path)
|
|
//#pragma comment(lib, psapi.lib) //added
|
|
//#pragma comment(linker, /DEFAULTLIB:psapi.lib)
|
|
#elif defined(__APPLE__)
|
|
#define USE_MAC
|
|
#include <sys/time.h>
|
|
#include <signal.h>
|
|
#include <execinfo.h>
|
|
#include <dlfcn.h>
|
|
#include <mach/mach.h>
|
|
#include <unistd.h>
|
|
#elif defined(__linux) || defined(__unix) || defined(__posix)
|
|
#define USE_LINUX
|
|
#include <sys/time.h>
|
|
#include <execinfo.h>
|
|
#include <dlfcn.h>
|
|
#include <malloc.h>
|
|
#include <unistd.h>
|
|
#else
|
|
#error Unknown OS
|
|
#endif
|
|
|
|
|
|
#ifdef __GNUC__
|
|
#define USE_ABI
|
|
#include <cxxabi.h>
|
|
#endif
|
|
|
|
|
|
/****************************************************************************
|
|
* Function to terminate the program *
|
|
****************************************************************************/
|
|
static bool abort_printMemory = true;
|
|
static bool abort_printStack = true;
|
|
static bool abort_throwException = false;
|
|
static int force_exit = 0;
|
|
void Utilities::setAbortBehavior( bool printMemory, bool printStack, bool throwException )
|
|
{
|
|
abort_printMemory = printMemory;
|
|
abort_printStack = printStack;
|
|
abort_throwException = throwException;
|
|
}
|
|
void Utilities::abort(const std::string &message, const std::string &filename, const int line)
|
|
{
|
|
std::stringstream msg;
|
|
msg << "Program abort called in file `" << filename << "' at line " << line << std::endl;
|
|
// Add the memory usage and call stack to the error message
|
|
if ( abort_printMemory ) {
|
|
size_t N_bytes = Utilities::getMemoryUsage();
|
|
msg << "Bytes used = " << N_bytes << std::endl;
|
|
}
|
|
if ( abort_printStack ) {
|
|
std::vector<StackTrace::stack_info> stack = StackTrace::getCallStack();
|
|
msg << std::endl;
|
|
msg << "Stack Trace:\n";
|
|
for (size_t i=0; i<stack.size(); i++)
|
|
msg << " " << stack[i].print() << std::endl;
|
|
}
|
|
msg << std::endl << message << std::endl;
|
|
// Print the message and abort
|
|
if ( force_exit>1 ) {
|
|
exit(-1);
|
|
} else if ( !abort_throwException ) {
|
|
// Use MPI_abort (will terminate all processes)
|
|
force_exit = 2;
|
|
std::cerr << msg.str();
|
|
#if defined(USE_MPI) || defined(HAVE_MPI)
|
|
int initialized=0, finalized=0;
|
|
MPI_Initialized(&initialized);
|
|
MPI_Finalized(&finalized);
|
|
if ( initialized!=0 && finalized==0 )
|
|
MPI_Abort(MPI_COMM_WORLD,-1);
|
|
#endif
|
|
exit(-1);
|
|
} else if ( force_exit>0 ) {
|
|
exit(-1);
|
|
} else {
|
|
// Throw and standard exception (allows the use of try, catch)
|
|
throw std::logic_error(msg.str());
|
|
}
|
|
}
|
|
|
|
|
|
/****************************************************************************
|
|
* Function to handle MPI errors *
|
|
****************************************************************************/
|
|
/*#if defined(USE_MPI) || defined(HAVE_MPI)
|
|
MPI_Errhandler mpierr;
|
|
void MPI_error_handler_fun( MPI_Comm *comm, int *err, ... )
|
|
{
|
|
if ( *err==MPI_ERR_COMM && *comm==MPI_COMM_WORLD ) {
|
|
// Special error handling for an invalid MPI_COMM_WORLD
|
|
std::cerr << "Error invalid MPI_COMM_WORLD";
|
|
exit(-1);
|
|
}
|
|
int msg_len=0;
|
|
char message[1000];
|
|
MPI_Error_string( *err, message, &msg_len );
|
|
if ( msg_len <= 0 )
|
|
abort("Unkown error in MPI");
|
|
abort( "Error calling MPI routine:\n" + std::string(message) );
|
|
}
|
|
#endif*/
|
|
|
|
|
|
/****************************************************************************
|
|
* Function to handle unhandled exceptions *
|
|
****************************************************************************/
|
|
bool tried_MPI_Abort=false;
|
|
void term_func_abort(int err)
|
|
{
|
|
printf("Exiting due to abort (%i)\n",err);
|
|
std::vector<StackTrace::stack_info> stack = StackTrace::getCallStack();
|
|
std::string message = "Stack Trace:\n";
|
|
for (size_t i=0; i<stack.size(); i++)
|
|
message += " " + stack[i].print() += "\n";
|
|
message += "\nExiting\n";
|
|
// Print the message and abort
|
|
std::cerr << message;
|
|
#ifdef USE_MPI
|
|
if ( !abort_throwException && !tried_MPI_Abort ) {
|
|
tried_MPI_Abort = true;
|
|
MPI_Abort(MPI_COMM_WORLD,-1);
|
|
}
|
|
#endif
|
|
exit(-1);
|
|
}
|
|
#if defined(USE_LINUX) || defined(USE_MAC)
|
|
static int tried_throw = 0;
|
|
#endif
|
|
void term_func()
|
|
{
|
|
// Try to re-throw the last error to get the last message
|
|
std::string last_message;
|
|
#if defined(USE_LINUX) || defined(USE_MAC)
|
|
try {
|
|
if ( tried_throw==0 ) {
|
|
tried_throw = 1;
|
|
throw;
|
|
}
|
|
// No active exception
|
|
} catch (const std::exception &err) {
|
|
// Caught a std::runtime_error
|
|
last_message = err.what();
|
|
} catch (...) {
|
|
// Caught an unknown exception
|
|
last_message = "unknown exception occurred.";
|
|
}
|
|
#endif
|
|
std::stringstream msg;
|
|
msg << "Unhandled exception:" << std::endl;
|
|
msg << " " << last_message << std::endl;
|
|
Utilities::abort( msg.str(), __FILE__, __LINE__ );
|
|
}
|
|
|
|
|
|
/****************************************************************************
|
|
* Functions to set the error handler *
|
|
****************************************************************************/
|
|
static void setTerminateErrorHandler()
|
|
{
|
|
std::set_terminate( term_func );
|
|
signal(SIGABRT,&term_func_abort);
|
|
signal(SIGFPE,&term_func_abort);
|
|
signal(SIGILL,&term_func_abort);
|
|
signal(SIGINT,&term_func_abort);
|
|
signal(SIGSEGV,&term_func_abort);
|
|
signal(SIGTERM,&term_func_abort);
|
|
}
|
|
void Utilities::setErrorHandlers()
|
|
{
|
|
//d_use_MPI_Abort = use_MPI_Abort;
|
|
//setMPIErrorHandler( SAMRAI::tbox::SAMRAI_MPI::getSAMRAIWorld() );
|
|
setTerminateErrorHandler();
|
|
}
|
|
/*void Utilities::setMPIErrorHandler( const SAMRAI::tbox::SAMRAI_MPI& mpi )
|
|
{
|
|
#if defined(USE_MPI) || defined(HAVE_MPI)
|
|
if ( mpierr.get()==NULL ) {
|
|
mpierr = boost::shared_ptr<MPI_Errhandler>( new MPI_Errhandler );
|
|
MPI_Comm_create_errhandler( MPI_error_handler_fun, mpierr.get() );
|
|
}
|
|
MPI_Comm_set_errhandler( mpi.getCommunicator(), *mpierr );
|
|
MPI_Comm_set_errhandler( MPI_COMM_WORLD, *mpierr );
|
|
#endif
|
|
}
|
|
void Utilities::clearMPIErrorHandler( )
|
|
{
|
|
#if defined(USE_MPI) || defined(HAVE_MPI)
|
|
if ( mpierr.get()!=NULL )
|
|
MPI_Errhandler_free( mpierr.get() ); // Delete the error handler
|
|
mpierr.reset();
|
|
MPI_Comm_set_errhandler( MPI_COMM_SELF, MPI_ERRORS_ARE_FATAL );
|
|
MPI_Comm_set_errhandler( MPI_COMM_WORLD, MPI_ERRORS_ARE_FATAL );
|
|
#endif
|
|
}*/
|
|
|
|
|
|
/****************************************************************************
|
|
* Function to get the memory usage *
|
|
* Note: this function should be thread-safe *
|
|
****************************************************************************/
|
|
#if defined(USE_MAC)
|
|
// Get the page size on mac
|
|
static size_t page_size = static_cast<size_t>(sysconf(_SC_PAGESIZE));
|
|
#endif
|
|
static size_t N_bytes_initialization = Utilities::getMemoryUsage();
|
|
size_t Utilities::getMemoryUsage()
|
|
{
|
|
size_t N_bytes = 0;
|
|
#if defined(USE_LINUX)
|
|
struct mallinfo meminfo = mallinfo();
|
|
size_t size_hblkhd = static_cast<unsigned int>( meminfo.hblkhd );
|
|
size_t size_uordblks = static_cast<unsigned int>( meminfo.uordblks );
|
|
N_bytes = size_hblkhd + size_uordblks;
|
|
#elif defined(USE_MAC)
|
|
struct task_basic_info t_info;
|
|
mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT;
|
|
if (KERN_SUCCESS != task_info(mach_task_self(),
|
|
TASK_BASIC_INFO, (task_info_t)&t_info,
|
|
&t_info_count)) {
|
|
return 0;
|
|
}
|
|
N_bytes = t_info.virtual_size;
|
|
#elif defined(USE_WINDOWS)
|
|
PROCESS_MEMORY_COUNTERS memCounter;
|
|
GetProcessMemoryInfo( GetCurrentProcess(), &memCounter, sizeof(memCounter) );
|
|
N_bytes = memCounter.WorkingSetSize;
|
|
#endif
|
|
return N_bytes;
|
|
}
|
|
|
|
|
|
/****************************************************************************
|
|
* Functions to get the time and timer resolution *
|
|
****************************************************************************/
|
|
#if defined(USE_WINDOWS)
|
|
double Utilities::time()
|
|
{
|
|
LARGE_INTEGER end, f;
|
|
QueryPerformanceFrequency(&f);
|
|
QueryPerformanceCounter(&end);
|
|
double time = ((double)end.QuadPart)/((double)f.QuadPart);
|
|
return time;
|
|
}
|
|
double Utilities::tick()
|
|
{
|
|
LARGE_INTEGER f;
|
|
QueryPerformanceFrequency(&f);
|
|
double resolution = ((double)1.0)/((double)f.QuadPart);
|
|
return resolution;
|
|
}
|
|
#elif defined(USE_LINUX) || defined(USE_MAC)
|
|
double Utilities::time()
|
|
{
|
|
timeval current_time;
|
|
gettimeofday(¤t_time,NULL);
|
|
double time = ((double)current_time.tv_sec)+1e-6*((double)current_time.tv_usec);
|
|
return time;
|
|
}
|
|
double Utilities::tick()
|
|
{
|
|
timeval start, end;
|
|
gettimeofday(&start,NULL);
|
|
gettimeofday(&end,NULL);
|
|
while ( end.tv_sec==start.tv_sec && end.tv_usec==start.tv_usec )
|
|
gettimeofday(&end,NULL);
|
|
double resolution = ((double)(end.tv_sec-start.tv_sec))+1e-6*((double)(end.tv_usec-start.tv_usec));
|
|
return resolution;
|
|
}
|
|
#else
|
|
#error Unknown OS
|
|
#endif
|
|
|
|
|
|
// Factor a number into it's prime factors
|
|
std::vector<int> Utilities::factor(size_t number)
|
|
{
|
|
if ( number<=3 )
|
|
return std::vector<int>(1,(int)number);
|
|
size_t i, n, n_max;
|
|
bool factor_found;
|
|
// Compute the maximum number of factors
|
|
int N_primes_max = 1;
|
|
n = number;
|
|
while (n >>= 1) ++N_primes_max;
|
|
// Initialize n, factors
|
|
n = number;
|
|
std::vector<int> factors;
|
|
factors.reserve(N_primes_max);
|
|
while ( 1 ) {
|
|
// Check if n is a trivial prime number
|
|
if ( n==2 || n==3 || n==5 ) {
|
|
factors.push_back( (int) n );
|
|
break;
|
|
}
|
|
// Check if n is divisible by 2
|
|
if ( n%2 == 0 ) {
|
|
factors.push_back( 2 );
|
|
n/=2;
|
|
continue;
|
|
}
|
|
// Check each odd number until a factor is reached
|
|
n_max = (size_t) floor(sqrt((double) n));
|
|
factor_found = false;
|
|
for (i=3; i<=n_max; i+=2) {
|
|
if ( n%i == 0 ) {
|
|
factors.push_back( i );
|
|
n/=i;
|
|
factor_found = true;
|
|
break;
|
|
}
|
|
}
|
|
if ( factor_found )
|
|
continue;
|
|
// No factors were found, the number must be prime
|
|
factors.push_back( (int) n );
|
|
break;
|
|
}
|
|
// Sort the factors
|
|
std::sort( factors.begin(), factors.end() );
|
|
return factors;
|
|
}
|
|
|
|
|
|
// Dummy function to prevent compiler from optimizing away variable
|
|
void Utilities::nullUse( void* data )
|
|
{
|
|
NULL_USE(data);
|
|
}
|
|
|