Fraxinus  16.5.0-fx-rc9
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxLogger.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 
33 
34 #include <QFileInfo>
35 
36 #include "cxLogger.h"
37 #include "cxReporter.h"
38 
39 namespace cx
40 {
41 
43 {
44 public:
45  std::stringstream stream;
47 };
48 
49 MessageLogger::MessageLogger(const char *file, int line, const char *function, const QString& channel, MESSAGE_LEVEL severity)
50 {
51  Message msg;
52  msg.mChannel = channel;
53  msg.mMessageLevel = severity;
54  msg.mTimeStamp = QDateTime::currentDateTime();
55  msg.mTimeoutTime = 3000;
56  msg.mSourceFile = file;
57  msg.mSourceLine = line;
58  msg.mSourceFunction = function;
59 
60  mInternalData.reset(new MessageLoggerInternalData);
61  mInternalData->msg = msg;
62 }
64 {
65  if (mInternalData.use_count()==1)
66  {
67  mInternalData->msg.mText = QString::fromStdString(mInternalData->stream.str());
68  reporter()->sendMessage(mInternalData->msg);
69  }
70 }
71 
73 {
74  return MessageLogger(*this);
75 }
76 
78 {
79  return MessageLogger(*this) << text;
80 }
81 
82 std::stringstream& MessageLogger::getStream()
83 {
84  return mInternalData->stream;
85 }
86 
87 
88 
89 void reportDebug(QString msg) { reporter()->sendDebug(msg); }
90 void report(QString msg) { reporter()->sendInfo(msg); }
91 void reportWarning(QString msg) { reporter()->sendWarning(msg); }
92 void reportError(QString msg) { reporter()->sendError(msg); }
93 void reportSuccess(QString msg) { reporter()->sendSuccess(msg); }
94 void reportVolatile(QString msg) { reporter()->sendVolatile(msg); }
95 
96 
97 }
void reportError(QString msg)
Definition: cxLogger.cpp:92
QString mSourceFile
Definition: cxLogMessage.h:98
void reportVolatile(QString msg)
Definition: cxLogger.cpp:94
ReporterPtr reporter()
Definition: cxReporter.cpp:59
MESSAGE_LEVEL mMessageLevel
Definition: cxLogMessage.h:90
MessageLogger logger() const
Definition: cxLogger.cpp:72
QString mChannel
Definition: cxLogMessage.h:95
void reportWarning(QString msg)
Definition: cxLogger.cpp:91
void reportSuccess(QString msg)
Definition: cxLogger.cpp:93
QDateTime mTimeStamp
Definition: cxLogMessage.h:92
int mTimeoutTime
Definition: cxLogMessage.h:91
QString mSourceFunction
Definition: cxLogMessage.h:99
void report(QString msg)
Definition: cxLogger.cpp:90
MessageLogger(const char *file, int line, const char *function, const QString &channel, MESSAGE_LEVEL severity)
Definition: cxLogger.cpp:49
void reportDebug(QString msg)
Definition: cxLogger.cpp:89
std::stringstream stream
Definition: cxLogger.cpp:45