2008-06-22 10:09:26 +00:00
|
|
|
/*
|
|
|
|
Open Asset Import Library (ASSIMP)
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Copyright (c) 2006-2008, ASSIMP Development 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 Development 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.
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @file Logger.h
|
|
|
|
* @brief Abstract base class 'Logger', base of the logging system.
|
2009-01-12 22:06:54 +00:00
|
|
|
*/
|
2008-05-07 21:33:35 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
#ifndef INCLUDED_AI_LOGGER_H
|
|
|
|
#define INCLUDED_AI_LOGGER_H
|
2008-05-07 21:33:35 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
#include "aiTypes.h"
|
|
|
|
namespace Assimp {
|
2008-05-07 21:33:35 +00:00
|
|
|
|
|
|
|
class LogStream;
|
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// ----------------------------------------------------------------------------------
|
2008-05-07 21:33:35 +00:00
|
|
|
/** @class Logger
|
|
|
|
* @brief Abstract interface for logger implementations.
|
2009-01-12 22:06:54 +00:00
|
|
|
* Assimp provides a default implementation ('DefaultLogger').
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
2009-01-12 22:06:54 +00:00
|
|
|
class ASSIMP_API Logger : public Intern::AllocateFromAssimpHeap
|
2008-05-07 21:33:35 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** @enum LogSeverity
|
2009-01-13 18:58:07 +00:00
|
|
|
* @brief Log severity to describe the granularity of logging.
|
2009-01-12 22:06:54 +00:00
|
|
|
*
|
|
|
|
* This is a general property of a Logger instance, NORMAL means
|
|
|
|
* that debug messages are rejected immediately.
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
|
|
|
enum LogSeverity
|
|
|
|
{
|
2009-01-12 22:06:54 +00:00
|
|
|
NORMAL, //!< Normal granularity of logging
|
2008-05-07 21:33:35 +00:00
|
|
|
VERBOSE //!< Debug infos will be logged, too
|
|
|
|
};
|
|
|
|
|
|
|
|
/** @enum ErrorSeverity
|
2009-01-12 22:06:54 +00:00
|
|
|
* @brief Description for severity of a log message.
|
|
|
|
*
|
2009-01-13 18:58:07 +00:00
|
|
|
* Every LogStream has a bitwise combination of these flags.
|
2009-01-12 22:06:54 +00:00
|
|
|
* A LogStream doesn't receive any messages of a specific type
|
|
|
|
* if it doesn't specify the corresponding ErrorSeverity flag.
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
|
|
|
enum ErrorSeverity
|
|
|
|
{
|
|
|
|
DEBUGGING = 1, //!< Debug log message
|
|
|
|
INFO = 2, //!< Info log message
|
|
|
|
WARN = 4, //!< Warn log message
|
|
|
|
ERR = 8 //!< Error log message
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @brief Virtual destructor */
|
2008-05-07 21:33:35 +00:00
|
|
|
virtual ~Logger();
|
|
|
|
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @brief Writes a debug message
|
|
|
|
* @param message Debug message
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
|
|
|
virtual void debug(const std::string &message)= 0;
|
|
|
|
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @brief Writes a info message
|
|
|
|
* @param message Info message
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
|
|
|
virtual void info(const std::string &message) = 0;
|
|
|
|
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @brief Writes a warning message
|
|
|
|
* @param message Warn message
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
|
|
|
virtual void warn(const std::string &message) = 0;
|
|
|
|
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @brief Writes an error message
|
|
|
|
* @param message Error message
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
|
|
|
virtual void error(const std::string &message) = 0;
|
|
|
|
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @brief Set a new log severity.
|
|
|
|
* @param log_severity New severity for logging
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
|
|
|
virtual void setLogSeverity(LogSeverity log_severity) = 0;
|
|
|
|
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @brief Attach a new logstream
|
2009-01-12 22:06:54 +00:00
|
|
|
*
|
2009-01-13 18:58:07 +00:00
|
|
|
* The logger takes ownership of the stream and is responsible
|
2009-01-12 22:06:54 +00:00
|
|
|
* for its destruction (which is done when the logger itself
|
|
|
|
* is destroyed). Call detachStream to detach a stream and to
|
|
|
|
* gain ownership of it again.
|
2009-01-13 18:58:07 +00:00
|
|
|
* @param pStream Logstream to attach
|
2009-01-12 22:06:54 +00:00
|
|
|
* @param severity Message filter, specified which types of log
|
|
|
|
* messages are dispatched to the stream. Provide a bitwise
|
|
|
|
* combination of the ErrorSeverity flags.
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
2009-01-12 22:06:54 +00:00
|
|
|
virtual void attachStream(LogStream *pStream,
|
|
|
|
unsigned int severity = DEBUGGING | ERR | WARN | INFO) = 0;
|
|
|
|
|
2009-01-13 18:58:07 +00:00
|
|
|
/** @brief Detach a still attached stream from the logger (or
|
|
|
|
* modify the filter flags bits)
|
|
|
|
* @param pStream Logstream instance for detaching
|
2009-01-12 22:06:54 +00:00
|
|
|
* @param severity Provide a bitwise combination of the ErrorSeverity
|
|
|
|
* flags. This value is &~ed with the current flags of the stream,
|
|
|
|
* if the result is 0 the stream is detached from the Logger and
|
|
|
|
* the caller retakes the possession of the stream.
|
2008-05-07 21:33:35 +00:00
|
|
|
*/
|
2009-01-12 22:06:54 +00:00
|
|
|
virtual void detatchStream(LogStream *pStream,
|
|
|
|
unsigned int severity = DEBUGGING | ERR | WARN | INFO) = 0;
|
2008-05-07 21:33:35 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/** @brief Default constructor */
|
|
|
|
Logger();
|
|
|
|
};
|
2009-01-12 22:06:54 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2008-05-07 21:33:35 +00:00
|
|
|
// Default constructor
|
|
|
|
inline Logger::Logger()
|
|
|
|
{
|
|
|
|
// empty
|
|
|
|
}
|
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// ----------------------------------------------------------------------------------
|
2008-05-07 21:33:35 +00:00
|
|
|
// Virtual destructor
|
|
|
|
inline Logger::~Logger()
|
|
|
|
{
|
|
|
|
// empty
|
|
|
|
}
|
2009-01-12 22:06:54 +00:00
|
|
|
// ----------------------------------------------------------------------------------
|
2008-05-07 21:33:35 +00:00
|
|
|
|
|
|
|
} // Namespace Assimp
|
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
#endif // !! INCLUDED_AI_LOGGER_H
|