-
Notifications
You must be signed in to change notification settings - Fork 289
/
logging.h
233 lines (198 loc) · 7.21 KB
/
logging.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*
* Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#ifndef __LOGGING_UTILS_H_
#define __LOGGING_UTILS_H_
#include "commandLine.h"
#include <stdio.h>
#include <string>
/**
* Standard command-line options able to be passed to videoOutput::Create()
* @ingroup log
*/
#define LOG_USAGE_STRING "logging arguments: \n" \
" --log-file=FILE output destination file (default is stdout)\n" \
" --log-level=LEVEL message output threshold, one of the following:\n" \
" * silent\n" \
" * error\n" \
" * warning\n" \
" * success\n" \
" * info\n" \
" * verbose (default)\n" \
" * debug\n" \
" --verbose enable verbose logging (same as --log-level=verbose)\n" \
" --debug enable debug logging (same as --log-level=debug)\n\n"
/**
* Message logging with a variable level of output and destinations.
* @ingroup log
*/
class Log
{
public:
/**
* Defines the logging level of a message, and the threshold
* used by the logger to either drop or output messages.
*/
enum Level
{
SILENT=0, /**< No messages are output. */
ERROR, /**< Major errors that may impact application execution. */
WARNING, /**< Warning conditions where the application may be able to proceed in some capacity. */
SUCCESS, /**< Successful events (e.g. the loading or creation of a resource) */
INFO, /**< Informational messages that are more important than VERBOSE messages */
VERBOSE, /**< Verbose details about program execution */
DEBUG, /**< Low-level debugging (disabled by default) */
DEFAULT=VERBOSE /**< The default level is `VERBOSE` */
};
/**
* Get the current logging level.
*/
static inline Level GetLevel() { return mLevel; }
/**
* Set the current logging level.
*/
static inline void SetLevel( Level level ) { mLevel = level; }
/**
* Get the current log output.
*/
static inline FILE* GetFile() { return mFile; }
/**
* Get the filename of the log output.
* This may also return `"stdout"` or `"stderror"`.
*/
static inline const char* GetFilename() { return mFilename.c_str(); }
/**
* Set the logging output.
* This can be a built-in file, like `stdout` or `stderr`,
* or a file that has been opened by the user.
*/
static void SetFile( FILE* file );
/**
* Set the logging output.
* Can be `"stdout"`, `"stderr"`, `"log.txt"`, ect.
*/
static void SetFile( const char* filename );
/**
* Usage string for command line arguments to Create()
*/
static inline const char* Usage() { return LOG_USAGE_STRING; }
/**
* Parse command line options (see Usage() above)
*/
static void ParseCmdLine( const int argc, char** argv );
/**
* Parse command line options (see Usage() above)
*/
static void ParseCmdLine( const commandLine& cmdLine );
/**
* Convert a logging level to string.
*/
static const char* LevelToStr( Level level );
/**
* Parse a logging level from a string.
*/
static Level LevelFromStr( const char* str );
protected:
static Level mLevel;
static FILE* mFile;
static std::string mFilename;
};
/**
* Log a printf-style message with the provided level.
* @ingroup log
* @internal
*/
#define GenericLogMessage(level, format, args...) if( level <= Log::GetLevel() ) fprintf(Log::GetFile(), format, ## args)
/**
* Log a printf-style error message (Log::ERROR)
* @ingroup log
*/
#define LogError(format, args...) GenericLogMessage(Log::ERROR, LOG_COLOR_RED LOG_LEVEL_PREFIX_ERROR format LOG_COLOR_RESET, ## args)
/**
* Log a printf-style warning message (Log::WARNING)
* @ingroup log
*/
#define LogWarning(format, args...) GenericLogMessage(Log::WARNING, LOG_COLOR_YELLOW LOG_LEVEL_PREFIX_WARNING format LOG_COLOR_RESET, ## args)
/**
* Log a printf-style success message (Log::SUCCESS)
* @ingroup log
*/
#define LogSuccess(format, args...) GenericLogMessage(Log::SUCCESS, LOG_COLOR_GREEN LOG_LEVEL_PREFIX_SUCCESS format LOG_COLOR_RESET, ## args)
/**
* Log a printf-style info message (Log::INFO)
* @ingroup log
*/
#define LogInfo(format, args...) GenericLogMessage(Log::INFO, LOG_LEVEL_PREFIX_INFO format, ## args)
/**
* Log a printf-style verbose message (Log::VERBOSE)
* @ingroup log
*/
#define LogVerbose(format, args...) GenericLogMessage(Log::VERBOSE, LOG_LEVEL_PREFIX_VERBOSE format, ## args)
/**
* Log a printf-style debug message (Log::DEBUG)
* @ingroup log
*/
#define LogDebug(format, args...) GenericLogMessage(Log::DEBUG, LOG_LEVEL_PREFIX_DEBUG format, ## args)
///////////////////////////////////////////////////////////////////
/// @name Logging Internals
/// @internal
/// @ingroup log
///////////////////////////////////////////////////////////////////
///@{
#ifdef LOG_DISABLE_COLORS
#define LOG_COLOR_RESET ""
#define LOG_COLOR_RED ""
#define LOG_COLOR_GREEN ""
#define LOG_COLOR_YELLOW ""
#define LOG_COLOR_BLUE ""
#define LOG_COLOR_MAGENTA ""
#define LOG_COLOR_CYAN ""
#define LOG_COLOR_LIGHT_GRAY ""
#define LOG_COLOR_DARK_GRAY ""
#else
// https://misc.flogisoft.com/bash/tip_colors_and_formatting
#define LOG_COLOR_RESET "\033[0m"
#define LOG_COLOR_RED "\033[0;31m"
#define LOG_COLOR_GREEN "\033[0;32m"
#define LOG_COLOR_YELLOW "\033[0;33m"
#define LOG_COLOR_BLUE "\033[0;34m"
#define LOG_COLOR_MAGENTA "\033[0;35m"
#define LOG_COLOR_CYAN "\033[0;36m"
#define LOG_COLOR_LIGHT_GRAY "\033[0;37m"
#define LOG_COLOR_DARK_GRAY "\033[0;90m"
#endif
#ifdef LOG_ENABLE_LEVEL_PREFIX
#define LOG_LEVEL_PREFIX_ERROR "[E]"
#define LOG_LEVEL_PREFIX_WARNING "[W]"
#define LOG_LEVEL_PREFIX_SUCCESS "[S]"
#define LOG_LEVEL_PREFIX_INFO "[I]"
#define LOG_LEVEL_PREFIX_VERBOSE "[V]"
#define LOG_LEVEL_PREFIX_DEBUG "[D]"
#else
#define LOG_LEVEL_PREFIX_ERROR ""
#define LOG_LEVEL_PREFIX_WARNING ""
#define LOG_LEVEL_PREFIX_SUCCESS ""
#define LOG_LEVEL_PREFIX_INFO ""
#define LOG_LEVEL_PREFIX_VERBOSE ""
#define LOG_LEVEL_PREFIX_DEBUG ""
#endif
///@}
#endif