1/*
2Open Asset Import Library (assimp)
3----------------------------------------------------------------------
4
5Copyright (c) 2006-2019, assimp team
6
7
8All rights reserved.
9
10Redistribution and use of this software in source and binary forms,
11with or without modification, are permitted provided that the
12following conditions are met:
13
14* Redistributions of source code must retain the above
15 copyright notice, this list of conditions and the
16 following disclaimer.
17
18* Redistributions in binary form must reproduce the above
19 copyright notice, this list of conditions and the
20 following disclaimer in the documentation and/or other
21 materials provided with the distribution.
22
23* Neither the name of the assimp team, nor the names of its
24 contributors may be used to endorse or promote products
25 derived from this software without specific prior
26 written permission of the assimp team.
27
28THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
40----------------------------------------------------------------------
41*/
42
43/** @file LogAux.h
44 * @brief Common logging usage patterns for importer implementations
45 */
46#ifndef INCLUDED_AI_LOGAUX_H
47#define INCLUDED_AI_LOGAUX_H
48
49#include <assimp/TinyFormatter.h>
50#include <assimp/Exceptional.h>
51#include <assimp/DefaultLogger.hpp>
52
53namespace Assimp {
54
55template<class TDeriving>
56class LogFunctions {
57public:
58 // ------------------------------------------------------------------------------------------------
59 static void ThrowException(const std::string& msg)
60 {
61 throw DeadlyImportError(Prefix()+msg);
62 }
63
64 // ------------------------------------------------------------------------------------------------
65 static void LogWarn(const Formatter::format& message) {
66 if (!DefaultLogger::isNullLogger()) {
67 ASSIMP_LOG_WARN(Prefix()+(std::string)message);
68 }
69 }
70
71 // ------------------------------------------------------------------------------------------------
72 static void LogError(const Formatter::format& message) {
73 if (!DefaultLogger::isNullLogger()) {
74 ASSIMP_LOG_ERROR(Prefix()+(std::string)message);
75 }
76 }
77
78 // ------------------------------------------------------------------------------------------------
79 static void LogInfo(const Formatter::format& message) {
80 if (!DefaultLogger::isNullLogger()) {
81 ASSIMP_LOG_INFO(Prefix()+(std::string)message);
82 }
83 }
84
85 // ------------------------------------------------------------------------------------------------
86 static void LogDebug(const Formatter::format& message) {
87 if (!DefaultLogger::isNullLogger()) {
88 ASSIMP_LOG_DEBUG(Prefix()+(std::string)message);
89 }
90 }
91
92 // https://sourceforge.net/tracker/?func=detail&atid=1067632&aid=3358562&group_id=226462
93#if !defined(__GNUC__) || !defined(__APPLE__) || __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
94
95 // ------------------------------------------------------------------------------------------------
96 static void LogWarn (const char* message) {
97 if (!DefaultLogger::isNullLogger()) {
98 LogWarn(Formatter::format(message));
99 }
100 }
101
102 // ------------------------------------------------------------------------------------------------
103 static void LogError (const char* message) {
104 if (!DefaultLogger::isNullLogger()) {
105 LogError(Formatter::format(message));
106 }
107 }
108
109 // ------------------------------------------------------------------------------------------------
110 static void LogInfo (const char* message) {
111 if (!DefaultLogger::isNullLogger()) {
112 LogInfo(Formatter::format(message));
113 }
114 }
115
116 // ------------------------------------------------------------------------------------------------
117 static void LogDebug (const char* message) {
118 if (!DefaultLogger::isNullLogger()) {
119 LogDebug(Formatter::format(message));
120 }
121 }
122
123#endif
124
125private:
126 static const char* Prefix();
127
128};
129} // ! Assimp
130
131#endif
132

source code of qt3d/src/3rdparty/assimp/src/include/assimp/LogAux.h