Torque3D/Engine/lib/assimp/code/Common/DefaultLogger.cpp

441 lines
14 KiB
C++
Raw Normal View History

2019-02-08 22:25:43 +00:00
/*
---------------------------------------------------------------------------
Open Asset Import Library (assimp)
---------------------------------------------------------------------------
2024-12-09 20:22:47 +00:00
Copyright (c) 2006-2024, assimp team
2019-03-05 20:39:38 +00:00
2019-02-08 22:25:43 +00:00
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.cpp
* @brief Implementation of DefaultLogger (and Logger)
*/
// Default log streams
#include "FileLogStream.h"
2022-04-26 16:56:24 +00:00
#include "StdOStreamLogStream.h"
#include "Win32DebugLogStream.h"
2019-03-05 20:39:38 +00:00
#include <assimp/StringUtils.h>
2019-02-08 22:25:43 +00:00
#include <assimp/DefaultIOSystem.h>
#include <assimp/ai_assert.h>
#include <stdio.h>
2022-04-26 16:56:24 +00:00
#include <assimp/DefaultLogger.hpp>
#include <assimp/NullLogger.hpp>
#include <iostream>
2019-02-08 22:25:43 +00:00
#ifndef ASSIMP_BUILD_SINGLETHREADED
2022-04-26 16:56:24 +00:00
#include <mutex>
#include <thread>
std::mutex loggerMutex;
2019-02-08 22:25:43 +00:00
#endif
2022-04-26 16:56:24 +00:00
namespace Assimp {
2019-02-08 22:25:43 +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
2019-03-05 20:39:38 +00:00
struct LogStreamInfo {
2022-04-26 16:56:24 +00:00
unsigned int m_uiErrorSeverity;
LogStream *m_pStream;
2019-02-08 22:25:43 +00:00
// Constructor
2022-04-26 16:56:24 +00:00
LogStreamInfo(unsigned int uiErrorSev, LogStream *pStream) :
m_uiErrorSeverity(uiErrorSev),
m_pStream(pStream) {
2019-02-08 22:25:43 +00:00
// empty
}
// Destructor
2019-03-05 20:39:38 +00:00
~LogStreamInfo() {
2019-02-08 22:25:43 +00:00
delete m_pStream;
}
};
// ----------------------------------------------------------------------------------
// Construct a default log stream
2022-04-26 16:56:24 +00:00
LogStream *LogStream::createDefaultStream(aiDefaultLogStream streams,
const char *name /*= "AssimpLog.txt"*/,
IOSystem *io /*= nullptr*/) {
switch (streams) {
2019-02-08 22:25:43 +00:00
// This is a platform-specific feature
case aiDefaultLogStream_DEBUGGER:
#ifdef WIN32
return new Win32DebugLogStream();
#else
2019-03-05 20:39:38 +00:00
return nullptr;
2019-02-08 22:25:43 +00:00
#endif
2022-04-26 16:56:24 +00:00
// Platform-independent default streams
2019-02-08 22:25:43 +00:00
case aiDefaultLogStream_STDERR:
return new StdOStreamLogStream(std::cerr);
case aiDefaultLogStream_STDOUT:
return new StdOStreamLogStream(std::cout);
case aiDefaultLogStream_FILE:
2022-04-26 16:56:24 +00:00
return (name && *name ? new FileLogStream(name, io) : nullptr);
2019-02-08 22:25:43 +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
2022-04-26 16:56:24 +00:00
return nullptr;
2019-02-08 22:25:43 +00:00
}
// ----------------------------------------------------------------------------------
// Creates the only singleton instance
2022-04-26 16:56:24 +00:00
Logger *DefaultLogger::create(const char *name /*= "AssimpLog.txt"*/,
LogSeverity severity /*= NORMAL*/,
unsigned int defStreams /*= aiDefaultLogStream_DEBUGGER | aiDefaultLogStream_FILE*/,
IOSystem *io /*= nullptr*/) {
2019-02-08 22:25:43 +00:00
// enter the mutex here to avoid concurrency problems
#ifndef ASSIMP_BUILD_SINGLETHREADED
std::lock_guard<std::mutex> lock(loggerMutex);
#endif
2022-04-26 16:56:24 +00:00
if (m_pLogger && !isNullLogger()) {
2019-02-08 22:25:43 +00:00
delete m_pLogger;
2019-03-05 20:39:38 +00:00
}
2019-02-08 22:25:43 +00:00
2022-04-26 16:56:24 +00:00
m_pLogger = new DefaultLogger(severity);
2019-02-08 22:25:43 +00:00
// Attach default log streams
// Stream the log to the MSVC debugger?
2022-04-26 16:56:24 +00:00
if (defStreams & aiDefaultLogStream_DEBUGGER) {
m_pLogger->attachStream(LogStream::createDefaultStream(aiDefaultLogStream_DEBUGGER));
2019-03-05 20:39:38 +00:00
}
2019-02-08 22:25:43 +00:00
// Stream the log to COUT?
2022-04-26 16:56:24 +00:00
if (defStreams & aiDefaultLogStream_STDOUT) {
m_pLogger->attachStream(LogStream::createDefaultStream(aiDefaultLogStream_STDOUT));
2019-03-05 20:39:38 +00:00
}
2019-02-08 22:25:43 +00:00
// Stream the log to CERR?
2022-04-26 16:56:24 +00:00
if (defStreams & aiDefaultLogStream_STDERR) {
m_pLogger->attachStream(LogStream::createDefaultStream(aiDefaultLogStream_STDERR));
2019-03-05 20:39:38 +00:00
}
2019-02-08 22:25:43 +00:00
// Stream the log to a file
2022-04-26 16:56:24 +00:00
if (defStreams & aiDefaultLogStream_FILE && name && *name) {
m_pLogger->attachStream(LogStream::createDefaultStream(aiDefaultLogStream_FILE, name, io));
2019-03-05 20:39:38 +00:00
}
2019-02-08 22:25:43 +00:00
return m_pLogger;
}
// ----------------------------------------------------------------------------------
2022-04-26 16:56:24 +00:00
void Logger::debug(const char *message) {
2019-02-08 22:25:43 +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.
2022-04-26 16:56:24 +00:00
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
return OnDebug("<fixme: long message discarded>");
2019-02-08 22:25:43 +00:00
}
return OnDebug(message);
}
// ----------------------------------------------------------------------------------
2022-04-26 16:56:24 +00:00
void Logger::verboseDebug(const char *message) {
2019-02-08 22:25:43 +00:00
// SECURITY FIX: see above
2022-04-26 16:56:24 +00:00
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
return OnVerboseDebug("<fixme: long message discarded>");
}
return OnVerboseDebug(message);
}
// ----------------------------------------------------------------------------------
void Logger::info(const char *message) {
// SECURITY FIX: see above
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
return OnInfo("<fixme: long message discarded>");
2019-02-08 22:25:43 +00:00
}
return OnInfo(message);
}
// ----------------------------------------------------------------------------------
2022-04-26 16:56:24 +00:00
void Logger::warn(const char *message) {
2019-02-08 22:25:43 +00:00
// SECURITY FIX: see above
2022-04-26 16:56:24 +00:00
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
return OnWarn("<fixme: long message discarded>");
2019-02-08 22:25:43 +00:00
}
return OnWarn(message);
}
// ----------------------------------------------------------------------------------
2022-04-26 16:56:24 +00:00
void Logger::error(const char *message) {
2019-02-08 22:25:43 +00:00
// SECURITY FIX: see above
2022-04-26 16:56:24 +00:00
if (strlen(message) > MAX_LOG_MESSAGE_LENGTH) {
return OnError("<fixme: long message discarded>");
2019-02-08 22:25:43 +00:00
}
return OnError(message);
}
// ----------------------------------------------------------------------------------
2022-04-26 16:56:24 +00:00
void DefaultLogger::set(Logger *logger) {
2019-02-08 22:25:43 +00:00
// enter the mutex here to avoid concurrency problems
#ifndef ASSIMP_BUILD_SINGLETHREADED
std::lock_guard<std::mutex> lock(loggerMutex);
#endif
2022-04-26 16:56:24 +00:00
if (nullptr == logger) {
2024-12-09 20:22:47 +00:00
m_pLogger = &s_pNullLogger;
2019-03-05 20:39:38 +00:00
}
2024-12-09 20:22:47 +00:00
else {
m_pLogger = logger;
2019-03-05 20:39:38 +00:00
}
2019-02-08 22:25:43 +00:00
}
// ----------------------------------------------------------------------------------
2019-03-05 20:39:38 +00:00
bool DefaultLogger::isNullLogger() {
2019-02-08 22:25:43 +00:00
return m_pLogger == &s_pNullLogger;
}
// ----------------------------------------------------------------------------------
Logger *DefaultLogger::get() {
return m_pLogger;
}
// ----------------------------------------------------------------------------------
// Kills the only instance
2019-03-05 20:39:38 +00:00
void DefaultLogger::kill() {
2019-02-08 22:25:43 +00:00
// enter the mutex here to avoid concurrency problems
#ifndef ASSIMP_BUILD_SINGLETHREADED
std::lock_guard<std::mutex> lock(loggerMutex);
#endif
2022-04-26 16:56:24 +00:00
if (m_pLogger == &s_pNullLogger) {
return;
}
2019-02-08 22:25:43 +00:00
delete m_pLogger;
m_pLogger = &s_pNullLogger;
}
// ----------------------------------------------------------------------------------
// Debug message
2022-04-26 16:56:24 +00:00
void DefaultLogger::OnDebug(const char *message) {
if (m_Severity < Logger::DEBUGGING) {
2019-03-05 20:39:38 +00:00
return;
}
2019-02-08 22:25:43 +00:00
2022-04-26 16:56:24 +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);
2019-02-08 22:25:43 +00:00
2022-04-26 16:56:24 +00:00
WriteToStreams(msg, Logger::Debugging);
}
// Verbose debug message
void DefaultLogger::OnVerboseDebug(const char *message) {
if (m_Severity < Logger::VERBOSE) {
return;
}
static const size_t Size = MAX_LOG_MESSAGE_LENGTH + 16;
char msg[Size];
ai_snprintf(msg, Size, "Debug, T%u: %s", GetThreadID(), message);
WriteToStreams(msg, Logger::Debugging);
2019-02-08 22:25:43 +00:00
}
// ----------------------------------------------------------------------------------
// Logs an info
2022-04-26 16:56:24 +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);
2019-02-08 22:25:43 +00:00
2022-04-26 16:56:24 +00:00
WriteToStreams(msg, Logger::Info);
2019-02-08 22:25:43 +00:00
}
// ----------------------------------------------------------------------------------
// Logs a warning
2022-04-26 16:56:24 +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);
2019-02-08 22:25:43 +00:00
2022-04-26 16:56:24 +00:00
WriteToStreams(msg, Logger::Warn);
2019-02-08 22:25:43 +00:00
}
// ----------------------------------------------------------------------------------
// Logs an error
2022-04-26 16:56:24 +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);
2019-02-08 22:25:43 +00:00
2022-04-26 16:56:24 +00:00
WriteToStreams(msg, Logger::Err);
2019-02-08 22:25:43 +00:00
}
// ----------------------------------------------------------------------------------
// Will attach a new stream
2022-04-26 16:56:24 +00:00
bool DefaultLogger::attachStream(LogStream *pStream, unsigned int severity) {
if (nullptr == pStream) {
2019-02-08 22:25:43 +00:00
return false;
2019-03-05 20:39:38 +00:00
}
2019-02-08 22:25:43 +00:00
2022-04-26 16:56:24 +00:00
if (0 == severity) {
2024-12-09 20:22:47 +00:00
severity = SeverityAll;
2019-02-08 22:25:43 +00:00
}
2024-12-09 20:22:47 +00:00
#ifndef ASSIMP_BUILD_SINGLETHREADED
std::lock_guard<std::mutex> lock(m_arrayMutex);
#endif
2022-04-26 16:56:24 +00:00
for (StreamIt it = m_StreamArray.begin();
it != m_StreamArray.end();
++it) {
if ((*it)->m_pStream == pStream) {
2019-02-08 22:25:43 +00:00
(*it)->m_uiErrorSeverity |= severity;
return true;
}
}
2022-04-26 16:56:24 +00:00
LogStreamInfo *pInfo = new LogStreamInfo(severity, pStream);
m_StreamArray.push_back(pInfo);
2019-02-08 22:25:43 +00:00
return true;
}
// ----------------------------------------------------------------------------------
// Detach a stream
2022-04-26 16:56:24 +00:00
bool DefaultLogger::detachStream(LogStream *pStream, unsigned int severity) {
if (nullptr == pStream) {
2019-02-08 22:25:43 +00:00
return false;
2019-03-05 20:39:38 +00:00
}
2019-02-08 22:25:43 +00:00
2022-04-26 16:56:24 +00:00
if (0 == severity) {
2019-02-08 22:25:43 +00:00
severity = SeverityAll;
}
2024-12-09 20:22:47 +00:00
#ifndef ASSIMP_BUILD_SINGLETHREADED
std::lock_guard<std::mutex> lock(m_arrayMutex);
#endif
2022-04-26 16:56:24 +00:00
bool res(false);
for (StreamIt it = m_StreamArray.begin(); it != m_StreamArray.end(); ++it) {
if ((*it)->m_pStream == pStream) {
2019-02-08 22:25:43 +00:00
(*it)->m_uiErrorSeverity &= ~severity;
2022-04-26 16:56:24 +00:00
if ((*it)->m_uiErrorSeverity == 0) {
2019-02-08 22:25:43 +00:00
// don't delete the underlying stream 'cause the caller gains ownership again
2019-03-05 20:39:38 +00:00
(**it).m_pStream = nullptr;
2019-02-08 22:25:43 +00:00
delete *it;
2022-04-26 16:56:24 +00:00
m_StreamArray.erase(it);
2019-03-05 20:39:38 +00:00
res = true;
2019-02-08 22:25:43 +00:00
break;
}
return true;
}
}
2019-03-05 20:39:38 +00:00
return res;
2019-02-08 22:25:43 +00:00
}
// ----------------------------------------------------------------------------------
// Constructor
2022-04-26 16:56:24 +00:00
DefaultLogger::DefaultLogger(LogSeverity severity) :
Logger(severity), noRepeatMsg(false), lastLen(0) {
2019-02-08 22:25:43 +00:00
lastMsg[0] = '\0';
}
// ----------------------------------------------------------------------------------
// Destructor
2019-03-05 20:39:38 +00:00
DefaultLogger::~DefaultLogger() {
2022-04-26 16:56:24 +00:00
for (StreamIt it = m_StreamArray.begin(); it != m_StreamArray.end(); ++it) {
2019-02-08 22:25:43 +00:00
// also frees the underlying stream, we are its owner.
delete *it;
}
}
// ----------------------------------------------------------------------------------
// Writes message to stream
2022-04-26 16:56:24 +00:00
void DefaultLogger::WriteToStreams(const char *message, ErrorSeverity ErrorSev) {
2019-03-05 20:39:38 +00:00
ai_assert(nullptr != message);
2019-02-08 22:25:43 +00:00
2024-12-09 20:22:47 +00:00
#ifndef ASSIMP_BUILD_SINGLETHREADED
std::lock_guard<std::mutex> lock(m_arrayMutex);
#endif
2019-02-08 22:25:43 +00:00
// Check whether this is a repeated message
2022-04-26 16:56:24 +00:00
auto thisLen = ::strlen(message);
if (thisLen == lastLen - 1 && !::strncmp(message, lastMsg, lastLen - 1)) {
if (!noRepeatMsg) {
2019-02-08 22:25:43 +00:00
noRepeatMsg = true;
message = "Skipping one or more lines with the same contents\n";
}
2022-04-26 16:56:24 +00:00
return;
} else {
2019-02-08 22:25:43 +00:00
// append a new-line character to the message to be printed
2022-04-26 16:56:24 +00:00
lastLen = thisLen;
::memcpy(lastMsg, message, lastLen + 1);
::strcat(lastMsg + lastLen, "\n");
2019-02-08 22:25:43 +00:00
message = lastMsg;
noRepeatMsg = false;
++lastLen;
}
2022-04-26 16:56:24 +00:00
for (ConstStreamIt it = m_StreamArray.begin();
it != m_StreamArray.end();
++it) {
if (ErrorSev & (*it)->m_uiErrorSeverity)
(*it)->m_pStream->write(message);
2019-02-08 22:25:43 +00:00
}
}
// ----------------------------------------------------------------------------------
// Returns thread id, if not supported only a zero will be returned.
2022-04-26 16:56:24 +00:00
unsigned int DefaultLogger::GetThreadID() {
2019-02-08 22:25:43 +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.
#ifdef WIN32
return (unsigned int)::GetCurrentThreadId();
#else
return 0; // not supported
#endif
}
// ----------------------------------------------------------------------------------
2022-04-26 16:56:24 +00:00
} // namespace Assimp