123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #ifndef CVVISUAL_CALL_DATA_HPP
- #define CVVISUAL_CALL_DATA_HPP
- #include <string>
- #include <cstddef>
- #include <utility>
- namespace cvv
- {
- //! @addtogroup cvv
- //! @{
- namespace impl
- {
- /**
- * @brief Optional information about a location in Code.
- */
- struct CallMetaData
- {
- public:
- /**
- * @brief Creates an unknown location.
- */
- CallMetaData()
- : file(nullptr), line(0), function(nullptr), isKnown(false)
- {
- }
- /**
- * @brief Creates the provided location.
- *
- * Argument should be self-explaining.
- */
- CallMetaData(const char *file, size_t line, const char *function)
- : file(file), line(line), function(function), isKnown(true)
- {
- }
- operator bool()
- {
- return isKnown;
- }
- // self-explaining:
- const char *file;
- const size_t line;
- const char *function;
- /**
- * @brief Whether *this holds actual data.
- */
- const bool isKnown;
- };
- }
- //! @}
- } // namespaces
- #ifdef __GNUC__
- #define CVVISUAL_FUNCTION_NAME_MACRO __PRETTY_FUNCTION__
- #else
- #define CVVISUAL_FUNCTION_NAME_MACRO __func__
- #endif
- /**
- * @brief Creates an instance of CallMetaData with the location of the macro as
- * value.
- */
- #define CVVISUAL_LOCATION \
- ::cvv::impl::CallMetaData(__FILE__, __LINE__, \
- CVVISUAL_FUNCTION_NAME_MACRO)
- #endif
|