summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/include/assimp/DefaultLogger.hpp
blob: 390363dd1366d3e23bdfbd40329e537b77b811ea (plain)
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
/*
Open Asset Import Library (assimp)
----------------------------------------------------------------------

Copyright (c) 2006-2012, assimp team
All rights reserved.

Redistribution and use of this software 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 assimp team, nor the names of its
  contributors may be used to endorse or promote products
  derived from this software without specific prior
  written permission of the assimp team.

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 COPYRIGHT 
OWNER OR CONTRIBUTORS 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.

----------------------------------------------------------------------
*/
/** @file DefaultLogger.h
*/

#ifndef INCLUDED_AI_DEFAULTLOGGER
#define INCLUDED_AI_DEFAULTLOGGER

#include "Logger.hpp"
#include "LogStream.hpp"
#include "NullLogger.hpp"
#include <vector>

namespace Assimp	{
// ------------------------------------------------------------------------------------
class IOStream;
struct LogStreamInfo;

/** default name of logfile */
#define ASSIMP_DEFAULT_LOG_NAME "AssimpLog.txt"

// ------------------------------------------------------------------------------------
/** @brief CPP-API: Primary logging facility of Assimp. 
 *
 *  The library stores its primary #Logger as a static member of this class.
 *  #get() returns this primary logger. By default the underlying implementation is
 *  just a #NullLogger which rejects all log messages. By calling #create(), logging
 *  is turned on. To capture the log output multiple log streams (#LogStream) can be
 *  attach to the logger. Some default streams for common streaming locations (such as
 *  a file, std::cout, OutputDebugString()) are also provided.
 *  
 *  If you wish to customize the logging at an even deeper level supply your own
 *  implementation of #Logger to #set().
 *  @note The whole logging stuff causes a small extra overhead for all imports. */
class ASSIMP_API DefaultLogger :
	public Logger	{

public:

	// ----------------------------------------------------------------------
	/** @brief Creates a logging instance.
	 *  @param name Name for log file. Only valid in combination
	 *    with the aiDefaultLogStream_FILE flag. 
	 *  @param severity	Log severity, VERBOSE turns on debug messages
	 *  @param defStreams  Default log streams to be attached. Any bitwise
	 *    combination of the aiDefaultLogStream enumerated values. 
	 *    If #aiDefaultLogStream_FILE is specified but an empty string is
	 *    passed for 'name', no log file is created at all.
	 *  @param  io IOSystem to be used to open external files (such as the 
	 *   log file). Pass NULL to rely on the default implementation.
	 *  This replaces the default #NullLogger with a #DefaultLogger instance. */
	static Logger *create(const char* name = ASSIMP_DEFAULT_LOG_NAME,
		LogSeverity severity    = NORMAL,
		unsigned int defStreams = aiDefaultLogStream_DEBUGGER | aiDefaultLogStream_FILE,
		IOSystem* io		    = NULL);

	// ----------------------------------------------------------------------
	/** @brief Setup a custom #Logger implementation.
	 *
	 *  Use this if the provided #DefaultLogger class doesn't fit into
	 *  your needs. If the provided message formatting is OK for you,
	 *  it's much easier to use #create() and to attach your own custom 
	 *  output streams to it.
	 *  @param logger Pass NULL to setup a default NullLogger*/
	static void set (Logger *logger);
	
	// ----------------------------------------------------------------------
	/** @brief	Getter for singleton instance
	 *	 @return Only instance. This is never null, but it could be a 
	 *  NullLogger. Use isNullLogger to check this.*/
	static Logger *get();

	// ----------------------------------------------------------------------
	/** @brief  Return whether a #NullLogger is currently active
	 *  @return true if the current logger is a #NullLogger.
	 *  Use create() or set() to setup a logger that does actually do
	 *  something else than just rejecting all log messages. */
	static bool isNullLogger();
	
	// ----------------------------------------------------------------------
	/** @brief	Kills the current singleton logger and replaces it with a
	 *  #NullLogger instance. */
	static void kill();
	
	// ----------------------------------------------------------------------
	/**	@copydoc Logger::attachStream   */
	bool attachStream(LogStream *pStream,
		unsigned int severity);

	// ----------------------------------------------------------------------
	/**	@copydoc Logger::detatchStream */
	bool detatchStream(LogStream *pStream, 
		unsigned int severity);


private:

	// ----------------------------------------------------------------------
	/** @briefPrivate construction for internal use by create().
	 *  @param severity Logging granularity  */
	DefaultLogger(LogSeverity severity);
	
	// ----------------------------------------------------------------------
	/**	@briefDestructor	*/
	~DefaultLogger();

private:

	/**	@brief	Logs debug infos, only been written when severity level VERBOSE is set */
	void OnDebug(const char* message);

	/**	@brief	Logs an info message */
	void OnInfo(const char*  message);

	/**	@brief	Logs a warning message */
	void OnWarn(const char*  message);
	
	/**	@brief	Logs an error message */
	void OnError(const char* message);

	// ----------------------------------------------------------------------
	/**	@brief Writes a message to all streams */
	void WriteToStreams(const char* message, ErrorSeverity ErrorSev );

	// ----------------------------------------------------------------------
	/** @brief Returns the thread id.
	 *	@note This is an OS specific feature, if not supported, a 
	 *    zero will be returned.
	 */
	unsigned int GetThreadID();

private:
	//	Aliases for stream container
	typedef std::vector<LogStreamInfo*>	StreamArray;
	typedef std::vector<LogStreamInfo*>::iterator StreamIt;
	typedef std::vector<LogStreamInfo*>::const_iterator ConstStreamIt;

	//!	only logging instance
	static Logger *m_pLogger;
	static NullLogger s_pNullLogger;

	//!	Attached streams
	StreamArray	m_StreamArray;

	bool noRepeatMsg;
	char lastMsg[MAX_LOG_MESSAGE_LENGTH*2];
	size_t lastLen;
};
// ------------------------------------------------------------------------------------

} // Namespace Assimp

#endif // !! INCLUDED_AI_DEFAULTLOGGER