Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlLogger.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "Api.hpp"
6#include "SqlDataBinder.hpp"
7#include "SqlError.hpp"
8
9#include <source_location>
10#include <string_view>
11
12class SqlConnection;
13
14struct SqlVariant;
15
16/// Represents a logger for SQL operations.
17class LIGHTWEIGHT_API SqlLogger
18{
19 public:
20 /// Mandates the support for logging bind operations.
21 enum class SupportBindLogging : uint8_t
22 {
23 No,
24 Yes
25 };
26
27 SqlLogger() = default;
28 SqlLogger(SqlLogger const& /*other*/) = default;
29 SqlLogger(SqlLogger&& /*other*/) = default;
30 SqlLogger& operator=(SqlLogger const& /*other*/) = default;
31 SqlLogger& operator=(SqlLogger&& /*other*/) = default;
32 virtual ~SqlLogger() = default;
33
34 /// Constructs a new logger.
35 ///
36 /// @param supportBindLogging Indicates if the logger should support bind logging.
37 explicit SqlLogger(SupportBindLogging supportBindLogging):
38 _supportsBindLogging { supportBindLogging == SupportBindLogging::Yes }
39 {
40 }
41
42 /// Invoked on a warning.
43 virtual void OnWarning(std::string_view const& message) = 0;
44
45 /// Invoked on ODBC SQL error occurred.
46 virtual void OnError(SqlError errorCode, std::source_location sourceLocation = std::source_location::current()) = 0;
47
48 /// Invoked an ODBC SQL error occurred, with extended error information.
49 virtual void OnError(SqlErrorInfo const& errorInfo,
50 std::source_location sourceLocation = std::source_location::current()) = 0;
51
52 /// Invoked when a scoped code region needs to be timed and logged. The region starts with this call.
53 virtual void OnScopedTimerStart(std::string const& tag) = 0;
54
55 /// Invoked when a scoped code region needs to be timed and logged. The region ends with this call.
56 virtual void OnScopedTimerStop(std::string const& tag) = 0;
57
58 /// Invoked when a connection is opened.
59 virtual void OnConnectionOpened(SqlConnection const& connection) = 0;
60
61 /// Invoked when a connection is closed.
62 virtual void OnConnectionClosed(SqlConnection const& connection) = 0;
63
64 /// Invoked when a connection is idle.
65 virtual void OnConnectionIdle(SqlConnection const& connection) = 0;
66
67 /// Invoked when a connection is reused.
68 virtual void OnConnectionReuse(SqlConnection const& connection) = 0;
69
70 /// Invoked when a direct query is executed.
71 virtual void OnExecuteDirect(std::string_view const& query) = 0;
72
73 /// Invoked when a query is prepared.
74 virtual void OnPrepare(std::string_view const& query) = 0;
75
76 /// Invoked when an input parameter is bound.
77 template <typename T>
78 void OnBindInputParameter(std::string_view const& name, T&& value)
79 {
80 if (_supportsBindLogging)
81 {
82 using value_type = std::remove_cvref_t<T>;
83 if constexpr (SqlDataBinderSupportsInspect<value_type>)
84 {
85 OnBind(name, std::string(SqlDataBinder<value_type>::Inspect(std::forward<T>(value))));
86 }
87 }
88 }
89
90 /// Invoked when an input parameter is bound, by name.
91 virtual void OnBind(std::string_view const& name, std::string value) = 0;
92
93 /// Invoked when a prepared query is executed.
94 virtual void OnExecute(std::string_view const& query) = 0;
95
96 /// Invoked when a batch of queries is executed
97 virtual void OnExecuteBatch() = 0;
98
99 /// Invoked when a row is fetched.
100 virtual void OnFetchRow() = 0;
101
102 /// Invoked when fetching is done.
103 virtual void OnFetchEnd() = 0;
104
105 class Null;
106
107 /// Retrieves a null logger that does nothing.
108 static Null& NullLogger() noexcept;
109
110 /// Retrieves a logger that logs to standard output.
111 static SqlLogger& StandardLogger();
112
113 /// Retrieves a logger that logs to the trace logger.
114 static SqlLogger& TraceLogger();
115
116 /// Retrieves the currently configured logger.
117 static SqlLogger& GetLogger();
118
119 /// Sets the current logger.
120 ///
121 /// The ownership of the logger is not transferred and remains with the caller.
122 static void SetLogger(SqlLogger& logger);
123
124 private:
125 bool _supportsBindLogging = false;
126};
127
128class SqlLogger::Null: public SqlLogger
129{
130 public:
131 void OnWarning(std::string_view const& /*message*/) override {}
132 void OnError(SqlError /*errorCode*/, std::source_location /*sourceLocation*/) override {}
133 void OnError(SqlErrorInfo const& /*errorInfo*/, std::source_location /*sourceLocation*/) override {}
134 void OnScopedTimerStart(std::string const& /*tag*/) override {}
135 void OnScopedTimerStop(std::string const& /*tag*/) override {}
136 void OnConnectionOpened(SqlConnection const& /*connection*/) override {}
137 void OnConnectionClosed(SqlConnection const& /*connection*/) override {}
138 void OnConnectionIdle(SqlConnection const& /*connection*/) override {}
139 void OnConnectionReuse(SqlConnection const& /*connection*/) override {}
140 void OnExecuteDirect(std::string_view const& /*query*/) override {}
141 void OnPrepare(std::string_view const& /*qurey*/) override {}
142 void OnBind(std::string_view const& /*name*/, std::string /*value*/) override {}
143 void OnExecute(std::string_view const& /*query*/) override {}
144 void OnExecuteBatch() override {}
145 void OnFetchRow() override {}
146 void OnFetchEnd() override {}
147};
148
149/// A scoped timer for logging.
150///
151/// This class is used to measure the time spent in a code region and log it.
152/// This is typically useful for performance analysis, to identify bottlenecks.
153///
154/// @see SqlLogger
156{
157 public:
158 explicit SqlScopedTimeLogger(std::string tag):
159 _tag { std::move(tag) }
160 {
162 }
163
165 {
167 }
168
169 private:
170 std::string _tag;
171};
Represents a connection to a SQL database.
Represents a logger for SQL operations.
Definition SqlLogger.hpp:18
virtual void OnScopedTimerStart(std::string const &tag)=0
Invoked when a scoped code region needs to be timed and logged. The region starts with this call.
SqlLogger(SupportBindLogging supportBindLogging)
Definition SqlLogger.hpp:37
virtual void OnFetchRow()=0
Invoked when a row is fetched.
virtual void OnScopedTimerStop(std::string const &tag)=0
Invoked when a scoped code region needs to be timed and logged. The region ends with this call.
virtual void OnExecute(std::string_view const &query)=0
Invoked when a prepared query is executed.
virtual void OnPrepare(std::string_view const &query)=0
Invoked when a query is prepared.
static Null & NullLogger() noexcept
Retrieves a null logger that does nothing.
virtual void OnError(SqlError errorCode, std::source_location sourceLocation=std::source_location::current())=0
Invoked on ODBC SQL error occurred.
void OnBindInputParameter(std::string_view const &name, T &&value)
Invoked when an input parameter is bound.
Definition SqlLogger.hpp:78
virtual void OnError(SqlErrorInfo const &errorInfo, std::source_location sourceLocation=std::source_location::current())=0
Invoked an ODBC SQL error occurred, with extended error information.
virtual void OnBind(std::string_view const &name, std::string value)=0
Invoked when an input parameter is bound, by name.
virtual void OnConnectionIdle(SqlConnection const &connection)=0
Invoked when a connection is idle.
SupportBindLogging
Mandates the support for logging bind operations.
Definition SqlLogger.hpp:22
virtual void OnFetchEnd()=0
Invoked when fetching is done.
virtual void OnConnectionOpened(SqlConnection const &connection)=0
Invoked when a connection is opened.
virtual void OnExecuteBatch()=0
Invoked when a batch of queries is executed.
virtual void OnExecuteDirect(std::string_view const &query)=0
Invoked when a direct query is executed.
static SqlLogger & GetLogger()
Retrieves the currently configured logger.
virtual void OnConnectionClosed(SqlConnection const &connection)=0
Invoked when a connection is closed.
virtual void OnConnectionReuse(SqlConnection const &connection)=0
Invoked when a connection is reused.
virtual void OnWarning(std::string_view const &message)=0
Invoked on a warning.
Represents an ODBC SQL error.
Definition SqlError.hpp:29
Represents a value that can be any of the supported SQL data types.