/usr/include/OGRE/OgreLog.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 Torus Knot Software Ltd
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 __Log_H__
#define __Log_H__
#include "OgrePrerequisites.h"
#include "OgreString.h"
#if OGRE_PLATFORM == OGRE_PLATFORM_NACL
namespace pp
{
class Instance;
}
#endif
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup General
* @{
*/
// LogMessageLevel + LoggingLevel > OGRE_LOG_THRESHOLD = message logged
#define OGRE_LOG_THRESHOLD 4
/** The level of detail to which the log will go into.
*/
enum LoggingLevel
{
LL_LOW = 1,
LL_NORMAL = 2,
LL_BOREME = 3
};
/** The importance of a logged message.
*/
enum LogMessageLevel
{
LML_TRIVIAL = 1,
LML_NORMAL = 2,
LML_CRITICAL = 3
};
/** @remarks Pure Abstract class, derive this class and register to the Log to listen to log messages */
class LogListener
{
public:
virtual ~LogListener() {}
/**
@remarks
This is called whenever the log receives a message and is about to write it out
@param message
The message to be logged
@param lml
The message level the log is using
@param maskDebug
If we are printing to the console or not
@param logName
The name of this log (so you can have several listeners for different logs, and identify them)
@param skipThisMessage
If set to true by the messageLogged() implementation message will not be logged
*/
virtual void messageLogged( const String& message, LogMessageLevel lml, bool maskDebug, const String &logName, bool& skipThisMessage ) = 0;
};
/**
@remarks
Log class for writing debug/log data to files.
@note
<br>Should not be used directly, but trough the LogManager class.
*/
class _OgreExport Log : public LogAlloc
{
protected:
std::ofstream mLog;
LoggingLevel mLogLevel;
bool mDebugOut;
bool mSuppressFile;
bool mTimeStamp;
String mLogName;
typedef vector<LogListener*>::type mtLogListener;
mtLogListener mListeners;
public:
class Stream;
OGRE_AUTO_MUTEX // public to allow external locking
/**
@remarks
Usual constructor - called by LogManager.
*/
Log( const String& name, bool debugOutput = true, bool suppressFileOutput = false);
/**
@remarks
Default destructor.
*/
~Log();
/// Return the name of the log
const String& getName() const { return mLogName; }
/// Get whether debug output is enabled for this log
bool isDebugOutputEnabled() const { return mDebugOut; }
/// Get whether file output is suppressed for this log
bool isFileOutputSuppressed() const { return mSuppressFile; }
/// Get whether time stamps are printed for this log
bool isTimeStampEnabled() const { return mTimeStamp; }
/** Log a message to the debugger and to log file (the default is
"<code>OGRE.log</code>"),
*/
void logMessage( const String& message, LogMessageLevel lml = LML_NORMAL, bool maskDebug = false );
/** Get a stream object targeting this log. */
Stream stream(LogMessageLevel lml = LML_NORMAL, bool maskDebug = false);
/**
@remarks
Enable or disable outputting log messages to the debugger.
*/
void setDebugOutputEnabled(bool debugOutput);
/**
@remarks
Sets the level of the log detail.
*/
void setLogDetail(LoggingLevel ll);
/**
@remarks
Enable or disable time stamps.
*/
void setTimeStampEnabled(bool timeStamp);
/** Gets the level of the log detail.
*/
LoggingLevel getLogDetail() const { return mLogLevel; }
/**
@remarks
Register a listener to this log
@param
A valid listener derived class
*/
void addListener(LogListener* listener);
/**
@remarks
Unregister a listener from this log
@param
A valid listener derived class
*/
void removeListener(LogListener* listener);
/** Stream object which targets a log.
@remarks
A stream logger object makes it simpler to send various things to
a log. You can just use the operator<< implementation to stream
anything to the log, which is cached until a Stream::Flush is
encountered, or the stream itself is destroyed, at which point the
cached contents are sent to the underlying log. You can use Log::stream()
directly without assigning it to a local variable and as soon as the
streaming is finished, the object will be destroyed and the message
logged.
@par
You can stream control operations to this object too, such as
std::setw() and std::setfill() to control formatting.
@note
Each Stream object is not thread safe, so do not pass it between
threads. Multiple threads can hold their own Stream instances pointing
at the same Log though and that is threadsafe.
*/
class _OgrePrivate Stream
{
protected:
Log* mTarget;
LogMessageLevel mLevel;
bool mMaskDebug;
typedef StringUtil::StrStreamType BaseStream;
BaseStream mCache;
public:
/// Simple type to indicate a flush of the stream to the log
struct Flush {};
Stream(Log* target, LogMessageLevel lml, bool maskDebug)
:mTarget(target), mLevel(lml), mMaskDebug(maskDebug)
{
}
// copy constructor
Stream(const Stream& rhs)
: mTarget(rhs.mTarget), mLevel(rhs.mLevel), mMaskDebug(rhs.mMaskDebug)
{
// explicit copy of stream required, gcc doesn't like implicit
mCache.str(rhs.mCache.str());
}
~Stream()
{
// flush on destroy
if (mCache.tellp() > 0)
{
mTarget->logMessage(mCache.str(), mLevel, mMaskDebug);
}
}
template <typename T>
Stream& operator<< (const T& v)
{
mCache << v;
return *this;
}
Stream& operator<< (const Flush& v)
{
(void)v;
mTarget->logMessage(mCache.str(), mLevel, mMaskDebug);
mCache.str(StringUtil::BLANK);
return *this;
}
};
#if OGRE_PLATFORM == OGRE_PLATFORM_NACL
protected:
static pp::Instance* mInstance;
public:
static void setInstance(pp::Instance* instance) {mInstance = instance;};
#endif
};
/** @} */
/** @} */
}
#endif
|