call_meta_data.hpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #ifndef CVVISUAL_CALL_DATA_HPP
  2. #define CVVISUAL_CALL_DATA_HPP
  3. #include <string>
  4. #include <cstddef>
  5. #include <utility>
  6. namespace cvv
  7. {
  8. //! @addtogroup cvv
  9. //! @{
  10. namespace impl
  11. {
  12. /**
  13. * @brief Optional information about a location in Code.
  14. */
  15. struct CallMetaData
  16. {
  17. public:
  18. /**
  19. * @brief Creates an unknown location.
  20. */
  21. CallMetaData()
  22. : file(nullptr), line(0), function(nullptr), isKnown(false)
  23. {
  24. }
  25. /**
  26. * @brief Creates the provided location.
  27. *
  28. * Argument should be self-explaining.
  29. */
  30. CallMetaData(const char *file, size_t line, const char *function)
  31. : file(file), line(line), function(function), isKnown(true)
  32. {
  33. }
  34. operator bool()
  35. {
  36. return isKnown;
  37. }
  38. // self-explaining:
  39. const char *file;
  40. const size_t line;
  41. const char *function;
  42. /**
  43. * @brief Whether *this holds actual data.
  44. */
  45. const bool isKnown;
  46. };
  47. }
  48. //! @}
  49. } // namespaces
  50. #ifdef __GNUC__
  51. #define CVVISUAL_FUNCTION_NAME_MACRO __PRETTY_FUNCTION__
  52. #else
  53. #define CVVISUAL_FUNCTION_NAME_MACRO __func__
  54. #endif
  55. /**
  56. * @brief Creates an instance of CallMetaData with the location of the macro as
  57. * value.
  58. */
  59. #define CVVISUAL_LOCATION \
  60. ::cvv::impl::CallMetaData(__FILE__, __LINE__, \
  61. CVVISUAL_FUNCTION_NAME_MACRO)
  62. #endif