00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
#include <cstdarg>
00043
00044
#include <iostream>
00045
00046
#include "plerror.h"
00047
00048
00049
#if USING_MPI
00050
#include <plearn/sys/PLMPI.h>
00051
#endif //USING_MPI
00052
00053
00054
00055
00056
namespace PLearn {
00057
using namespace std;
00058
00059 ostream*
error_stream = &cerr;
00060
00061 #define ERROR_MSG_SIZE 1024
00062
00063
#ifndef USER_SUPPLIED_ERROR
00064 void errormsg(
const char* msg, ...)
00065 {
00066 va_list args;
00067 va_start(args,msg);
00068
char message[
ERROR_MSG_SIZE];
00069
00070
#if !defined(ULTRIX) && !defined(_MINGW_) && !defined(WIN32)
00071
vsnprintf(message,
ERROR_MSG_SIZE,msg,args);
00072
#else
00073
vsprintf(message,msg,args);
00074
#endif
00075
00076 va_end(args);
00077
00078
#ifndef USE_EXCEPTIONS
00079
#if USING_MPI
00080
*
error_stream <<
" ERROR from rank=" << PLMPI::rank <<
": " <<message<<
endl;
00081
#else //USING_MPI
00082
*
error_stream <<
" ERROR: "<<message<<
endl;
00083
#endif //USING_MPI
00084
exit(1);
00085
#else
00086
throw PLearnError(message);
00087
#endif
00088
}
00089
#endif
00090
00091
00092 void warningmsg(
const char* msg, ...)
00093 {
00094 va_list args;
00095 va_start(args,msg);
00096
char message[
ERROR_MSG_SIZE];
00097
00098
#if !defined(ULTRIX) && !defined(_MINGW_) && !defined(WIN32)
00099
vsnprintf(message,
ERROR_MSG_SIZE,msg,args);
00100
#else
00101
vsprintf(message,msg,args);
00102
#endif
00103
00104 va_end(args);
00105
00106 *
error_stream <<
" WARNING: "<<message<<
endl;
00107 }
00108
00109 void exitmsg(
const char* msg, ...)
00110 {
00111 va_list args;
00112 va_start(args,msg);
00113
char message[
ERROR_MSG_SIZE];
00114
00115
#if !defined(ULTRIX) && !defined(_MINGW_) && !defined(WIN32)
00116
vsnprintf(message,
ERROR_MSG_SIZE,msg,args);
00117
#else
00118
vsprintf(message,msg,args);
00119
#endif
00120
00121 va_end(args);
00122
00123 *
error_stream << message <<
endl;
00124 exit(1);
00125 }
00126
00127
00128 }