XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
debug.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <xtd/xtd.hpp>
9 
10 #include <iostream>
11 
12 #include <xtd/string.hpp>
13 #include <xtd/source_location.hpp>
14 #include <xtd/log.hpp>
15 
16 
18 #if (XTD_CONFIG_RELEASE & XTD_CONFIG)
19  #define XTD_ASSERT(...)
20 #elif (XTD_COMPILER_GCC & XTD_COMPILER)
21  #define XTD_ASSERT( expression , ... ) while ( !xtd::Debug::Assert( here(), !(!(expression)), #expression , ##__VA_ARGS__ ) ){}
22 #else
23  #define XTD_ASSERT( expression , ... ) while ( !xtd::Debug::Assert( here(), !(!(expression)), #expression , __VA_ARGS__ ) ){}
24 #endif
25 
27 #define DUMP(x) xtd::Debug::Dump(x, #x, here());
28 
29 namespace xtd{
30 
31 #if (!DOXY_INVOKED)
32  namespace _{
33  template <typename _Ty> class DebugDump{
34  public:
35  static void Dump(const _Ty& value, const char * name, const source_location& location){
36  xtd::log::get().write(xtd::log::type::debug, location, "Dumping ", name, " type ", typeid(_Ty).name(), " at ", static_cast<const void*>(&value), " : ", value);
37  }
38  };
39  }
40 #endif
41 
44  class Debug{
45  public:
52  template <typename _Ty>
53  static void Dump(const _Ty& value, const char * name, const source_location& location){ _::DebugDump<const _Ty&>::Dump(value, name, location); }
54 
55 
56  #if ((XTD_OS_MINGW|XTD_OS_WINDOWS) & XTD_OS)
57  template <typename ... _ArgTs>
58  static bool Assert(const source_location& location, bool test, const char * test_str, _ArgTs&&...oArgs){
59  if (test) return true;
60  auto sMsg = xtd::string::format(location.file(), " line ", location.line(), "\nThe expression evaluated to false.\n\n\t", test_str, "\n", std::forward<_ArgTs>(oArgs)...);
61  auto iRet = MessageBoxA(nullptr, sMsg.c_str(), "Debug Assertion Failed", MB_ABORTRETRYIGNORE | MB_ICONERROR | MB_SYSTEMMODAL);
62  if (IDABORT == iRet) std::abort();
63  return (IDIGNORE == iRet);
64  }
65  #else
66  template <typename ... _ArgTs>
67  static bool Assert(const source_location& location, bool test, const char * test_str, _ArgTs&&...oArgs){
68  if (test) return true;
69  auto sMsg = xtd::string::format(location.file(), " line ", location.line(), "\nThe expression evaluated to false.\n\n\t", test_str, "\n", std::forward<_ArgTs>(oArgs)...);
70  std::cout << sMsg.c_str();
71  abort();
72  }
73  #endif
74  };
75 
76 
77 
78 }
static void Dump(const _Ty &value, const char *name, const source_location &location)
Writes a debug dump record to the log.
Definition: debug.hpp:53
Manages debug info about processes.
Definition: debug.hpp:44
specializations of std::basic_string for advanced and common string handling
host, target and build configurations and settings Various components are purpose built for specific ...
maintains info about locations within source code
runtime logging to various destinations
static xstring format()
Type safe formatting Appends each item in the parameter list together performing type-safe verificati...
Definition: string.hpp:62
Contains information about the location of source code Used in error reporting and logging...