This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
usermsgman.cc
675 lines (583 loc) · 18.3 KB
/
usermsgman.cc
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
/**
* @file usermsgman.cc
* @brief Definitions for Example class.
* @author Nicu Tofan <[email protected]>
* @copyright Copyright 2014 piles contributors. All rights reserved.
* This file is released under the
* [MIT License](http://opensource.org/licenses/mit-license.html)
*/
#include "usermsgman.h"
#include "usermsg-private.h"
#include "usermsg.h"
#include "usermsgstg.h"
#include <QThread>
#include <QTextStream>
#include <QDir>
#include <QRegularExpression>
#include <QStandardPaths>
/**
* @class UserMsgMan
*
* A singleton is created internally and it
* manages the settings and behavior of UserMsg.
*
* The manager can be explicitly initialized
* but it does not have to. Any static
* function that will be invoked will first check
* for its existance and it will create it
* if it does not exist.
*
* Resources can be freed using
* UserMsgMan::end(), for example at the end of
* the application.
*
* Initial state for the manager is enabled; to
* start in disabled state use
* @code
* UserMsgMan::init (false);
* @endcode
* at the beginning of your application.
*
*
*/
UserMsgMan * UserMsgMan::singleton_ = NULL;
enum LockState {
StateLocked,
StateUnlocked
};
//! Aquire the lock; wait for it if necesary.
#define UM_AQUIRE_LOCK \
while (!singleton_->lock_.testAndSetAcquire (StateUnlocked, StateLocked)) { \
QThread::usleep (50); \
}
//! Release the lock.
#define UM_RELEASE_LOCK \
while (!singleton_->lock_.testAndSetRelease (StateLocked, StateUnlocked)) { \
QThread::usleep (50); \
}
/* ------------------------------------------------------------------------- */
UserMsgMan * UserMsgMan::singleton ()
{
USERMSG_TRACE_ENTRY;
autostart ();
USERMSG_TRACE_EXIT;
return singleton_;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* Sets the singleton to point to this instance.
*/
UserMsgMan::UserMsgMan() :
QObject(),
enabled_ (true),
settings_ (new UserMsgStg()),
message_list_ (),
lock_ (StateUnlocked),
kb_show_ (NULL),
log_file_ (NULL),
logger_ (NULL)
{
USERMSG_TRACE_ENTRY;
singleton_ = this;
qRegisterMetaType<UserMsg>("UserMsg");
qRegisterMetaType<UserMsgEntry>("UserMsgEntry");
_openLogFile ();
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* Resets the singleton to NULL.
*/
UserMsgMan::~UserMsgMan()
{
USERMSG_TRACE_ENTRY;
if (logger_ != NULL) {
logger_->flush ();
delete logger_;
}
if (log_file_ != NULL) {
delete log_file_;
}
singleton_ = NULL;
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* A new instance is only created if the singleton is NULL.
*
* @returns true if everything went OK.
*/
bool UserMsgMan::init (bool start_disabled)
{
USERMSG_TRACE_ENTRY;
// create the thingy
if (singleton_ == NULL) {
new UserMsgMan ();
}
// disable it
if (start_disabled) {
disable ();
}
USERMSG_TRACE_EXIT;
return true;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* If the singleton exists is being destroyed.
*/
void UserMsgMan::end ()
{
USERMSG_TRACE_ENTRY;
if (singleton_ != NULL) {
delete singleton_;
singleton_ = NULL;
}
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* This is the only static function that will not create the singleton
*
* @returns true if the singleton is non-NULL.
*/
bool UserMsgMan::isInitialized ()
{
USERMSG_TRACE_ENTRY;
bool b_ret = (singleton_ != NULL);
USERMSG_TRACE_EXIT;
return b_ret;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* @returns a constant reference to internal settings.
*/
const UserMsgStg & UserMsgMan::settings ()
{
autostart ();
return *singleton_->settings_;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
*
*/
void UserMsgMan::setSettings (const UserMsgStg & value)
{
autostart ();
*singleton_->settings_ = value;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
*
*/
void UserMsgMan::disable ()
{
USERMSG_TRACE_ENTRY;
autostart ();
UM_AQUIRE_LOCK;
singleton_->enabled_ = false;
UM_RELEASE_LOCK;
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
*
*/
void UserMsgMan::enable (bool collapse_messages)
{
USERMSG_TRACE_ENTRY;
autostart ();
singleton_->_showQueue (collapse_messages);
UM_AQUIRE_LOCK;
singleton_->enabled_ = true;
UM_RELEASE_LOCK;
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
bool UserMsgMan::isEnabled()
{
USERMSG_TRACE_ENTRY;
autostart ();
USERMSG_TRACE_EXIT;
return (singleton_->enabled_);
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
bool UserMsgMan::isVisible (UserMsgEntry::Type value)
{
USERMSG_TRACE_ENTRY;
autostart ();
USERMSG_TRACE_EXIT;
return (singleton_->settings_->isEnabled (value));
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
void UserMsgMan::setVisible (
UserMsgEntry::Type ty, bool b_visible)
{
USERMSG_TRACE_ENTRY;
autostart ();
(singleton_->settings_->setEnabled (ty, b_visible));
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
void UserMsgMan::setAllVisible (bool include_debug)
{
USERMSG_TRACE_ENTRY;
autostart ();
(singleton_->settings_->setAllEnabled (include_debug));
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
UserMsgMan::KbShowMessage UserMsgMan::callbackShow ()
{
USERMSG_TRACE_ENTRY;
autostart ();
USERMSG_TRACE_EXIT;
return singleton_->kb_show_;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
void UserMsgMan::setCallbackShow ( UserMsgMan::KbShowMessage value)
{
USERMSG_TRACE_ENTRY;
autostart ();
singleton_->kb_show_ = value;
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
const QString & UserMsgMan::logFile()
{
USERMSG_TRACE_ENTRY;
autostart ();
USERMSG_TRACE_EXIT;
return singleton_->settings_->logFile ();
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
void UserMsgMan::setLogFile (const QString & value)
{
USERMSG_TRACE_ENTRY;
autostart ();
UM_AQUIRE_LOCK;
singleton_->settings_->setLogFile (value);
singleton_->_openLogFile ();
UM_RELEASE_LOCK;
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
void UserMsgMan::autosetLogFile (const QString & base_name)
{
QString s_log_path;
QString s_base_name = base_name;
s_base_name.replace (QRegularExpression ("\\s+"), "_");
# if defined(__WIN32__) || defined (_WIN32)
s_log_path = QStandardPaths::standardLocations (
QStandardPaths::DataLocation).at (0);
QDir d_lg (s_log_path);
if (!d_lg.exists ()) d_lg.mkpath (".");
# else
s_log_path = "/var/log";
# endif
QString s_log_file = QString("%1/%2.log")
.arg (s_log_path)
.arg (s_base_name);
UserMsgMan::setLogFile (s_log_file);
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
void UserMsgMan::autostart()
{
if (singleton_ == NULL) {
init ();
}
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* Presents a message to the user.
*/
void UserMsgMan::show (const UserMsg & um)
{
USERMSG_TRACE_ENTRY;
autostart ();
if (singleton_->enabled_) {
singleton_->_showMessage (um);
} else {
singleton_->_addMessageToQueue (um);
}
singleton_->_logMessage (um);
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
void UserMsgMan::logMessage (const UserMsg &um)
{
USERMSG_TRACE_ENTRY;
autostart ();
singleton_->_logMessage (um);
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* If log is available logs the message, otherwise does nothing.
*/
void UserMsgMan::_logPrefix (const UserMsgEntry & e)
{
USERMSG_TRACE_ENTRY;
(*logger_) << " "
<< e.moment ().toString (Qt::ISODate)
<< " ";
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* If log is available logs the message, otherwise does nothing.
*
* Each line in the log file starts with a preamble that tells the time
* when that message was produced, the type of the message and actual content.
* When a message has more than one line the text is padded without
* repetaing the timestamp.
*
* Here are some examples ("|" character is there just to indicate the
* start of the line and is not part of the actual output):
* @code
* | 2017-02-10T21:37:49 title : This is where a UserMsg starts
* | 2017-02-10T21:37:49 error : Text of the error message
* | : that extends on two lines.
* | 2017-02-10T21:37:46 warning : Warning message
* | 2017-02-10T21:37:46 debug : Debug message
* @endcode
*/
void UserMsgMan::_logMessage (const UserMsg & um)
{
USERMSG_TRACE_ENTRY;
if (logger_ != NULL) {
int i_max = um.count ();
if (i_max > 0) {
UM_AQUIRE_LOCK;
const QString & t = um.title ();
if (t.isEmpty ()) {
_logPrefix (um.at (0));
(*logger_) << "title ";
(*logger_) << um.title () << endl;
}
for (int i = 0; i < i_max; ++i) {
const UserMsgEntry & e = um.at (i);
_logPrefix (e);
switch (e.type ()) {
case UserMsgEntry::UTERROR: {
(*logger_) << "error ";
break; }
case UserMsgEntry::UTWARNING: {
(*logger_) << "warning ";
break; }
case UserMsgEntry::UTINFO: {
(*logger_) << "info ";
break; }
case UserMsgEntry::UTDBG_ERROR: {
(*logger_) << "derror ";
break; }
case UserMsgEntry::UTDBG_WARNING: {
(*logger_) << "dwarning";
break; }
case UserMsgEntry::UTDBG_INFO: {
(*logger_) << "debug ";
break; }
default: {
(*logger_) << "null ";
break; }
}
(*logger_) << ": ";
// Have the start of the text align with the rest of the
// message in lines other than the first
// for redability.
static QChar new_line ('\n');
static QLatin1String new_line_padding (
"\n : ");
QString final = e.message ();
(*logger_) << final.replace (new_line, new_line_padding, Qt::CaseInsensitive) << endl;
}
UM_RELEASE_LOCK;
}
}
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* Presents a message to the user.
*/
void UserMsgMan::_showMessage (const UserMsg & um)
{
USERMSG_TRACE_ENTRY;
if (kb_show_ != NULL)
kb_show_ (um);
emit signalShow (um);
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* .
*/
void UserMsgMan::_showQueue (bool collapse_messages)
{
USERMSG_TRACE_ENTRY;
UM_AQUIRE_LOCK;
if (collapse_messages) {
UserMsg um_all;
foreach(const UserMsg & um, message_list_) {
um_all.append (um);
}
if (kb_show_ != NULL)
kb_show_ (um_all);
emit signalShow (um_all);
} else {
foreach(const UserMsg & um, message_list_) {
if (kb_show_ != NULL)
kb_show_ (um);
emit signalShow (um);
}
}
message_list_.clear ();
UM_RELEASE_LOCK;
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* This method checks to see if the trigger file size was reached an,
* if so, starts the roll feature:
*
* - deletes last possible log file;
* - moves each log file to next number;
* - moves current log file to log.1.
*/
void UserMsgMan::_logRollFeature (const QString & s_log_file_path)
{
USERMSG_TRACE_ENTRY;
for (;;) {
int roll_trigger = settings_->maxLogFileSize ();
int log_count = settings_->oldLogFilesCount ();
// Check the size to see if we need to do this at this time?
QFile current_file (s_log_file_path);
if (current_file.size() < roll_trigger) {
break;
}
// We do; start by deleting the last file, if any.
static const QString roll_files ("%1.%2");
QFile last_file (
QString (roll_files)
.arg (s_log_file_path)
.arg (log_count));
if (last_file.exists()) {
if (!last_file.remove ()) {
printf("Cannot remove last log file");
}
}
// Next, move each file to next number.
QString to = last_file.fileName ();
QString from;
for (int i = log_count-1; i > 0; --i) {
from = QString (roll_files)
.arg (s_log_file_path)
.arg (i);
QFile file (from);
if (file.exists()) {
if (!file.copy (to)) {
printf("Cannot copy log file");
}
if (!file.remove ()) {
printf("Cannot move log file");
}
}
to = from;
}
// Finally move current file out of the way.
if (!current_file.copy (to)) {
printf("Cannot copy current log file");
}
if (!current_file.remove ()) {
printf("Cannot move current log file");
}
break;
}
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* @warning The caller must acquire the lock itself.
*/
void UserMsgMan::_openLogFile ()
{
USERMSG_TRACE_ENTRY;
if (logger_ != NULL) {
logger_->flush ();
delete logger_;
logger_ = NULL;
}
if (log_file_ != NULL) {
if (log_file_->isOpen ()) {
log_file_->close ();
}
delete log_file_;
log_file_ = NULL;
}
const QString & s_log_file_path = settings_->logFile ();
if (!s_log_file_path.isEmpty ()) {
int flg = QIODevice::WriteOnly | QIODevice::Text;
if (settings_->oldLogFilesCount () == 0) {
// 0 will overwrite the log file on each start
} else {
flg = flg | QIODevice::Append;
_logRollFeature (s_log_file_path);
}
log_file_ = new QFile (s_log_file_path);
if (log_file_->open ((QIODevice::OpenModeFlag)flg)) {
logger_ = new QTextStream (log_file_);
} else {
printf("Failed to open log file; logging will "
"be disabled in this session.\n");
delete log_file_;
log_file_ = NULL;
}
}
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/**
* .
*/
void UserMsgMan::_addMessageToQueue (const UserMsg & um)
{
USERMSG_TRACE_ENTRY;
UM_AQUIRE_LOCK;
if (enabled_) {
UM_RELEASE_LOCK;
_showMessage (um);
} else {
message_list_.append (um);
UM_RELEASE_LOCK;
}
USERMSG_TRACE_EXIT;
}
/* ========================================================================= */
void UserMsgMan::anchorVtable () const {}