2015-05-19 03:48:29 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2022-01-10 20:13:43 +00:00
|
|
|
Copyright (c) 2006-2022, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2017-05-09 17:57:36 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
2015-05-19 03:48:29 +00:00
|
|
|
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.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-05-19 03:48:29 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
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
|
2015-05-19 03:48:29 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file DefaultLogger.cpp
|
|
|
|
* @brief Implementation of DefaultLogger (and Logger)
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Default log streams
|
|
|
|
#include "FileLogStream.h"
|
2020-06-23 19:05:42 +00:00
|
|
|
#include "StdOStreamLogStream.h"
|
|
|
|
#include "Win32DebugLogStream.h"
|
2018-01-06 00:18:33 +00:00
|
|
|
#include <assimp/StringUtils.h>
|
2017-02-28 02:31:56 +00:00
|
|
|
|
|
|
|
#include <assimp/DefaultIOSystem.h>
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/ai_assert.h>
|
2015-05-19 03:48:29 +00:00
|
|
|
#include <stdio.h>
|
2020-06-23 19:05:42 +00:00
|
|
|
#include <assimp/DefaultLogger.hpp>
|
|
|
|
#include <assimp/NullLogger.hpp>
|
|
|
|
#include <iostream>
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_SINGLETHREADED
|
2020-06-23 19:05:42 +00:00
|
|
|
#include <mutex>
|
|
|
|
#include <thread>
|
|
|
|
std::mutex loggerMutex;
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
namespace Assimp {
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
|
|
|
NullLogger DefaultLogger::s_pNullLogger;
|
|
|
|
Logger *DefaultLogger::m_pLogger = &DefaultLogger::s_pNullLogger;
|
|
|
|
|
|
|
|
static const unsigned int SeverityAll = Logger::Info | Logger::Err | Logger::Warn | Logger::Debugging;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
|
|
|
// Represents a log-stream + its error severity
|
2018-03-20 13:53:57 +00:00
|
|
|
struct LogStreamInfo {
|
2020-06-23 19:05:42 +00:00
|
|
|
unsigned int m_uiErrorSeverity;
|
|
|
|
LogStream *m_pStream;
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// Constructor
|
2020-06-23 19:05:42 +00:00
|
|
|
LogStreamInfo(unsigned int uiErrorSev, LogStream *pStream) :
|
|
|
|
m_uiErrorSeverity(uiErrorSev),
|
|
|
|
m_pStream(pStream) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// empty
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destructor
|
2018-03-20 13:53:57 +00:00
|
|
|
~LogStreamInfo() {
|
2015-05-19 03:57:13 +00:00
|
|
|
delete m_pStream;
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
|
|
|
// Construct a default log stream
|
2020-06-23 19:05:42 +00:00
|
|
|
LogStream *LogStream::createDefaultStream(aiDefaultLogStream streams,
|
|
|
|
const char *name /*= "AssimpLog.txt"*/,
|
|
|
|
IOSystem *io /*= nullptr*/) {
|
|
|
|
switch (streams) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// This is a platform-specific feature
|
|
|
|
case aiDefaultLogStream_DEBUGGER:
|
2015-05-19 03:48:29 +00:00
|
|
|
#ifdef WIN32
|
2015-05-19 03:57:13 +00:00
|
|
|
return new Win32DebugLogStream();
|
2015-05-19 03:48:29 +00:00
|
|
|
#else
|
2018-03-20 13:53:57 +00:00
|
|
|
return nullptr;
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
|
2019-11-16 14:51:26 +00:00
|
|
|
// Platform-independent default streams
|
2015-05-19 03:57:13 +00:00
|
|
|
case aiDefaultLogStream_STDERR:
|
|
|
|
return new StdOStreamLogStream(std::cerr);
|
|
|
|
case aiDefaultLogStream_STDOUT:
|
|
|
|
return new StdOStreamLogStream(std::cout);
|
|
|
|
case aiDefaultLogStream_FILE:
|
2020-06-23 19:05:42 +00:00
|
|
|
return (name && *name ? new FileLogStream(name, io) : nullptr);
|
2015-05-19 03:57:13 +00:00
|
|
|
default:
|
|
|
|
// We don't know this default log stream, so raise an assertion
|
|
|
|
ai_assert(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
// For compilers without dead code path detection
|
2019-11-16 14:51:26 +00:00
|
|
|
return nullptr;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Creates the only singleton instance
|
2020-06-23 19:05:42 +00:00
|
|
|
Logger *DefaultLogger::create(const char *name /*= "AssimpLog.txt"*/,
|
|
|
|
LogSeverity severity /*= NORMAL*/,
|
|
|
|
unsigned int defStreams /*= aiDefaultLogStream_DEBUGGER | aiDefaultLogStream_FILE*/,
|
|
|
|
IOSystem *io /*= nullptr*/) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// enter the mutex here to avoid concurrency problems
|
2015-05-19 03:48:29 +00:00
|
|
|
#ifndef ASSIMP_BUILD_SINGLETHREADED
|
2016-04-05 20:27:40 +00:00
|
|
|
std::lock_guard<std::mutex> lock(loggerMutex);
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
if (m_pLogger && !isNullLogger()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
delete m_pLogger;
|
2018-03-20 13:53:57 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
m_pLogger = new DefaultLogger(severity);
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// Attach default log streams
|
|
|
|
// Stream the log to the MSVC debugger?
|
2020-06-23 19:05:42 +00:00
|
|
|
if (defStreams & aiDefaultLogStream_DEBUGGER) {
|
|
|
|
m_pLogger->attachStream(LogStream::createDefaultStream(aiDefaultLogStream_DEBUGGER));
|
2018-03-20 13:53:57 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// Stream the log to COUT?
|
2020-06-23 19:05:42 +00:00
|
|
|
if (defStreams & aiDefaultLogStream_STDOUT) {
|
|
|
|
m_pLogger->attachStream(LogStream::createDefaultStream(aiDefaultLogStream_STDOUT));
|
2018-03-20 13:53:57 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// Stream the log to CERR?
|
2020-06-23 19:05:42 +00:00
|
|
|
if (defStreams & aiDefaultLogStream_STDERR) {
|
|
|
|
m_pLogger->attachStream(LogStream::createDefaultStream(aiDefaultLogStream_STDERR));
|
2018-03-20 13:53:57 +00:00
|
|
|
}
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// Stream the log to a file
|
2020-06-23 19:05:42 +00:00
|
|
|
if (defStreams & aiDefaultLogStream_FILE && name && *name) {
|
|
|
|
m_pLogger->attachStream(LogStream::createDefaultStream(aiDefaultLogStream_FILE, name, io));
|
2018-03-20 13:53:57 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
return m_pLogger;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
void Logger::debug(const char *message) {
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// SECURITY FIX: otherwise it's easy to produce overruns since
|
|
|
|
// sometimes importers will include data from the input file
|
|
|
|
// (i.e. node names) in their messages.
|
2020-06-23 19:05:42 +00:00
|
|
|
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
|
2021-05-08 02:32:32 +00:00
|
|
|
return OnDebug("<fixme: long message discarded>");
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
return OnDebug(message);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-05-15 11:47:27 +00:00
|
|
|
void Logger::verboseDebug(const char *message) {
|
|
|
|
|
2021-05-13 09:08:59 +00:00
|
|
|
// SECURITY FIX: see above
|
2020-06-23 19:05:42 +00:00
|
|
|
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
|
2021-05-08 02:32:32 +00:00
|
|
|
return OnVerboseDebug("<fixme: long message discarded>");
|
2020-06-23 19:05:42 +00:00
|
|
|
}
|
|
|
|
return OnVerboseDebug(message);
|
2020-05-15 11:47:27 +00:00
|
|
|
}
|
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
void Logger::info(const char *message) {
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// SECURITY FIX: see above
|
2020-06-23 19:05:42 +00:00
|
|
|
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
|
2021-05-08 02:32:32 +00:00
|
|
|
return OnInfo("<fixme: long message discarded>");
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
return OnInfo(message);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
void Logger::warn(const char *message) {
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// SECURITY FIX: see above
|
2020-06-23 19:05:42 +00:00
|
|
|
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
|
2021-05-08 02:32:32 +00:00
|
|
|
return OnWarn("<fixme: long message discarded>");
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
return OnWarn(message);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
void Logger::error(const char *message) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// SECURITY FIX: see above
|
2020-06-23 19:05:42 +00:00
|
|
|
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
|
2021-05-08 02:32:32 +00:00
|
|
|
return OnError("<fixme: long message discarded>");
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
return OnError(message);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
void DefaultLogger::set(Logger *logger) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// enter the mutex here to avoid concurrency problems
|
2015-05-19 03:48:29 +00:00
|
|
|
#ifndef ASSIMP_BUILD_SINGLETHREADED
|
2016-04-05 20:27:40 +00:00
|
|
|
std::lock_guard<std::mutex> lock(loggerMutex);
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
if (nullptr == logger) {
|
2018-03-20 13:53:57 +00:00
|
|
|
logger = &s_pNullLogger;
|
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
if (nullptr != m_pLogger && !isNullLogger()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
delete m_pLogger;
|
2018-03-20 13:53:57 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
DefaultLogger::m_pLogger = logger;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2018-03-20 13:53:57 +00:00
|
|
|
bool DefaultLogger::isNullLogger() {
|
2015-05-19 03:57:13 +00:00
|
|
|
return m_pLogger == &s_pNullLogger;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2016-01-03 22:29:37 +00:00
|
|
|
Logger *DefaultLogger::get() {
|
2015-05-19 03:57:13 +00:00
|
|
|
return m_pLogger;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Kills the only instance
|
2018-03-20 13:53:57 +00:00
|
|
|
void DefaultLogger::kill() {
|
2015-05-19 03:57:13 +00:00
|
|
|
// enter the mutex here to avoid concurrency problems
|
2015-05-19 03:48:29 +00:00
|
|
|
#ifndef ASSIMP_BUILD_SINGLETHREADED
|
2016-04-05 20:27:40 +00:00
|
|
|
std::lock_guard<std::mutex> lock(loggerMutex);
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
if (m_pLogger == &s_pNullLogger) {
|
|
|
|
return;
|
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
delete m_pLogger;
|
|
|
|
m_pLogger = &s_pNullLogger;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Debug message
|
2020-06-23 19:05:42 +00:00
|
|
|
void DefaultLogger::OnDebug(const char *message) {
|
2020-10-22 20:26:29 +00:00
|
|
|
if (m_Severity < Logger::DEBUGGING) {
|
2018-03-20 13:53:57 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
static const size_t Size = MAX_LOG_MESSAGE_LENGTH + 16;
|
|
|
|
char msg[Size];
|
|
|
|
ai_snprintf(msg, Size, "Debug, T%u: %s", GetThreadID(), message);
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
WriteToStreams(msg, Logger::Debugging);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 11:47:27 +00:00
|
|
|
// Verbose debug message
|
|
|
|
void DefaultLogger::OnVerboseDebug(const char *message) {
|
2020-06-23 19:05:42 +00:00
|
|
|
if (m_Severity < Logger::VERBOSE) {
|
|
|
|
return;
|
|
|
|
}
|
2020-05-15 11:47:27 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
static const size_t Size = MAX_LOG_MESSAGE_LENGTH + 16;
|
|
|
|
char msg[Size];
|
|
|
|
ai_snprintf(msg, Size, "Debug, T%u: %s", GetThreadID(), message);
|
2020-05-15 11:47:27 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
WriteToStreams(msg, Logger::Debugging);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Logs an info
|
2020-06-23 19:05:42 +00:00
|
|
|
void DefaultLogger::OnInfo(const char *message) {
|
|
|
|
static const size_t Size = MAX_LOG_MESSAGE_LENGTH + 16;
|
|
|
|
char msg[Size];
|
|
|
|
ai_snprintf(msg, Size, "Info, T%u: %s", GetThreadID(), message);
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
WriteToStreams(msg, Logger::Info);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Logs a warning
|
2020-06-23 19:05:42 +00:00
|
|
|
void DefaultLogger::OnWarn(const char *message) {
|
|
|
|
static const size_t Size = MAX_LOG_MESSAGE_LENGTH + 16;
|
|
|
|
char msg[Size];
|
|
|
|
ai_snprintf(msg, Size, "Warn, T%u: %s", GetThreadID(), message);
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
WriteToStreams(msg, Logger::Warn);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Logs an error
|
2020-06-23 19:05:42 +00:00
|
|
|
void DefaultLogger::OnError(const char *message) {
|
|
|
|
static const size_t Size = MAX_LOG_MESSAGE_LENGTH + 16;
|
|
|
|
char msg[Size];
|
|
|
|
ai_snprintf(msg, Size, "Error, T%u: %s", GetThreadID(), message);
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
WriteToStreams(msg, Logger::Err);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Will attach a new stream
|
2020-06-23 19:05:42 +00:00
|
|
|
bool DefaultLogger::attachStream(LogStream *pStream, unsigned int severity) {
|
|
|
|
if (nullptr == pStream) {
|
2015-05-19 03:57:13 +00:00
|
|
|
return false;
|
2018-03-20 13:53:57 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
if (0 == severity) {
|
2015-05-19 03:57:13 +00:00
|
|
|
severity = Logger::Info | Logger::Err | Logger::Warn | Logger::Debugging;
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
for (StreamIt it = m_StreamArray.begin();
|
|
|
|
it != m_StreamArray.end();
|
|
|
|
++it) {
|
|
|
|
if ((*it)->m_pStream == pStream) {
|
2015-05-19 03:57:13 +00:00
|
|
|
(*it)->m_uiErrorSeverity |= severity;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
LogStreamInfo *pInfo = new LogStreamInfo(severity, pStream);
|
|
|
|
m_StreamArray.push_back(pInfo);
|
2015-05-19 03:57:13 +00:00
|
|
|
return true;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2016-01-06 14:35:25 +00:00
|
|
|
// Detach a stream
|
2020-06-23 19:05:42 +00:00
|
|
|
bool DefaultLogger::detachStream(LogStream *pStream, unsigned int severity) {
|
|
|
|
if (nullptr == pStream) {
|
2015-05-19 03:57:13 +00:00
|
|
|
return false;
|
2018-03-20 13:53:57 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
if (0 == severity) {
|
2015-05-19 03:57:13 +00:00
|
|
|
severity = SeverityAll;
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
bool res(false);
|
|
|
|
for (StreamIt it = m_StreamArray.begin(); it != m_StreamArray.end(); ++it) {
|
|
|
|
if ((*it)->m_pStream == pStream) {
|
2015-05-19 03:57:13 +00:00
|
|
|
(*it)->m_uiErrorSeverity &= ~severity;
|
2020-06-23 19:05:42 +00:00
|
|
|
if ((*it)->m_uiErrorSeverity == 0) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// don't delete the underlying stream 'cause the caller gains ownership again
|
2018-03-20 13:53:57 +00:00
|
|
|
(**it).m_pStream = nullptr;
|
2015-05-19 03:57:13 +00:00
|
|
|
delete *it;
|
2020-06-23 19:05:42 +00:00
|
|
|
m_StreamArray.erase(it);
|
2018-03-20 13:53:57 +00:00
|
|
|
res = true;
|
2015-05-19 03:57:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2018-03-20 13:53:57 +00:00
|
|
|
return res;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Constructor
|
2020-06-23 19:05:42 +00:00
|
|
|
DefaultLogger::DefaultLogger(LogSeverity severity) :
|
|
|
|
Logger(severity), noRepeatMsg(false), lastLen(0) {
|
2015-05-19 03:57:13 +00:00
|
|
|
lastMsg[0] = '\0';
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Destructor
|
2018-03-20 13:53:57 +00:00
|
|
|
DefaultLogger::~DefaultLogger() {
|
2020-06-23 19:05:42 +00:00
|
|
|
for (StreamIt it = m_StreamArray.begin(); it != m_StreamArray.end(); ++it) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// also frees the underlying stream, we are its owner.
|
|
|
|
delete *it;
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Writes message to stream
|
2020-06-23 19:05:42 +00:00
|
|
|
void DefaultLogger::WriteToStreams(const char *message, ErrorSeverity ErrorSev) {
|
2018-03-20 13:53:57 +00:00
|
|
|
ai_assert(nullptr != message);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// Check whether this is a repeated message
|
2022-01-17 14:59:17 +00:00
|
|
|
auto thisLen = ::strlen(message);
|
|
|
|
if (thisLen == lastLen - 1 && !::strncmp(message, lastMsg, lastLen - 1)) {
|
2020-06-23 19:05:42 +00:00
|
|
|
if (!noRepeatMsg) {
|
2015-05-19 03:57:13 +00:00
|
|
|
noRepeatMsg = true;
|
|
|
|
message = "Skipping one or more lines with the same contents\n";
|
2022-01-17 14:59:17 +00:00
|
|
|
}
|
|
|
|
return;
|
2020-06-23 19:05:42 +00:00
|
|
|
} else {
|
2015-05-19 03:57:13 +00:00
|
|
|
// append a new-line character to the message to be printed
|
2022-01-17 14:59:17 +00:00
|
|
|
lastLen = thisLen;
|
2020-06-23 19:05:42 +00:00
|
|
|
::memcpy(lastMsg, message, lastLen + 1);
|
|
|
|
::strcat(lastMsg + lastLen, "\n");
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
message = lastMsg;
|
|
|
|
noRepeatMsg = false;
|
|
|
|
++lastLen;
|
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
for (ConstStreamIt it = m_StreamArray.begin();
|
|
|
|
it != m_StreamArray.end();
|
|
|
|
++it) {
|
|
|
|
if (ErrorSev & (*it)->m_uiErrorSeverity)
|
|
|
|
(*it)->m_pStream->write(message);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2015-05-19 03:57:13 +00:00
|
|
|
// Returns thread id, if not supported only a zero will be returned.
|
2020-06-23 19:05:42 +00:00
|
|
|
unsigned int DefaultLogger::GetThreadID() {
|
2016-04-05 20:27:40 +00:00
|
|
|
// fixme: we can get this value via std::threads
|
|
|
|
// std::this_thread::get_id().hash() returns a (big) size_t, not sure if this is useful in this case.
|
2015-05-19 03:48:29 +00:00
|
|
|
#ifdef WIN32
|
2015-05-19 03:57:13 +00:00
|
|
|
return (unsigned int)::GetCurrentThreadId();
|
2015-05-19 03:48:29 +00:00
|
|
|
#else
|
2015-05-19 03:57:13 +00:00
|
|
|
return 0; // not supported
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
} // namespace Assimp
|