/usr/include/openturns/Log.hxx is in libopenturns-dev 1.2-2.
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 | // -*- C++ -*-
/**
* @file Log.hxx
* @brief Log records all user information to a file or tty
*
* Copyright (C) 2005-2013 EDF-EADS-Phimeca
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* @author schueller
* @date 2012-07-16 10:12:54 +0200 (Mon, 16 Jul 2012)
*/
#ifndef OPENTURNS_LOG_HXX
#define OPENTURNS_LOG_HXX
#include <fstream>
#include <map>
#include "OTprivate.hxx"
#include "AtomicFunctions.hxx"
#include "TTY.hxx"
#ifdef WIN32
#undef ERROR
#endif
#define LOGDEBUG(st) do { if (OT::Log::HasDebug() ) OT::Log::Debug(st); } while(0)
#define LOGWRAPPER(st) do { if (OT::Log::HasWrapper()) OT::Log::Wrapper(st); } while(0)
#define LOGINFO(st) do { if (OT::Log::HasInfo() ) OT::Log::Info(st); } while(0)
#define LOGUSER(st) do { if (OT::Log::HasUser() ) OT::Log::User(st); } while(0)
#define LOGWARN(st) do { if (OT::Log::HasWarn() ) OT::Log::Warn(st); } while(0)
#define LOGERROR(st) do { if (OT::Log::HasError() ) OT::Log::Error(st); } while(0)
#define LOGTRACE(st) do { if (OT::Log::HasTrace() ) OT::Log::Trace(st); } while(0)
BEGIN_NAMESPACE_OPENTURNS
#ifndef SWIG
struct _Prefix
{
typedef String Value;
Value color_, nocolor_, prefix_;
_Prefix() : color_(), nocolor_(), prefix_() {}
_Prefix( const Value & color, const Value & nocolor, const Value & prefix) : color_(color), nocolor_(nocolor), prefix_(prefix) {}
};
#endif
/**
* @class log
* @brief Records all user information to a file or tty
* @internal
*/
class Log
{
public:
typedef unsigned long Severity;
private:
static Log & GetInstance();
static void Initialization();
static void Release();
public:
/** Those flags should be ORed */
static const Severity DBG;
static const Severity WRAPPER;
static const Severity INFO;
static const Severity USER;
static const Severity WARN;
static const Severity ERROR;
static const Severity TRACE;
static const Severity DEFAULT;
static const Severity NONE;
static const Severity ALL;
#ifndef SWIG
/** Change the Log */
static void Reset();
#endif
/** Log messages according to the DBG level
* @param msg The message to be logged
*/
static void Debug(const String & msg);
static inline Bool HasDebug()
{
return Flags() & Log::DBG;
}
/** Log messages according to the WRAPPER level
* @param msg The message to be logged
*/
static void Wrapper(const String & msg);
static inline Bool HasWrapper()
{
return Flags() & Log::WRAPPER;
}
/** Log messages according to the INFO level
* @param msg The message to be logged
*/
static void Info(const String & msg);
static inline Bool HasInfo()
{
return Flags() & Log::INFO;
}
/** Log messages according to the USER level
* @param msg The message to be logged
*/
static void User(const String & msg);
static inline Bool HasUser()
{
return Flags() & Log::USER;
}
/** Log messages according to the WARN level
* @param msg The message to be logged
*/
static void Warn(const String & msg);
static inline Bool HasWarn()
{
return Flags() & Log::WARN;
}
/** Log messages according to the ERROR level
* @param msg The message to be logged
*/
static void Error(const String & msg);
static inline Bool HasError()
{
return Flags() & Log::ERROR;
}
/** Log messages according to the TRACE level
* @param msg The message to be logged
*/
static void Trace(const String & msg);
static inline Bool HasTrace()
{
return Flags() & Log::TRACE;
}
/** Divert the output to a file
* @param file The filename where the log will be written
*/
static void SetFile(const FileName & file);
/** Set the level flags for the messages logged to the file
* @param flags An integer built from ORed level flags
*/
static void Show(Severity flags);
/** Get the current level flags
* @return An integer built from ORed level flags
*/
static Severity Flags();
/** Flush pending messages
* @internal
*/
static void Flush();
/** Does Log show repeated messages or not
* If repeat is false then Log shows every messages it receives
* even if they are identical to the previous ones.
* If repeat is true then Log only shows the first message
* and a message couting how much identical messages were
* received after that.
*/
static void Repeat( Bool repeat );
/** Color accessors. */
static void SetColor(const Log::Severity severity,
const TTY::Color color);
static void SetColor(const Log::Severity severity,
const String & color);
static String GetColor(const Log::Severity severity);
#ifndef SWIG
struct Entry
{
Severity sev_;
String msg_;
Entry(Severity sev, String msg) : sev_(sev), msg_(msg) {}
Entry() : sev_(0), msg_() {}
Bool operator== (const Entry & other) const
{
return (this->sev_ == other.sev_) && (this->msg_ == other.msg_);
}
}; /* end struct Entry */
#endif
~Log();
private:
Log();
void push(const Entry & entry);
void printRepeatedMessage(const Entry & entry);
void flush();
void repeat( Bool r );
void setColor(const Log::Severity severity,
const String & color);
String getColor(const Log::Severity severity) const;
/** Set the name of the log file */
void setFile(const FileName & file);
/** Human readable log */
mutable std::map<Severity, _Prefix > logName_;
/** The environment variable name */
const char * openturnsLogSeverityVariableName_;
/** Set Severity according to Openturns LogSeverity Variable */
void initSeverityFromEnvironment();
/** The file where to write messages */
std::ostream * p_file_;
/** Remember the previous message */
mutable Entry previousMessage_;
mutable UnsignedLong count_;
mutable AtomicInt repeat_;
friend struct Log_init; /* friendship for static member initialization */
}; /* end class Log */
/** This struct initializes all static members of Log */
struct Log_init
{
Log_init();
~Log_init();
}; /* end struct Log_init */
static Log_init __Log_initializer;
END_NAMESPACE_OPENTURNS
#endif /* OPENTURNS_LOG_HXX */
|