slope 0.29.0
Loading...
Searching...
No Matches
logger.h
Go to the documentation of this file.
1
10#pragma once
11
12#include <map>
13#include <mutex>
14#include <string>
15#include <vector>
16
17namespace slope {
18
32
39std::string
41
45struct Warning
46{
48 std::string message;
49
56 Warning(WarningCode code, const std::string& message)
57 : code(code)
59 {
60 }
61};
62
74{
75private:
78 static std::map<int, std::vector<Warning>> warnings;
79
81 static std::mutex warnings_mutex;
82
83public:
95 static void addWarning(WarningCode code, const std::string& message);
96
104 static std::vector<Warning> getWarnings();
105
111 static void clearWarnings();
112
118 static bool hasWarnings();
119
128 static std::vector<Warning> getThreadWarnings(int thread_id);
129};
130
131} // namespace slope
Thread-safe warning logger for tracking runtime warnings.
Definition logger.h:74
static void clearWarnings()
Clear all warnings.
Definition logger.cpp:56
static bool hasWarnings()
Check if any warnings have been logged.
Definition logger.cpp:63
static std::vector< Warning > getThreadWarnings(int thread_id)
Get warnings from a specific thread.
Definition logger.cpp:75
static std::vector< Warning > getWarnings()
Retrieve all warnings from all threads.
Definition logger.cpp:43
static void addWarning(WarningCode code, const std::string &message)
Log a new warning.
Definition logger.cpp:31
Namespace containing SLOPE regression implementation.
Definition clusters.cpp:5
std::string warningCodeToString(WarningCode code)
Convert a warning code to its string representation.
Definition logger.cpp:14
WarningCode
Standard warning codes used throughout the slope library.
Definition logger.h:26
@ MAXIT_REACHED
Maximum iterations reached without convergence.
@ GENERIC_WARNING
General uncategorized warning.
@ LINE_SEARCH_FAILED
Line search algorithm failed to converge.
@ DEPRECATED_FEATURE
Feature marked for deprecation.
Structure representing a warning with its code and message.
Definition logger.h:46
Warning(WarningCode code, const std::string &message)
Constructs a new Warning object.
Definition logger.h:56
WarningCode code
The type of warning.
Definition logger.h:47
std::string message
Descriptive message for the warning.
Definition logger.h:48