Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Private Attributes
ErrorException Class Reference

#include <exceptions.h>

Inheritance diagram for ErrorException:

Public Member Functions

 ErrorException (const string &what_arg)
 
 ErrorException (const string &what_file, const string &what_function, int what_line, const string &what_arg)
 
 ~ErrorException () throw ()
 
virtual const char * what () const throw ()
 
void Report () const
 
const char * WrapperReport () const
 

Private Attributes

char * what_str
 
char * function_name
 
char * file_name
 
int file_line
 

Detailed Description

Definition at line 80 of file exceptions.h.

Constructor & Destructor Documentation

◆ ErrorException() [1/2]

ErrorException::ErrorException ( const string &  what_arg)

Definition at line 21 of file Exceptions.cpp.

21  {/*{{{*/
22 
23  int len;
24  len = strlen(what_arg.c_str())+1;
25  what_str = new char[len];
26  memcpy(what_str,what_arg.c_str(),len);
27 
28  file_name = NULL;
29  function_name = NULL;
30  file_line = 0;
31 
32 }/*}}}*/

◆ ErrorException() [2/2]

ErrorException::ErrorException ( const string &  what_file,
const string &  what_function,
int  what_line,
const string &  what_arg 
)

Definition at line 33 of file Exceptions.cpp.

33  {/*{{{*/
34 
35  int len;
36 
37  len = strlen(what_arg.c_str())+1;
38  what_str = new char[len];
39  memcpy(what_str,what_arg.c_str(),len);
40 
41  len = strlen(what_file.c_str())+1;
42  file_name = new char[len];
43  memcpy(file_name,what_file.c_str(),len);
44 
45  len = strlen(what_function.c_str())+1;
46  function_name = new char[len];
47  memcpy(function_name,what_function.c_str(),len);
48 
49  file_line= what_line;
50  /*When error messages are not shown properly, uncomment the following line*/
51  //this->Report();
52 
53 }/*}}}*/

◆ ~ErrorException()

ErrorException::~ErrorException ( )
throw (
)

Definition at line 54 of file Exceptions.cpp.

54  {/*{{{*/
55  delete [] what_str;
56  delete [] file_name;
57  delete [] function_name;
58 }/*}}}*/

Member Function Documentation

◆ what()

const char * ErrorException::what ( ) const
throw (
)
virtual

Definition at line 59 of file Exceptions.cpp.

59  {/*{{{*/
60  //this->Report();
61  return what_str;
62 }/*}}}*/

◆ Report()

void ErrorException::Report ( ) const

Definition at line 63 of file Exceptions.cpp.

63  {/*{{{*/
64 
65  /*WINDOWS*/
66  if(!function_name || file_line==0){
67  _printf_("Error message: " << what());
68  return;
69  }
70 
71  /*recover my_rank and num_procs:*/
72  int my_rank = IssmComm::GetRank();
73  int num_procs = IssmComm::GetSize();
74 
75  if(num_procs==1){
76  _printf_("\n??? Error in ==> " << file_name << ":" << file_line << "\n");
77  _printf_(function_name << " error message: " << what() << "\n\n");
78  }
79  else{
80  _printf_("\n[" << my_rank<< "] ??? Error using ==> " << file_name << ":" << file_line << "\n");
81  _printf_( "[" << my_rank << "] " << function_name << " error message: " << what() << "\n\n");
82  }
83 
84  return;
85 }/*}}}*/

◆ WrapperReport()

const char * ErrorException::WrapperReport ( ) const

Definition at line 86 of file Exceptions.cpp.

86  {/*{{{*/
87 
88  /*Output*/
89  std::ostringstream buffer;
90  char *message = NULL;
91 
92  /*WINDOWS*/
93  if(!function_name || file_line==0){
94  buffer << " error message: " << this->what_str;
95  }
96  else{
97  buffer << "\nError in ==> " << this->file_name << ":" << file_line << "\n";
98  buffer << this->function_name << " error message: " << this->what_str;
99  }
100 
101  /*Convert std::ostringstream to std::string and then create char* */
102  std::string buffer2 = buffer.str();
103  message = xNew<char>(strlen(buffer2.c_str())+1); sprintf(message,"%s",buffer2.c_str());
104  return message;
105 }/*}}}*/

Field Documentation

◆ what_str

char* ErrorException::what_str
private

Definition at line 82 of file exceptions.h.

◆ function_name

char* ErrorException::function_name
private

Definition at line 83 of file exceptions.h.

◆ file_name

char* ErrorException::file_name
private

Definition at line 84 of file exceptions.h.

◆ file_line

int ErrorException::file_line
private

Definition at line 85 of file exceptions.h.


The documentation for this class was generated from the following files:
ErrorException::file_name
char * file_name
Definition: exceptions.h:84
ErrorException::function_name
char * function_name
Definition: exceptions.h:83
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
ErrorException::what
virtual const char * what() const
Definition: Exceptions.cpp:59
IssmComm::GetSize
static int GetSize(void)
Definition: IssmComm.cpp:46
ErrorException::what_str
char * what_str
Definition: exceptions.h:82
IssmComm::GetRank
static int GetRank(void)
Definition: IssmComm.cpp:34
ErrorException::file_line
int file_line
Definition: exceptions.h:85