IODA
Exception.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /// \file Exception.cpp
8 /// \brief Exception classes for IODA
9 
10 #include "ioda/Exception.h"
11 
12 namespace ioda {
13 
14 Exception::Exception(const ::ioda::source_location& loc, const Options& opts) : opts_{opts} {
16 }
17 
18 Exception::Exception(const char* msg, const ::ioda::source_location& loc, const Options& opts)
19  : opts_{opts} {
20  add("Reason", std::string(msg));
22 }
23 
24 Exception::~Exception() noexcept = default;
25 
26 void Exception::invalidate() { emessage_ = ""; }
27 
28 void Exception::add_source_location(const ::ioda::source_location& loc) {
29  add("source_filename", loc.file_name());
30  add("source_line", loc.line());
31  add("source_function", loc.function_name());
32  add("source_column", loc.column());
33 }
34 
35 const char* Exception::what() const noexcept {
36  try {
37  if (emessage_.size()) return emessage_.c_str();
38  std::ostringstream o;
39  opts_.enumVals(o);
40  emessage_ = o.str();
41  return emessage_.c_str();
42  } catch (...) {
43  static const char errmsg[] = "An unknown / unhandleable exception was encountered in IODA.\n";
44  return errmsg;
45  }
46 }
47 
48 void unwind_exception_stack(const std::exception& e, std::ostream& out, int level) {
49  out << "Exception: level: " << level << "\n" << e.what() << std::endl;
50  try {
51  std::rethrow_if_nested(e);
52  } catch (const std::exception& f) {
53  unwind_exception_stack(f, out, level + 1);
54  } catch (...) {
55  out << "exception: level: " << level
56  << "\n\tException at this level is not derived from std::exception." << std::endl;
57  }
58 }
59 
60 } // namespace ioda
IODA's error system.
The ioda exception class.
Definition: Exception.h:54
virtual ~Exception() noexcept
Options opts_
Definition: Exception.h:55
std::string emessage_
Definition: Exception.h:56
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
Definition: Exception.h:75
virtual const char * what() const noexcept
Print the error message.
Definition: Exception.cpp:35
void add_source_location(const ::ioda::source_location &loc)
Definition: Exception.cpp:28
Exception(const ::ioda::source_location &loc=source_location::current(), const Options &opts=Options{})
Definition: Exception.cpp:14
Quick and easy key-value container that stringifies all values.
Definition: Options.h:23
void enumVals(std::ostream &out, int level=1) const
List all stored values.
Definition: Options.h:28
IODA_DL void unwind_exception_stack(const std::exception &e, std::ostream &out=std::cerr, int level=0)
Convenience function for unwinding an exception stack.
Definition: Exception.cpp:48