From: Arnaud Giersch Date: Wed, 11 Nov 2020 14:21:41 +0000 (+0100) Subject: Avoid nested try-catch blocks. X-Git-Tag: v3.26~198 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6ed225f467c0def4f207acb81469fde07dbcac91 Avoid nested try-catch blocks. --- diff --git a/src/xbt/exception.cpp b/src/xbt/exception.cpp index 8879309020..de0c748bf5 100644 --- a/src/xbt/exception.cpp +++ b/src/xbt/exception.cpp @@ -37,35 +37,32 @@ void log_exception(e_xbt_log_priority_t prio, const char* context, std::exceptio auto name = simgrid::xbt::demangle(typeid(exception).name()); auto* with_context = dynamic_cast(&exception); - if (with_context != nullptr) + if (with_context != nullptr) { XBT_LOG(prio, "%s %s by %s/%d: %s", context, name.get(), with_context->throw_point().procname_.c_str(), with_context->throw_point().pid_, exception.what()); - else + // Do we have a backtrace? + if (not simgrid::config::get_value("exception/cutpath")) { + auto backtrace = with_context->resolve_backtrace(); + XBT_LOG(prio, " -> %s", backtrace.c_str()); + } + } else { XBT_LOG(prio, "%s %s: %s", context, name.get(), exception.what()); - - // Do we have a backtrace? - if (with_context != nullptr && not simgrid::config::get_value("exception/cutpath")) { - auto backtrace = with_context->resolve_backtrace(); - XBT_LOG(prio, " -> %s", backtrace.c_str()); } + } catch (...) { + // Don't log exceptions we got when trying to log exception + XBT_LOG(prio, "Ignoring exception caught while while trying to log an exception!"); + } + try { // Do we have a nested exception? auto* with_nested = dynamic_cast(&exception); - if (with_nested == nullptr || with_nested->nested_ptr() == nullptr) - return; - try { + if (with_nested != nullptr && with_nested->nested_ptr() != nullptr) with_nested->rethrow_nested(); - } catch (const std::exception& nested_exception) { - log_exception(prio, "Caused by", nested_exception); - } + } catch (const std::exception& nested_exception) { + log_exception(prio, "Caused by", nested_exception); + } catch (...) { // We could catch nested_exception or WithContextException but we don't bother: - catch (...) { - XBT_LOG(prio, "Caused by an unknown exception"); - } - } - catch (...) { - // Don't log exceptions we got when trying to log exception - XBT_LOG(prio, "Ignoring exception caught while while trying to log an exception!"); + XBT_LOG(prio, "Caused by an unknown exception"); } } diff --git a/teshsuite/mc/dwarf-expression/dwarf-expression.cpp b/teshsuite/mc/dwarf-expression/dwarf-expression.cpp index 8945638edb..c4daa85f6e 100644 --- a/teshsuite/mc/dwarf-expression/dwarf-expression.cpp +++ b/teshsuite/mc/dwarf-expression/dwarf-expression.cpp @@ -45,24 +45,24 @@ static uintptr_t eval_binary_operation(simgrid::dwarf::ExpressionContext const& static void basic_test(simgrid::dwarf::ExpressionContext const& state) { - try { - std::array ops; + std::array ops; - uintptr_t a = rnd_engine(); - uintptr_t b = rnd_engine(); + uintptr_t a = rnd_engine(); + uintptr_t b = rnd_engine(); - simgrid::dwarf::ExpressionStack stack; + simgrid::dwarf::ExpressionStack stack; - bool caught_ex = false; - try { - ops[0].atom = DW_OP_drop; - simgrid::dwarf::execute(ops.data(), 1, state, stack); - } catch (const simgrid::dwarf::evaluation_error&) { - caught_ex = true; - } - if (not caught_ex) - fprintf(stderr, "Exception expected"); + bool caught_ex = false; + try { + ops[0].atom = DW_OP_drop; + simgrid::dwarf::execute(ops.data(), 1, state, stack); + } catch (const simgrid::dwarf::evaluation_error&) { + caught_ex = true; + } + if (not caught_ex) + fprintf(stderr, "Exception expected"); + try { ops[0].atom = DW_OP_lit21; simgrid::dwarf::execute(ops.data(), 1, state, stack); assert(stack.size() == 1);