Changeset 5be0eb for src


Ignore:
Timestamp:
Mar 19, 2010, 4:30:57 PM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
052b8d0
Parents:
229e3c
git-author:
Tillmann Crueger <crueger@…> (03/19/10 10:50:06)
git-committer:
Tillmann Crueger <crueger@…> (03/19/10 16:30:57)
Message:

Added more functionality to custom asserts.

  • Asserts allow now setting any choice as default behaviour
  • Asserts allow setting of hooks that have to be performed before the exit is done
Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Helpers/Assert.cpp

    r229e3c r5be0eb  
    1111using namespace std;
    1212
    13 bool _my_assert::always_throw = false;
     13namespace Assert{
     14  AssertionFailure::AssertionFailure(std::string _condition,
     15                                     std::string _file,
     16                                     int _line,
     17                                     std::string _message) :
     18    condition(_condition),
     19    file(_file),
     20    line(_line),
     21    message(_message)
     22  {}
     23
     24  std::string AssertionFailure::getFile(){
     25    return file;
     26  }
     27
     28  int AssertionFailure::getLine(){
     29    return line;
     30  }
     31
     32  std::string AssertionFailure::getMessage(){
     33    return message;
     34  }
     35
     36  std::ostream& AssertionFailure::operator<<(std::ostream& out){
     37    out << "Assertion \"" << condition << "\" failed in file " << file << " at line " << line << endl;
     38    out << "Assertion Message: " << message << std::endl;
     39    return out;
     40  }
     41
     42  const char  ActionKeys[]  = {'\0','a','t','i'};
     43  const char* ActionNames[] = {"Ask","Abort","Throw","Ignore"};
     44}
     45
     46using namespace Assert;
     47
     48Action _my_assert::defaultAction = Ask;
     49std::vector<Assert::hook_t> _my_assert::hooks;
    1450
    1551bool _my_assert::check(const bool res,
     
    2359    cout << "Assertion " << condition << " failed in file " << filename << " at line " << line << endl;
    2460    cout << "Assertion Message: " << message << std::endl;
    25     if(always_throw){
    26       throw AssertException(filename,line);
    27     }
    2861    while(true){
    29       cout << "Please choose: (a)bbort, (t)hrow execption, (i)gnore, al(w)ays ignore" << endl;
    3062      char choice;
    31       cin >> choice;
     63      if(defaultAction==Ask) {
     64        cout << "Please choose: (a)bort, (t)hrow execption, (i)gnore, al(w)ays ignore" << endl;
     65        cin >> choice;
     66      }
     67      else{
     68        choice = ActionKeys[defaultAction];
     69      }
    3270      switch(choice){
    3371        case 'a':
     
    3573          break;
    3674        case 't':
    37           throw AssertException(filename,line);
     75          throw AssertionFailure(condition,filename,line,message);
    3876          break;
    3977        case 'w':
     
    4886  return false;
    4987}
     88
     89void _my_assert::doHooks(){
     90  for(vector<hook_t>::reverse_iterator iter = hooks.rbegin(); iter!=hooks.rend(); ++iter ){
     91    (*iter)();
     92  }
     93}
     94
     95void _my_assert::addHook(hook_t hook){
     96  hooks.push_back(hook);
     97}
     98
     99void _my_assert::removeHook(Assert::hook_t hook){
     100  for(vector<hook_t>::iterator iter = hooks.begin(); iter!=hooks.end();){
     101    if((*iter)==hook){
     102      iter = hooks.erase(iter);
     103    }
     104    else{
     105      ++iter;
     106    }
     107  }
     108}
     109
     110void _my_assert::setDefault(Assert::Action action){
     111  defaultAction = action;
     112}
     113Assert::Action _my_assert::getDefault(){
     114  return defaultAction;
     115}
     116std::string _my_assert::printDefault(){
     117  return ActionNames[defaultAction];
     118}
  • src/Helpers/Assert.hpp

    r229e3c r5be0eb  
    1010
    1111#include<string>
     12#include<vector>
    1213
    13 class AssertException{
    14 public:
    15   AssertException(std::string _file, int _line) :
    16     file(_file),
    17     line(_line)
    18     {}
    19   std::string getFile(){
    20       return file;
    21     }
    22   int getLine(){
    23     return line;
    24   }
    25 private:
    26   std::string file;
    27   int line;
    28 };
     14namespace Assert{
     15
     16  typedef void (*hook_t)(void);
     17
     18
     19  enum Action {Ask,Abort,Throw,Ignore,MAX_ACTION};
     20  extern const char  ActionKeys[MAX_ACTION];
     21  extern const char* ActionNames[MAX_ACTION];
     22
     23  class AssertionFailure{
     24  public:
     25    AssertionFailure(std::string _condition, std::string _file, int _line, std::string _message);
     26    std::string getFile();
     27    int getLine();
     28    std::string getMessage();
     29
     30    std::ostream& operator<<(std::ostream&);
     31  private:
     32    std::string condition;
     33    std::string file;
     34    int line;
     35    std::string message;
     36  };
     37}
    2938
    3039#ifndef NDEBUG
     
    4453      static bool ignore = false;\
    4554      if(!ignore){\
    46         if(_my_assert::check((condition),STRINGIFY(condition),(message),__FILE__,__LINE__,ignore))\
     55        if(_my_assert::check((condition),STRINGIFY(condition),(message),__FILE__,__LINE__,ignore)){\
     56          _my_assert::doHooks();\
    4757          DEBUG_BREAK;\
     58        }\
    4859      } \
    4960    }while(0)
    5061
    51   #define ASSERT_DO_THROW     do{_my_assert::always_throw=true;}while(0)
    52   #define ASSERT_DONT_THROW   do{_my_assert::always_throw=false;}while(0)
     62  #define ASSERT_DO(action)    do{_my_assert::setDefault(action);}while(0)
     63  #define ASSERT_HOOK(hook)    do{_my_assert::addHook(hook);}while(0)
     64  #define ASSERT_UNHOOK(hook)  do{_my_assert::removeHook(hook);}while(0)
     65  #define ASSERT_DEFAULT       (_myAssert::printDefault())
    5366#else
    5467  // we need to do something, so this is the usual solution (e.g. assert.h)
    5568  #define ASSERT(condition,message) (void)(0)
    56   #define ASSERT_DO_THROW           (void)(0)
    57   #define ASSERT_DONT_THROW         (void)(0)
     69  #define ASSERT_DO(action)         (void)(0)
     70  #define ASSERT_HOOK(hook)         (void)(0)
     71  #define ASSERT_UNHOOK(hook)       (void)(0)
     72  #define ASSERT_DEFAULT            std::string("Deactivated")
    5873#endif
    5974
     
    6782                    const int line,
    6883                    bool& ignore);
    69   static bool always_throw;
     84  static void addHook(Assert::hook_t hook);
     85  static void removeHook(Assert::hook_t hook);
     86  static void doHooks();
     87  static void setDefault(Assert::Action);
     88  static Assert::Action getDefault();
     89  static std::string printDefault();
     90private:
     91  static Assert::Action defaultAction;
     92  static std::vector<Assert::hook_t> hooks;
    7093};
    7194//! @endcond
  • src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp

    r229e3c r5be0eb  
    2727#include "World.hpp"
    2828
     29#include "Helpers/Assert.hpp"
     30
    2931#ifdef HAVE_TESTRUNNER
    3032#include "UnitTestMain.hpp"
     
    3840void AnalysisCorrelationToSurfaceUnitTest::setUp()
    3941{
     42  ASSERT_DO(Assert::Throw);
     43
    4044  atom *Walker = NULL;
    4145
Note: See TracChangeset for help on using the changeset viewer.