slope 0.29.0
Loading...
Searching...
No Matches
logger.cpp
1#include "logger.h"
2
3#ifdef _OPENMP
4#include <omp.h>
5#endif
6
7namespace slope {
8
9// Define static member variables
10std::map<int, std::vector<Warning>> WarningLogger::warnings;
11std::mutex WarningLogger::warnings_mutex;
12
13std::string
15{
16 switch (code) {
18 return "GENERIC_WARNING";
20 return "DEPRECATED_FEATURE";
22 return "MAXIT_REACHED";
24 return "LINE_SEARCH_FAILED";
25 default:
26 return "UNKNOWN_WARNING";
27 }
28}
29
30void
31WarningLogger::addWarning(WarningCode code, const std::string& message)
32{
33 int thread_id = 0;
34#ifdef _OPENMP
35 thread_id = omp_get_thread_num();
36#endif
37
38 std::lock_guard<std::mutex> lock(warnings_mutex);
39 warnings[thread_id].emplace_back(code, message);
40}
41
42std::vector<Warning>
44{
45 std::lock_guard<std::mutex> lock(warnings_mutex);
46 std::vector<Warning> all_warnings;
47 for (const auto& thread_warnings : warnings) {
48 all_warnings.insert(all_warnings.end(),
49 thread_warnings.second.begin(),
50 thread_warnings.second.end());
51 }
52 return all_warnings;
53}
54
55void
57{
58 std::lock_guard<std::mutex> lock(warnings_mutex);
59 warnings.clear();
60}
61
62bool
64{
65 std::lock_guard<std::mutex> lock(warnings_mutex);
66 for (const auto& thread_warnings : warnings) {
67 if (!thread_warnings.second.empty()) {
68 return true;
69 }
70 }
71
72 return false;
73}
74std::vector<Warning>
76{
77 std::lock_guard<std::mutex> lock(warnings_mutex);
78 if (warnings.find(thread_id) != warnings.end()) {
79 return warnings[thread_id];
80 }
81 return std::vector<Warning>();
82}
83
84} // namespace slope
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
Thread-safe warning logging facility for the slope library.
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.