10039db0dSBarry Smith #define PETSC_DESIRE_FEATURE_TEST_MACROS /* for fileno() */ 2c6db04a5SJed Brown #include <petscsys.h> /*I "petscsys.h" I*/ 3f67a399dSBarry Smith #include <petsc/private/petscimpl.h> 4c6db04a5SJed Brown #include <petscconfiginfo.h> 5114011d0SBarry Smith #if defined(PETSC_HAVE_UNISTD_H) 6114011d0SBarry Smith #include <unistd.h> 7114011d0SBarry Smith #endif 8e5c89e4eSSatish Balay 9e5c89e4eSSatish Balay /*@C 1045b666d6SBarry Smith PetscIgnoreErrorHandler - Deprecated, use PetscReturnErrorHandler(). Ignores the error, allows program to continue as if error did not occure 11e5c89e4eSSatish Balay 12e5c89e4eSSatish Balay Not Collective 13e5c89e4eSSatish Balay 14e5c89e4eSSatish Balay Input Parameters: 15e32f2f54SBarry Smith + comm - communicator over which error occurred 16e32f2f54SBarry Smith . line - the line number of the error (indicated by __LINE__) 17e5c89e4eSSatish Balay . file - the file in which the error was detected (indicated by __FILE__) 18e5c89e4eSSatish Balay . mess - an error text string, usually just printed to the screen 19e5c89e4eSSatish Balay . n - the generic error number 20e5c89e4eSSatish Balay . p - specific error number 21e5c89e4eSSatish Balay - ctx - error handler context 22e5c89e4eSSatish Balay 23e5c89e4eSSatish Balay Level: developer 24e5c89e4eSSatish Balay 25e5c89e4eSSatish Balay Notes: 26e5c89e4eSSatish Balay Most users need not directly employ this routine and the other error 27e5c89e4eSSatish Balay handlers, but can instead use the simplified interface SETERRQ, which has 28e5c89e4eSSatish Balay the calling sequence 29e32f2f54SBarry Smith $ SETERRQ(comm,number,p,mess) 30e5c89e4eSSatish Balay 31db781477SPatrick Sanan .seealso: `PetscReturnErrorHandler()` 32e5c89e4eSSatish Balay @*/ 33efca3c55SSatish Balay PetscErrorCode PetscIgnoreErrorHandler(MPI_Comm comm,int line,const char *fun,const char *file,PetscErrorCode n,PetscErrorType p,const char *mess,void *ctx) 34e5c89e4eSSatish Balay { 35e5c89e4eSSatish Balay PetscFunctionBegin; 36e5c89e4eSSatish Balay PetscFunctionReturn(n); 37e5c89e4eSSatish Balay } 38e5c89e4eSSatish Balay 39107894f0SSatish Balay /* ---------------------------------------------------------------------------------------*/ 40107894f0SSatish Balay 415abee1b0SJed Brown static char arch[128],hostname[128],username[128],pname[PETSC_MAX_PATH_LEN],date[128]; 42ace3abfcSBarry Smith static PetscBool PetscErrorPrintfInitializeCalled = PETSC_FALSE; 433f6e4ae9SSatish Balay static char version[256]; 44107894f0SSatish Balay 45107894f0SSatish Balay /* 46107894f0SSatish Balay Initializes arch, hostname, username, date so that system calls do NOT need 47107894f0SSatish Balay to be made during the error handler. 48107894f0SSatish Balay */ 49dd63322aSSatish Balay PetscErrorCode PetscErrorPrintfInitialize(void) 50107894f0SSatish Balay { 51ace3abfcSBarry Smith PetscBool use_stdout = PETSC_FALSE,use_none = PETSC_FALSE; 52107894f0SSatish Balay 53107894f0SSatish Balay PetscFunctionBegin; 549566063dSJacob Faibussowitsch PetscCall(PetscGetArchType(arch,sizeof(arch))); 559566063dSJacob Faibussowitsch PetscCall(PetscGetHostName(hostname,sizeof(hostname))); 569566063dSJacob Faibussowitsch PetscCall(PetscGetUserName(username,sizeof(username))); 579566063dSJacob Faibussowitsch PetscCall(PetscGetProgramName(pname,sizeof(pname))); 589566063dSJacob Faibussowitsch PetscCall(PetscGetDate(date,sizeof(date))); 599566063dSJacob Faibussowitsch PetscCall(PetscGetVersion(version,sizeof(version))); 60e8fb0fc0SBarry Smith 619566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetBool(NULL,NULL,"-error_output_stdout",&use_stdout,NULL)); 62a297a907SKarl Rupp if (use_stdout) PETSC_STDERR = PETSC_STDOUT; 639566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetBool(NULL,NULL,"-error_output_none",&use_none,NULL)); 64a297a907SKarl Rupp if (use_none) PetscErrorPrintf = PetscErrorPrintfNone; 65107894f0SSatish Balay PetscErrorPrintfInitializeCalled = PETSC_TRUE; 66107894f0SSatish Balay PetscFunctionReturn(0); 67107894f0SSatish Balay } 68107894f0SSatish Balay 697087cfbeSBarry Smith PetscErrorCode PetscErrorPrintfNone(const char format[],...) 70e8fb0fc0SBarry Smith { 71e8fb0fc0SBarry Smith return 0; 72e8fb0fc0SBarry Smith } 73e8fb0fc0SBarry Smith 747087cfbeSBarry Smith PetscErrorCode PetscErrorPrintfDefault(const char format[],...) 75e8fb0fc0SBarry Smith { 76e8fb0fc0SBarry Smith va_list Argp; 77ace3abfcSBarry Smith static PetscBool PetscErrorPrintfCalled = PETSC_FALSE; 78e8fb0fc0SBarry Smith 79e8fb0fc0SBarry Smith /* 80e8fb0fc0SBarry Smith This function does not call PetscFunctionBegin and PetscFunctionReturn() because 81e8fb0fc0SBarry Smith it may be called by PetscStackView(). 82e8fb0fc0SBarry Smith 83e8fb0fc0SBarry Smith This function does not do error checking because it is called by the error handlers. 84e8fb0fc0SBarry Smith */ 85e8fb0fc0SBarry Smith 86e8fb0fc0SBarry Smith if (!PetscErrorPrintfCalled) { 87e8fb0fc0SBarry Smith PetscErrorPrintfCalled = PETSC_TRUE; 88e8fb0fc0SBarry Smith 89e8fb0fc0SBarry Smith /* 90e8fb0fc0SBarry Smith On the SGI machines and Cray T3E, if errors are generated "simultaneously" by 91e8fb0fc0SBarry Smith different processors, the messages are printed all jumbled up; to try to 92e8fb0fc0SBarry Smith prevent this we have each processor wait based on their rank 93e8fb0fc0SBarry Smith */ 94e8fb0fc0SBarry Smith #if defined(PETSC_CAN_SLEEP_AFTER_ERROR) 95e8fb0fc0SBarry Smith { 96e8fb0fc0SBarry Smith PetscMPIInt rank; 97a297a907SKarl Rupp if (PetscGlobalRank > 8) rank = 8; 98a297a907SKarl Rupp else rank = PetscGlobalRank; 99a6d0e24fSJed Brown PetscSleep((PetscReal)rank); 100e8fb0fc0SBarry Smith } 101e8fb0fc0SBarry Smith #endif 102e8fb0fc0SBarry Smith } 103e8fb0fc0SBarry Smith 1041179db26SBarry Smith PetscFPrintf(PETSC_COMM_SELF,PETSC_STDERR,"[%d]PETSC ERROR: ",PetscGlobalRank); 105e8fb0fc0SBarry Smith va_start(Argp,format); 1061179db26SBarry Smith (*PetscVFPrintf)(PETSC_STDERR,format,Argp); 107e8fb0fc0SBarry Smith va_end(Argp); 108e8fb0fc0SBarry Smith return 0; 109e8fb0fc0SBarry Smith } 110e8fb0fc0SBarry Smith 111c2eed0edSBarry Smith /* 112c2eed0edSBarry Smith On some systems when the stderr is nested through several levels of shell script 113c2eed0edSBarry Smith before being passed to a file the isatty() falsely returns true resulting in 114c2eed0edSBarry Smith the screen highlight variables being passed through the test harness. Therefore 115c2eed0edSBarry Smith simply do not highlight when the PETSC_STDERR is PETSC_STDOUT. 116c2eed0edSBarry Smith */ 117114011d0SBarry Smith static void PetscErrorPrintfHilight(void) 118114011d0SBarry Smith { 11998ed35c3SBarry Smith #if defined(PETSC_HAVE_UNISTD_H) && defined(PETSC_USE_ISATTY) 120c2eed0edSBarry Smith if (PetscErrorPrintf == PetscErrorPrintfDefault && PETSC_STDERR != PETSC_STDOUT) { 121114011d0SBarry Smith if (isatty(fileno(PETSC_STDERR))) fprintf(PETSC_STDERR,"\033[1;31m"); 122114011d0SBarry Smith } 123114011d0SBarry Smith #endif 124114011d0SBarry Smith } 125114011d0SBarry Smith 126114011d0SBarry Smith static void PetscErrorPrintfNormal(void) 127114011d0SBarry Smith { 12898ed35c3SBarry Smith #if defined(PETSC_HAVE_UNISTD_H) && defined(PETSC_USE_ISATTY) 129c2eed0edSBarry Smith if (PetscErrorPrintf == PetscErrorPrintfDefault && PETSC_STDERR != PETSC_STDOUT) { 130114011d0SBarry Smith if (isatty(fileno(PETSC_STDERR))) fprintf(PETSC_STDERR,"\033[0;39m\033[0;49m"); 131114011d0SBarry Smith } 132114011d0SBarry Smith #endif 133114011d0SBarry Smith } 134114011d0SBarry Smith 13595c0884eSLisandro Dalcin PETSC_EXTERN PetscErrorCode PetscOptionsViewError(void); 136114011d0SBarry Smith 137e5c89e4eSSatish Balay /*@C 138e5c89e4eSSatish Balay 139e5c89e4eSSatish Balay PetscTraceBackErrorHandler - Default error handler routine that generates 140e5c89e4eSSatish Balay a traceback on error detection. 141e5c89e4eSSatish Balay 142e5c89e4eSSatish Balay Not Collective 143e5c89e4eSSatish Balay 144e5c89e4eSSatish Balay Input Parameters: 145e32f2f54SBarry Smith + comm - communicator over which error occurred 146e32f2f54SBarry Smith . line - the line number of the error (indicated by __LINE__) 147e5c89e4eSSatish Balay . file - the file in which the error was detected (indicated by __FILE__) 148e5c89e4eSSatish Balay . mess - an error text string, usually just printed to the screen 149e5c89e4eSSatish Balay . n - the generic error number 150df3898eeSBarry Smith . p - PETSC_ERROR_INITIAL if this is the first call the error handler, otherwise PETSC_ERROR_REPEAT 151e5c89e4eSSatish Balay - ctx - error handler context 152e5c89e4eSSatish Balay 15345b666d6SBarry Smith Options Database: 15445b666d6SBarry Smith + -error_output_stdout - output the error messages to stdout instead of the default stderr 15545b666d6SBarry Smith - -error_output_none - do not output the error messages 156e5c89e4eSSatish Balay 157e5c89e4eSSatish Balay Notes: 158e5c89e4eSSatish Balay Most users need not directly employ this routine and the other error 159e5c89e4eSSatish Balay handlers, but can instead use the simplified interface SETERRQ, which has 160e5c89e4eSSatish Balay the calling sequence 161d736bfebSBarry Smith $ SETERRQ(comm,number,n,mess) 162e5c89e4eSSatish Balay 163e5c89e4eSSatish Balay Notes for experienced users: 16445b666d6SBarry Smith Use PetscPushErrorHandler() to set the desired error handler. 165e5c89e4eSSatish Balay 16645b666d6SBarry Smith Level: developer 167e5c89e4eSSatish Balay 168db781477SPatrick Sanan .seealso: `PetscError()`, `PetscPushErrorHandler()`, `PetscPopErrorHandler()`, `PetscAttachDebuggerErrorHandler()`, 169db781477SPatrick Sanan `PetscAbortErrorHandler()`, `PetscMPIAbortErrorHandler()`, `PetscReturnErrorHandler()`, `PetscEmacsClientErrorHandler()` 170e5c89e4eSSatish Balay @*/ 171efca3c55SSatish Balay PetscErrorCode PetscTraceBackErrorHandler(MPI_Comm comm,int line,const char *fun,const char *file,PetscErrorCode n,PetscErrorType p,const char *mess,void *ctx) 172e5c89e4eSSatish Balay { 173e5c89e4eSSatish Balay PetscLogDouble mem,rss; 174574034a9SJed Brown PetscBool flg1 = PETSC_FALSE,flg2 = PETSC_FALSE,flg3 = PETSC_FALSE; 175997adca8SBarry Smith PetscMPIInt rank = 0; 176e5c89e4eSSatish Balay 177a297a907SKarl Rupp if (comm != PETSC_COMM_SELF) MPI_Comm_rank(comm,&rank); 178a297a907SKarl Rupp 179dd400576SPatrick Sanan if (rank == 0) { 180fbfcfee5SBarry Smith PetscBool ismain; 181114011d0SBarry Smith static int cnt = 1; 182114011d0SBarry Smith 18357a177adSBarry Smith if (cnt == 1) { 184114011d0SBarry Smith PetscErrorPrintfHilight(); 185114011d0SBarry Smith (*PetscErrorPrintf)("--------------------- Error Message --------------------------------------------------------------\n"); 1865f3a2c8dSBarry Smith PetscErrorPrintfNormal(); 187e5c89e4eSSatish Balay if (n == PETSC_ERR_MEM) { 188e5c89e4eSSatish Balay (*PetscErrorPrintf)("Out of memory. This could be due to allocating\n"); 189e5c89e4eSSatish Balay (*PetscErrorPrintf)("too large an object or bleeding by not properly\n"); 190e5c89e4eSSatish Balay (*PetscErrorPrintf)("destroying unneeded objects.\n"); 191e5c89e4eSSatish Balay PetscMallocGetCurrentUsage(&mem); 192e5c89e4eSSatish Balay PetscMemoryGetCurrentUsage(&rss); 193c5929fdfSBarry Smith PetscOptionsGetBool(NULL,NULL,"-malloc_dump",&flg1,NULL); 19492f119d6SBarry Smith PetscOptionsGetBool(NULL,NULL,"-malloc_view",&flg2,NULL); 19592f119d6SBarry Smith PetscOptionsHasName(NULL,NULL,"-malloc_view_threshold",&flg3); 19692f119d6SBarry Smith if (flg2 || flg3) PetscMallocView(stdout); 197a297a907SKarl Rupp else { 198b85f3346SJed Brown (*PetscErrorPrintf)("Memory allocated %.0f Memory used by process %.0f\n",mem,rss); 199a297a907SKarl Rupp if (flg1) PetscMallocDump(stdout); 20092f119d6SBarry Smith else (*PetscErrorPrintf)("Try running with -malloc_dump or -malloc_view for info.\n"); 201e5c89e4eSSatish Balay } 202e5c89e4eSSatish Balay } else { 203e5c89e4eSSatish Balay const char *text; 2040298fd71SBarry Smith PetscErrorMessage(n,&text,NULL); 205114011d0SBarry Smith if (text) (*PetscErrorPrintf)("%s\n",text); 206e5c89e4eSSatish Balay } 207114011d0SBarry Smith if (mess) (*PetscErrorPrintf)("%s\n",mess); 208a17b96a8SKyle Gerard Felker (*PetscErrorPrintf)("See https://petsc.org/release/faq/ for trouble shooting.\n"); 209107894f0SSatish Balay (*PetscErrorPrintf)("%s\n",version); 210a297a907SKarl Rupp if (PetscErrorPrintfInitializeCalled) (*PetscErrorPrintf)("%s on a %s named %s by %s %s\n",pname,arch,hostname,username,date); 211107894f0SSatish Balay (*PetscErrorPrintf)("Configure options %s\n",petscconfigureoptions); 212107894f0SSatish Balay } 213997adca8SBarry Smith /* print line of stack trace */ 214*49c86fc7SBarry Smith if (fun) (*PetscErrorPrintf)("#%d %s() at %s:%d\n",cnt++,fun,file,line); 215*49c86fc7SBarry Smith else (*PetscErrorPrintf)("#%d %s:%d\n",cnt++,file,line); 216*49c86fc7SBarry Smith if (fun) { 217114011d0SBarry Smith PetscStrncmp(fun,"main",4,&ismain); 218fbfcfee5SBarry Smith if (ismain) { 219c16385d5SBarry Smith if ((n <= PETSC_ERR_MIN_VALUE) || (n >= PETSC_ERR_MAX_VALUE)) { 220c16385d5SBarry Smith (*PetscErrorPrintf)("Reached the main program with an out-of-range error code %d. This should never happen\n",n); 221c16385d5SBarry Smith } 222e11779c2SBarry Smith PetscOptionsViewError(); 223114011d0SBarry Smith PetscErrorPrintfHilight(); 224f15a11d2SBarry Smith (*PetscErrorPrintf)("----------------End of Error Message -------send entire error message to petsc-maint@mcs.anl.gov----------\n"); 225114011d0SBarry Smith PetscErrorPrintfNormal(); 226114011d0SBarry Smith } 227*49c86fc7SBarry Smith } 228997adca8SBarry Smith } else { 229a5b23f4aSJose E. Roman /* do not print error messages since process 0 will print them, sleep before aborting so will not accidentally kill process 0*/ 230997adca8SBarry Smith PetscSleep(10.0); 231c16385d5SBarry Smith exit(0); 232997adca8SBarry Smith } 233362febeeSStefano Zampini return n; 234e5c89e4eSSatish Balay } 235