CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
edm::ExceptionCollector Class Reference

#include <ExceptionCollector.h>

Public Member Functions

void addException (cms::Exception const &exception)
 
void call (std::function< void(void)>)
 
 ExceptionCollector (std::string const &initialMessage)
 
bool hasThrown () const
 
void rethrow () const
 
 ~ExceptionCollector ()
 

Private Attributes

std::unique_ptr< cms::ExceptionaccumulatedExceptions_
 
std::unique_ptr< cms::ExceptionfirstException_
 
std::string initialMessage_
 
int nExceptions_
 

Detailed Description

Definition at line 33 of file ExceptionCollector.h.

Constructor & Destructor Documentation

edm::ExceptionCollector::ExceptionCollector ( std::string const &  initialMessage)

Definition at line 22 of file ExceptionCollector.cc.

std::unique_ptr< cms::Exception > firstException_
std::unique_ptr< cms::Exception > accumulatedExceptions_
edm::ExceptionCollector::~ExceptionCollector ( )

Definition at line 25 of file ExceptionCollector.cc.

25 {}

Member Function Documentation

void edm::ExceptionCollector::addException ( cms::Exception const &  exception)

Definition at line 50 of file ExceptionCollector.cc.

References accumulatedExceptions_, cms::Exception::clone(), cms::Exception::explainSelf(), firstException_, initialMessage_, nExceptions_, and cms::Exception::returnCode().

Referenced by edm::WorkerManager::endJob().

50  {
51  ++nExceptions_;
52  if (nExceptions_ == 1) {
53  firstException_.reset(exception.clone());
54  accumulatedExceptions_.reset(new MultipleException(exception.returnCode(), initialMessage_));
55  }
56  *accumulatedExceptions_ << "----- Exception " << nExceptions_ << " -----"
57  << "\n"
58  << exception.explainSelf();
59  }
std::unique_ptr< cms::Exception > firstException_
std::unique_ptr< cms::Exception > accumulatedExceptions_
void edm::ExceptionCollector::call ( std::function< void(void)>  f)

Definition at line 37 of file ExceptionCollector.cc.

References accumulatedExceptions_, cms::Exception::clone(), cms::Exception::explainSelf(), f, firstException_, initialMessage_, nExceptions_, cms::Exception::returnCode(), and edm::convertException::wrap().

Referenced by edm::EventProcessor::endJob(), edm::test::TestProcessor::endJob(), and edm::SubProcess::endJob().

37  {
38  try {
39  convertException::wrap([&f]() { f(); });
40  } catch (cms::Exception const& ex) {
41  ++nExceptions_;
42  if (nExceptions_ == 1) {
43  firstException_.reset(ex.clone());
44  accumulatedExceptions_.reset(new MultipleException(ex.returnCode(), initialMessage_));
45  }
47  }
48  }
std::unique_ptr< cms::Exception > firstException_
virtual std::string explainSelf() const
Definition: Exception.cc:108
double f[11][100]
int returnCode() const
Definition: Exception.cc:151
std::unique_ptr< cms::Exception > accumulatedExceptions_
auto wrap(F iFunc) -> decltype(iFunc())
virtual Exception * clone() const
Definition: Exception.cc:181
bool edm::ExceptionCollector::hasThrown ( ) const
void edm::ExceptionCollector::rethrow ( ) const

Definition at line 29 of file ExceptionCollector.cc.

References accumulatedExceptions_, firstException_, and nExceptions_.

Referenced by edm::EventProcessor::endJob(), edm::test::TestProcessor::endJob(), and edm::SubProcess::endJob().

29  {
30  if (nExceptions_ == 1) {
31  firstException_->raise();
32  } else if (nExceptions_ > 1) {
33  accumulatedExceptions_->raise();
34  }
35  }
std::unique_ptr< cms::Exception > firstException_
std::unique_ptr< cms::Exception > accumulatedExceptions_

Member Data Documentation

std::unique_ptr<cms::Exception> edm::ExceptionCollector::accumulatedExceptions_
private

Definition at line 45 of file ExceptionCollector.h.

Referenced by addException(), call(), and rethrow().

std::unique_ptr<cms::Exception> edm::ExceptionCollector::firstException_
private

Definition at line 44 of file ExceptionCollector.h.

Referenced by addException(), call(), and rethrow().

std::string edm::ExceptionCollector::initialMessage_
private

Definition at line 43 of file ExceptionCollector.h.

Referenced by addException(), and call().

int edm::ExceptionCollector::nExceptions_
private

Definition at line 46 of file ExceptionCollector.h.

Referenced by addException(), call(), hasThrown(), and rethrow().