forked from carlonluca/LightLogger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
194 lines (166 loc) · 5.79 KB
/
main.cpp
File metadata and controls
194 lines (166 loc) · 5.79 KB
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
/*
* Author: Luca Carlon
* Company: -
* Date: 05.12.2011
*
* Copyright (c) 2013, Luca Carlon
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the author nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*------------------------------------------------------------------------------
| includes
+-----------------------------------------------------------------------------*/
#ifndef __ANDROID__
#include <QGuiApplication>
#include <QElapsedTimer>
#if defined(QT_QML_LIB) && defined(QT_QUICK_LIB)
#include <QtQuick/QQuickView>
#include <QQmlEngine>
#endif
#endif
#include "lc_logging.h"
#ifdef __ANDROID__
#include <jni.h>
extern "C" void Java_com_luke_android_lightloggerandroid_MainActivity_log(JNIEnv* env, jobject obj)
{
log_debug_t("LightLoggerAndroid", "Done! ;-)");
log_warn_t("LightLoggerAndroid", "Warn log! ;-)");
}
#endif
#ifndef __ANDROID__
/*------------------------------------------------------------------------------
| test_func2
+-----------------------------------------------------------------------------*/
void test_func2(int i)
{
(void)i;
log_stacktrace(LC_LOG_INFO, 90);
}
/*------------------------------------------------------------------------------
| test_func
+-----------------------------------------------------------------------------*/
void test_func()
{
test_func2(1);
}
/*------------------------------------------------------------------------------
| test_args
+-----------------------------------------------------------------------------*/
void test_args(const char* format, ...)
{
{
va_list args;
va_start(args, format);
log_info_v(format, args);
va_end(args);
}
{
va_list args;
va_start(args, format);
log_info_t_v("MyTag", format, args);
va_end(args);
}
}
#endif
#ifndef __ANDROID__
/*------------------------------------------------------------------------------
| main
+-----------------------------------------------------------------------------*/
int main(int argc, char** argv)
{
#if defined(QT_QML_LIB) && defined(QT_QUICK_LIB)
QGuiApplication a(argc, argv);
#endif
#if 0
QElapsedTimer timer;
timer.start();
// Test with lc_logging.
for (int i = 0; i < 100000; i++)
log_verbose("Test: %d.", i);
qDebug("Result lc_logging: %lld.", timer.elapsed());
// Test with printf.
timer.restart();
for (int i = 0; i < 100000; i++) {
fprintf(stdout, "- DEBUG:%s: Test: %d.\n", lc_current_time().c_str(), i);
fflush(stdout);
}
qDebug("Result printf: %lld.", timer.elapsed());
// Test with qDebug.
timer.restart();
for (int i = 0; i < 100000; i++) {
qDebug("- DEBUG:%s: Test: %d.\n", lc_current_time().c_str(), i);
fflush(stderr);
}
qDebug("Result qDebug: %lld.", timer.elapsed());
#endif
#ifdef __GNUC__
LOG_CRITICAL("MyTag", "Oooops!");
#endif
log_info("Info log.");
log_info_t("MyTag", "Info log.");
test_args("Testing %d va_args functions.", 2);
log_debug("Some message for debugging...");
log_disabled("A disabled log!!!!!!!!!!! You won't see this.");
log_critical("Print int: %d.", 5);
log_critical_t("MyTag", "Print int: %d.", 5);
log_critical_t("MyTag", "Print with tag only.");
/*lc_formatted_printf(stdout, LC_LOG_ATTR_UNDERLINE, LC_LOG_COL_MAGENTA,
"Underlined %s! ;-)\n", "magenta");*/
log_formatted(LC_LOG_ATTR_UNDERLINE, LC_LOG_COL_YELLOW, "Formatted text.");
log_formatted(LC_LOG_COL_YELLOW, "Formatted text with %s.", "param");
#ifndef __ANDROID__
test_func();
#endif
// Using streams.
{
LC_LogDef logger(NULL, LC_LOG_ATTR_RESET, LC_LOG_COL_BLUE);
logger.stream() << "Blue log using stream. " << "Params can be added like " << 1234 << ".";
LC_LogDef l(NULL);
Q_UNUSED(l);
}
{
LC_Log<LC_Output2Std> logger(LC_LOG_DEBUG);
logger.stream() << "Debug log with stream.";
}
{
LC_Log<LC_Output2Std> logger(LC_LOG_WARN);
logger.stream() << "Warning log with stream.";
}
{
LC_Log<LC_Output2Std> logger(LC_LOG_CRITICAL);
logger.stream() << "Critical log with stream.";
}
#if defined(QT_QML_LIB) && defined(QT_QUICK_LIB)
QQuickView view;
LC_QMLLogger::registerObject(view.rootContext());
view.setSource(QUrl("qrc:///main.qml"));
#endif
assert(log_verbose("") == true);
assert(log_info("") == true);
assert(log_warn("") == false);
assert(log_err("") == false);
assert(log_critical("") == false);
return 0;
}
#endif