source: src/Helpers/Assert.hpp@ 229e3c

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
Last change on this file since 229e3c was 229e3c, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Added custom Assert makro that allows ignoring asserts

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 * Assert.hpp
3 *
4 * Created on: Mar 18, 2010
5 * Author: crueger
6 */
7
8#ifndef ASSERT_HPP_
9#define ASSERT_HPP_
10
11#include<string>
12
13class AssertException{
14public:
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 }
25private:
26 std::string file;
27 int line;
28};
29
30#ifndef NDEBUG
31 #ifndef STRINGIFY
32 #define STRINGIFY(x) #x
33 #endif
34
35 #ifdef __GNUC__
36 // on gcc we know how to exit to the Debugger
37 #define DEBUG_BREAK __builtin_trap()
38 #else
39 #define DEBUG_BREAK exit(1)
40 #endif
41
42 #define ASSERT(condition,message) \
43 do{\
44 static bool ignore = false;\
45 if(!ignore){\
46 if(_my_assert::check((condition),STRINGIFY(condition),(message),__FILE__,__LINE__,ignore))\
47 DEBUG_BREAK;\
48 } \
49 }while(0)
50
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)
53#else
54 // we need to do something, so this is the usual solution (e.g. assert.h)
55 #define ASSERT(condition,message) (void)(0)
56 #define ASSERT_DO_THROW (void)(0)
57 #define ASSERT_DONT_THROW (void)(0)
58#endif
59
60//! @cond
61class _my_assert{
62public:
63 static bool check(const bool res,
64 const char* condition,
65 const char* message,
66 const char* filename,
67 const int line,
68 bool& ignore);
69 static bool always_throw;
70};
71//! @endcond
72
73
74#endif /* ASSERT_HPP_ */
Note: See TracBrowser for help on using the repository browser.