Ignore:
Timestamp:
Mar 19, 2010, 4:30:57 PM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
9f3025
Parents:
43ed42
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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Helpers/Assert.hpp

    r43ed42 r36b8d8  
    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
Note: See TracChangeset for help on using the changeset viewer.