MagAO-X
Operations Applications Utilities Source
logPriority.hpp
Go to the documentation of this file.
1 /** \file logPriority.hpp
2  * \brief The MagAO-X logger log priority levels.
3  * \author Jared R. Males (jaredmales@gmail.com)
4  *
5  * \ingroup flatlogs_files
6  *
7  * History:
8  * - 2017-07-22 created by JRM
9  * - 2018-08-17 renamed and moved to flatlogs
10  */
11 #ifndef flatlogs_logPriority_hpp
12 #define flatlogs_logPriority_hpp
13 
14 #include <mx/ioutils/stringUtils.hpp>
15 
16 #include "logDefs.hpp"
17 
18 namespace flatlogs
19 {
20 
21 /// The log priority codes. These control if logs are stored on disk and how they are presented to users.
22 /** This is a scoping namespace for log priority codes.
23  * We do not use the enum class feature since it does not have automatic integer conversion.
24  * \ingroup logPrio
25  */
26 namespace logPrio
27 {
28 
29 
30  /// Normal operations of the entire system should be shut down immediately.
31  constexpr static logPrioT LOG_EMERGENCY = 0;
32 
33  /// This should only be used if some action is required by operators to keep the system safe.
34  constexpr static logPrioT LOG_ALERT = 1;
35 
36  /// The process can not continue and will shut down (fatal)
37  constexpr static logPrioT LOG_CRITICAL = 2;
38 
39  /// An error has occured which the software will attempt to correct.
40  constexpr static logPrioT LOG_ERROR = 3;
41 
42  /// A condition has occurred which may become an error, but the process continues.
43  constexpr static logPrioT LOG_WARNING = 4;
44 
45  /// A normal but significant condition
46  constexpr static logPrioT LOG_NOTICE = 5;
47 
48  /// Informational. The info log level is the lowest level recorded during normal operations.
49  constexpr static logPrioT LOG_INFO = 6;
50 
51  /// Used for debugging
52  constexpr static logPrioT LOG_DEBUG = 7;
53 
54  /// Used for debugging, providing a 2nd level.
55  constexpr static logPrioT LOG_DEBUG2 = 8;
56 
57  /// Used to denote "use the default level for this log type".
58  constexpr static logPrioT LOG_DEFAULT = std::numeric_limits<logPrioT>::max() - 1;
59 
60  /// Used to denote an unkown log type for internal error handling.
61  constexpr static logPrioT LOG_UNKNOWN = std::numeric_limits<logPrioT>::max();
62 
63 };
64 
65 ///Get the string representation of a log priority
66 /** \ingroup logPrio
67  */
68 std::string priorityString( logPrioT & prio /**< [in] the log priority */)
69 {
70  switch( prio )
71  {
73  return "EMER";
74  case logPrio::LOG_ALERT:
75  return "ALRT";
77  return "CRIT";
78  case logPrio::LOG_ERROR:
79  return "ERR ";
81  return "WARN";
83  return "NOTE";
84  case logPrio::LOG_INFO:
85  return "INFO";
86  case logPrio::LOG_DEBUG:
87  return "DBG ";
89  return "DBG2";
91  return "DEF?";
92  default:
93  return "UNK?";
94  }
95 }
96 
97 ///Get the log priority from a string, which might have the number or the name
98 /** Evaluates the input string to find the closest match to the log level names.
99  * If the first non-whitespace character is a digit, then the string is treated as an integer
100  * and converted. If the first non-whitespace character is not a digit, then the string is
101  * converted to upper case and the log level is
102  * determined using the minimum number of characters. That is
103  * - EM = EMERGENCY
104  * - A = ALERT
105  * - C = CRITICAL
106  * - ER = ERROR
107  * - W = WARNING
108  * - N = NOTICE
109  * - I = INFO, returns 3
110  * - D, D1, DBG, DBG1, DEBUG = DEBUG
111  * - D2, DBG2, DEBUG2 = DEBUG2
112  * - DEF = DEFAULT
113  *
114  * \returns the log priority value if parsing is successful.
115  * \returns logPrio::LOG_UNKNOWN if parsing is not successful.
116  *
117  * \ingroup loglevels
118  */
119 logPrioT logLevelFromString( const std::string & str )
120 {
121  std::string s = str;
122 
123  //Remove all whitespace
124  s.erase(std::remove_if(s.begin(), s.end(), ::isspace), s.end());
125 
126  if(s.size()==0) return logPrio::LOG_UNKNOWN;
127 
128  if( isdigit(s[0]) )
129  {
130  logPrioT l = atoi( s.c_str());
131 
132  return l;
133  }
134 
135  //Convert to upper case
136  for(size_t i=0; i< s.size(); ++i) s[i] = ::toupper(s[i]);
137 
138  if(s[0] == 'A') return logPrio::LOG_ALERT;
139  if(s[0] == 'C') return logPrio::LOG_CRITICAL;
140  if(s[0] == 'W') return logPrio::LOG_WARNING;
141  if(s[0] == 'N') return logPrio::LOG_NOTICE;
142  if(s[0] == 'I') return logPrio::LOG_INFO;
143 
144  if(s[0] == 'E')
145  {
146  if(s.size() == 1) return logPrio::LOG_UNKNOWN;
147 
148  if(s[1] == 'M') return logPrio::LOG_EMERGENCY;
149  if(s[2] == 'R') return logPrio::LOG_ERROR;
150 
151  return logPrio::LOG_UNKNOWN;
152  }
153 
154  if(s[0] == 'D')
155  {
156  //Accept D by itself for DEBUG
157  if(s.size()==1) return logPrio::LOG_DEBUG;
158 
159  //We accept D1 or D2
160  if(s[1] == '1') return logPrio::LOG_DEBUG;
161  if(s[1] == '2') return logPrio::LOG_DEBUG2;
162 
163  if(s.size()<3) return logPrio::LOG_UNKNOWN;
164 
165  //We accept DBG and DBG2
166  if( s[1] == 'B' && s[2] == 'G' )
167  {
168  if(s.size() == 3) return logPrio::LOG_DEBUG;
169 
170  if(s.size() > 3)
171  {
172  if( s[3] == '2') return logPrio::LOG_DEBUG2;
173  }
174 
175  return logPrio::LOG_UNKNOWN;
176  }
177 
178  //Anything that stars with DEF
179  if (s[1] == 'E' && s[2] == 'F') return logPrio::LOG_DEFAULT;
180 
181  //Now check for DEBUG and DEBUG2
182  if( s.size() >=5 )
183  {
184  if( s.substr(0,5) != "DEBUG" ) return logPrio::LOG_UNKNOWN;
185 
186  if(s.size() > 5 )
187  {
188  if( s[5] == '2') return logPrio::LOG_DEBUG2;
189 
190  return logPrio::LOG_UNKNOWN;
191  }
192 
193  return logPrio::LOG_DEBUG;
194  }
195 
196  }
197 
198  return logPrio::LOG_UNKNOWN;
199 }
200 
201 }// namespace flatlogs
202 
203 #endif //flatlogs_logPriority_hpp
std::string priorityString(logPrioT &prio)
Get the string representation of a log priority.
Definition: logPriority.hpp:68
static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
Definition: logPriority.hpp:49
static constexpr logPrioT LOG_WARNING
A condition has occurred which may become an error, but the process continues.
Definition: logPriority.hpp:43
static constexpr logPrioT LOG_ERROR
An error has occured which the software will attempt to correct.
Definition: logPriority.hpp:40
static constexpr logPrioT LOG_DEBUG2
Used for debugging, providing a 2nd level.
Definition: logPriority.hpp:55
logPrioT logLevelFromString(const std::string &str)
Get the log priority from a string, which might have the number or the name.
static constexpr logPrioT LOG_UNKNOWN
Used to denote an unkown log type for internal error handling.
Definition: logPriority.hpp:61
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:19
static constexpr logPrioT LOG_ALERT
This should only be used if some action is required by operators to keep the system safe...
Definition: logPriority.hpp:34
static constexpr logPrioT LOG_EMERGENCY
Normal operations of the entire system should be shut down immediately.
Definition: logPriority.hpp:31
Type definitions for the flatlogs format.
static constexpr logPrioT LOG_CRITICAL
The process can not continue and will shut down (fatal)
Definition: logPriority.hpp:37
static constexpr logPrioT LOG_DEFAULT
Used to denote "use the default level for this log type".
Definition: logPriority.hpp:58
static constexpr logPrioT LOG_DEBUG
Used for debugging.
Definition: logPriority.hpp:52
static constexpr logPrioT LOG_NOTICE
A normal but significant condition.
Definition: logPriority.hpp:46