qxLib
category.h
Go to the documentation of this file.
1 /**
2 
3  @file category.h
4  @author Khrapov
5  @date 5.12.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
12 #include <qx/macros/common.h>
13 #include <qx/render/color.h>
14 #include <qx/verbosity.h>
15 
16 /**
17  @brief Define a category
18  @param name - category name
19  @param ... - optional category color
20 **/
21 #define QX_DEFINE_CATEGORY(name, ...) constexpr qx::category name = qx::category(QX_TEXT(#name), ##__VA_ARGS__)
22 
23 /**
24  @brief Define file category
25  You can access this value via QX_FILE_CATEGORY()
26  This category will not be exported via #include
27  @param _category - category to use in this file
28 **/
29 #define QX_DEFINE_FILE_CATEGORY(_category) \
30  template<> \
31  constexpr const qx::category& qx::details::get_file_category<qx::djb2a_hash(QX_SHORT_FILE, 0)>() noexcept \
32  { \
33  return _category; \
34  }
35 
36 /**
37  @brief Get category defined in QX_DEFINE_FILE_CATEGORY
38  If there is none, CatDefault will be used
39 **/
40 #define QX_FILE_CATEGORY() qx::details::get_file_category<qx::djb2a_hash(QX_SHORT_FILE, 0)>()
41 
42 namespace qx
43 {
44 
45 /**
46 
47  @class category
48  @brief A category is a class that identifies a particular piece of code.
49  This code can be located in different files, but united by one functionality.
50  Objects of this class can be used in logging, asserts and profiling.
51  @author Khrapov
52  @date 5.12.2022
53 
54 **/
55 class category
56 {
57  static constexpr auto kDefaultColor = color::white();
58 
59 public:
60  constexpr category() = default;
61  constexpr category(const category&) = default;
62  constexpr category(category&&) = default;
63  constexpr category& operator=(const category&) = default;
64  constexpr category& operator=(category&&) = default;
65 
66  /**
67  @brief category object constructor
68  @param svName - category name. For ex. CatRendering or CatWidgets
69  @param categoryColor - color to be used if supported
70  **/
71  constexpr explicit category(string_view svName, const color& categoryColor = kDefaultColor) noexcept;
72 
73  /**
74  @brief Create new category from this one with custom verbosity
75  @param eVerbosity - category verbosity.
76  User code will use this category with top priority and perform compile time checks if possible
77  @retval - new category
78  **/
79  constexpr category set_verbosity(verbosity eVerbosity) const noexcept;
80 
81  /**
82  @brief Get category name
83  @retval - category name
84  **/
85  constexpr string_view get_name() const noexcept;
86 
87  /**
88  @brief Get category color
89  @retval - category color
90  **/
91  constexpr const color& get_color() const noexcept;
92 
93  /**
94  @brief Get category verbosity
95  @retval - category verbosity
96  User code will use this category with top priority and perform compile time checks if possible
97  **/
98  constexpr verbosity get_verbosity() const noexcept;
99 
100 private:
101  color m_Color = kDefaultColor;
102  string_view m_svName;
103  verbosity m_Verbosity = QX_CONF_COMPILE_TIME_VERBOSITY;
104 };
105 
106 } // namespace qx
107 
108 #include <qx/category.inl>
A category is a class that identifies a particular piece of code. This code can be located in differe...
Definition: category.h:56
constexpr string_view get_name() const noexcept
Get category name.
Definition: category.inl:26
constexpr category set_verbosity(verbosity eVerbosity) const noexcept
Create new category from this one with custom verbosity.
Definition: category.inl:19
constexpr const color & get_color() const noexcept
Get category color.
Definition: category.inl:31
constexpr verbosity get_verbosity() const noexcept
Get category verbosity.
Definition: category.inl:36
RGBA color.
Definition: color.h:38