debug_mode.hpp 883 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #ifndef CVVISUAL_DEBUG_MODE_HPP
  2. #define CVVISUAL_DEBUG_MODE_HPP
  3. #if __cplusplus >= 201103L && defined CVVISUAL_USE_THREAD_LOCAL
  4. #define CVVISUAL_THREAD_LOCAL thread_local
  5. #else
  6. #define CVVISUAL_THREAD_LOCAL
  7. #endif
  8. namespace cvv
  9. {
  10. //! @addtogroup cvv
  11. //! @{
  12. namespace impl
  13. {
  14. /**
  15. * The debug-flag-singleton
  16. */
  17. static inline bool &getDebugFlag()
  18. {
  19. CVVISUAL_THREAD_LOCAL static bool flag = true;
  20. return flag;
  21. }
  22. } // namespace impl
  23. /** @brief Returns whether debug-mode is active for this TU and thread.
  24. */
  25. static inline bool debugMode()
  26. {
  27. return impl::getDebugFlag();
  28. }
  29. /** @brief Enable or disable cvv for current translation unit and thread
  30. (disabled this way has higher - but still low - overhead compared to using the compile flags).
  31. @param active
  32. */
  33. static inline void setDebugFlag(bool active)
  34. {
  35. impl::getDebugFlag() = active;
  36. }
  37. //! @}
  38. } // namespace cvv
  39. #endif