123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- /*
- Open Asset Import Library (assimp)
- ----------------------------------------------------------------------
- Copyright (c) 2006-2025, 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 Logger.hpp
- * @brief Abstract base class 'Logger', base of the logging system.
- */
- #pragma once
- #ifndef INCLUDED_AI_LOGGER_H
- #define INCLUDED_AI_LOGGER_H
- #include <assimp/types.h>
- #include <assimp/TinyFormatter.h>
- namespace Assimp {
- class LogStream;
- // Maximum length of a log message. Longer messages are rejected.
- #define MAX_LOG_MESSAGE_LENGTH 1024u
- // ----------------------------------------------------------------------------------
- /** @brief CPP-API: Abstract interface for logger implementations.
- * Assimp provides a default implementation and uses it for almost all
- * logging stuff ('DefaultLogger'). This class defines just basic logging
- * behavior and is not of interest for you. Instead, take a look at #DefaultLogger. */
- class ASSIMP_API Logger
- #ifndef SWIG
- : public Intern::AllocateFromAssimpHeap
- #endif
- {
- public:
- // ----------------------------------------------------------------------
- /** @enum LogSeverity
- * @brief Log severity to describe the granularity of logging.
- */
- enum LogSeverity {
- NORMAL, ///< Normal granularity of logging
- DEBUGGING, ///< Debug messages will be logged, but not verbose debug messages.
- VERBOSE ///< All messages will be logged
- };
- // ----------------------------------------------------------------------
- /** @enum ErrorSeverity
- * @brief Description for severity of a log message.
- *
- * Every LogStream has a bitwise combination of these flags.
- * A LogStream doesn't receive any messages of a specific type
- * if it doesn't specify the corresponding ErrorSeverity flag.
- */
- enum ErrorSeverity {
- Debugging = 1, //!< Debug log message
- Info = 2, //!< Info log message
- Warn = 4, //!< Warn log message
- Err = 8 //!< Error log message
- };
- /** @brief Virtual destructor */
- virtual ~Logger();
- // ----------------------------------------------------------------------
- /** @brief Writes a debug message
- * @param message Debug message*/
- void debug(const char* message);
- template<typename... T>
- void debug(T&&... args) {
- debug(formatMessage(std::forward<T>(args)...).c_str());
- }
- // ----------------------------------------------------------------------
- /** @brief Writes a debug message
- * @param message Debug message*/
- void verboseDebug(const char* message);
- template<typename... T>
- void verboseDebug(T&&... args) {
- verboseDebug(formatMessage(std::forward<T>(args)...).c_str());
- }
- // ----------------------------------------------------------------------
- /** @brief Writes a info message
- * @param message Info message*/
- void info(const char* message);
- template<typename... T>
- void info(T&&... args) {
- info(formatMessage(std::forward<T>(args)...).c_str());
- }
- // ----------------------------------------------------------------------
- /** @brief Writes a warning message
- * @param message Warn message*/
- void warn(const char* message);
- template<typename... T>
- void warn(T&&... args) {
- warn(formatMessage(std::forward<T>(args)...).c_str());
- }
- // ----------------------------------------------------------------------
- /** @brief Writes an error message
- * @param message Error message*/
- void error(const char* message);
- template<typename... T>
- void error(T&&... args) {
- error(formatMessage(std::forward<T>(args)...).c_str());
- }
- // ----------------------------------------------------------------------
- /** @brief Set a new log severity.
- * @param log_severity New severity for logging*/
- void setLogSeverity(LogSeverity log_severity);
- // ----------------------------------------------------------------------
- /** @brief Get the current log severity*/
- LogSeverity getLogSeverity() const;
- // ----------------------------------------------------------------------
- /** @brief Attach a new log-stream
- *
- * The logger takes ownership of the stream and is responsible
- * for its destruction (which is done using ::delete when the logger
- * itself is destroyed). Call detachStream to detach a stream and to
- * gain ownership of it again.
- * @param pStream Log-stream to attach
- * @param severity Message filter, specified which types of log
- * messages are dispatched to the stream. Provide a bitwise
- * combination of the ErrorSeverity flags.
- * @return true if the stream has been attached, false otherwise.*/
- virtual bool attachStream(LogStream *pStream,
- unsigned int severity = Debugging | Err | Warn | Info) = 0;
- // ----------------------------------------------------------------------
- /** @brief Detach a still attached stream from the logger (or
- * modify the filter flags bits)
- * @param pStream Log-stream instance for detaching
- * @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.
- * @return true if the stream has been detached, false otherwise.*/
- virtual bool detachStream(LogStream *pStream,
- unsigned int severity = Debugging | Err | Warn | Info) = 0;
- protected:
- /**
- * Default constructor
- */
- Logger() AI_NO_EXCEPT;
- /**
- * Construction with a given log severity
- */
- explicit Logger(LogSeverity severity);
- // ----------------------------------------------------------------------
- /**
- * @brief Called as a request to write a specific debug message
- * @param message Debug message. Never longer than
- * MAX_LOG_MESSAGE_LENGTH characters (excluding the '0').
- * @note The message string is only valid until the scope of
- * the function is left.
- */
- virtual void OnDebug(const char* message)= 0;
- // ----------------------------------------------------------------------
- /**
- * @brief Called as a request to write a specific verbose debug message
- * @param message Debug message. Never longer than
- * MAX_LOG_MESSAGE_LENGTH characters (excluding the '0').
- * @note The message string is only valid until the scope of
- * the function is left.
- */
- virtual void OnVerboseDebug(const char *message) = 0;
- // ----------------------------------------------------------------------
- /**
- * @brief Called as a request to write a specific info message
- * @param message Info message. Never longer than
- * MAX_LOG_MESSAGE_LENGTH characters (ecxluding the '0').
- * @note The message string is only valid until the scope of
- * the function is left.
- */
- virtual void OnInfo(const char* message) = 0;
- // ----------------------------------------------------------------------
- /**
- * @brief Called as a request to write a specific warn message
- * @param message Warn message. Never longer than
- * MAX_LOG_MESSAGE_LENGTH characters (exluding the '0').
- * @note The message string is only valid until the scope of
- * the function is left.
- */
- virtual void OnWarn(const char* essage) = 0;
- // ----------------------------------------------------------------------
- /**
- * @brief Called as a request to write a specific error message
- * @param message Error message. Never longer than
- * MAX_LOG_MESSAGE_LENGTH characters (exluding the '0').
- * @note The message string is only valid until the scope of
- * the function is left.
- */
- virtual void OnError(const char* message) = 0;
- protected:
- std::string formatMessage(Assimp::Formatter::format f) {
- return f;
- }
- template<typename... T, typename U>
- std::string formatMessage(Assimp::Formatter::format f, U&& u, T&&... args) {
- return formatMessage(std::move(f << std::forward<U>(u)), std::forward<T>(args)...);
- }
- protected:
- LogSeverity m_Severity;
- };
- // ----------------------------------------------------------------------------------
- inline Logger::Logger() AI_NO_EXCEPT :
- m_Severity(NORMAL) {
- // empty
- }
- // ----------------------------------------------------------------------------------
- inline Logger::~Logger() = default;
- // ----------------------------------------------------------------------------------
- inline Logger::Logger(LogSeverity severity) :
- m_Severity(severity) {
- // empty
- }
- // ----------------------------------------------------------------------------------
- inline void Logger::setLogSeverity(LogSeverity log_severity){
- m_Severity = log_severity;
- }
- // ----------------------------------------------------------------------------------
- // Log severity getter
- inline Logger::LogSeverity Logger::getLogSeverity() const {
- return m_Severity;
- }
- } // Namespace Assimp
- // ------------------------------------------------------------------------------------------------
- #define ASSIMP_LOG_WARN(...) \
- Assimp::DefaultLogger::get()->warn(__VA_ARGS__)
- #define ASSIMP_LOG_ERROR(...) \
- Assimp::DefaultLogger::get()->error(__VA_ARGS__)
- #define ASSIMP_LOG_DEBUG(...) \
- Assimp::DefaultLogger::get()->debug(__VA_ARGS__)
- #define ASSIMP_LOG_VERBOSE_DEBUG(...) \
- Assimp::DefaultLogger::get()->verboseDebug(__VA_ARGS__)
- #define ASSIMP_LOG_INFO(...) \
- Assimp::DefaultLogger::get()->info(__VA_ARGS__)
- #endif // !! INCLUDED_AI_LOGGER_H
|