1 #ifndef __DALI_INTEGRATION_DEBUG_H__
2 #define __DALI_INTEGRATION_DEBUG_H__
5 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
27 #include <dali/public-api/common/dali-common.h>
29 // Using Debug namespace alias shortens the log usage significantly
30 namespace Dali{namespace Integration{namespace Log{}}}
31 namespace Debug = Dali::Integration::Log;
56 * Used by logging macros to log a message along with function/class name
57 * @param level debug level
58 * @param format string format
60 DALI_IMPORT_API void LogMessage(enum DebugPriority level,const char *format, ...);
63 * typedef for the logging function.
65 typedef void (*LogFunction)(DebugPriority priority, std::string& message);
68 * A log function has to be installed for every thread that wants to use logging.
69 * This should be done by the adaptor.
70 * The log function can be different for each thread.
71 * @param logFunction the log function to install
72 * @param logOpts the log options to save in thread
74 DALI_IMPORT_API void InstallLogFunction(const LogFunction& logFunction);
77 * A log function has to be uninstalled for every thread that wants to use logging.
78 * The log function can be different for each thread.
80 DALI_IMPORT_API void UninstallLogFunction();
82 /********************************************************************************
83 * Error/Warning macros. *
84 ********************************************************************************/
87 * Provides unfiltered logging for global error level messages
89 #define DALI_LOG_ERROR(format, args...) Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugError, "%s " format, __PRETTY_FUNCTION__, ## args)
91 #define DALI_LOG_ERROR_NOFN(format, args...) Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugError, format, ## args)
94 * Provides unfiltered logging for fps monitor
96 #define DALI_LOG_FPS(format, args...) Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, format, ## args)
99 * Provides unfiltered logging for update status
101 #define DALI_LOG_UPDATE_STATUS(format, args...) Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, format, ## args)
104 * Provides unfiltered logging for render information
106 #define DALI_LOG_RENDER_INFO(format, args...) Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, format, ## args)
111 * Provides unfiltered logging for global warning level messages
113 #define DALI_LOG_WARNING(format, args...) Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugWarning, "%s " format, __PRETTY_FUNCTION__, ## args)
116 #else // DEBUG_ENABLED
118 // Don't warn on release build
119 #define DALI_LOG_WARNING(format, args...)
123 /********************************************************************************
125 ********************************************************************************/
130 * Enumeration of logging levels.
131 * Used by the filters to provide multiple log levels.
132 * In general, the higher the value, the more debug is available for that filter.
144 * The Filter object is used by the DALI_LOG_INFO macro and others to determine if the logging
145 * should take place, and routes the logging via the platform abstraction's LogMessage.
147 * It provides a logging level. If this is set to zero, then DALI_LOG_INFO won't log anything.
148 * It provides the ability to turn tracing on or off.
151 class DALI_IMPORT_API Filter
154 typedef std::list<Filter*> FilterList;
155 typedef std::list<Filter*>::iterator FilterIter;
160 * Test if the filter is enabled for the given logging level
161 * @param[in] level - the level to test.
162 * @return true if this level of logging is enabled.
164 bool IsEnabledFor(LogLevel level) { return level != Debug::NoLogging && level <= mLoggingLevel;}
167 * Test if trace is enabled for this filter.
168 * @return true if trace is enabled;
170 bool IsTraceEnabled() { return mTraceEnabled; }
173 * Enable tracing on this filter.
175 void EnableTrace() { mTraceEnabled = true; }
178 * Disable tracing on this filter.
180 void DisableTrace() { mTraceEnabled = false; }
183 * Set the log level for this filter. Setting to a higher value than Debug::General also
186 void SetLogLevel(LogLevel level) { mLoggingLevel = level; }
189 * Perform the logging for this filter.
191 void Log(LogLevel level, const char* format, ...);
194 * Create a new filter whose debug level and trace can be modified through the use of an
195 * environment variable.
197 * @param[in] level The default log level
198 * @param[in] trace The default trace level. If true, function tracing is on.
199 * @param[in] environmentVariableName The environment variable name used in order to change the
200 * log level or trace.
202 * @info To modify logg level/trace at runtime, you can should define your filter as shown below:
205 * Debug::Filter* filter = Debug::Filter::New( Debug::NoLogging, false, "FILTER_ENV" );
208 * And to use it when running an executable:
210 * FILTER_ENV=3 dali-demo // LogLevel Verbose, Trace using default
211 * FILTER_ENV=1,true dali-demo // LogLevel Concise, Trace ON
212 * FILTER_ENV=2,false dali-demo // LogLevel General, Trace OFF
213 * FILTER_ENV=0,true dali-demo // LogLevel NoLogging, Trace ON
216 static Filter* New(LogLevel level, bool trace, const char * environmentVariableName );
219 * Enable trace on all filters.
221 void EnableGlobalTrace();
224 * Disable trace on all filters.
226 void DisableGlobalTrace();
232 * @param[in] level - the highest log level.
233 * @param[in] trace - whether this filter allows tracing.
235 Filter(LogLevel level, bool trace) : mLoggingLevel(level), mTraceEnabled(trace), mNesting(0) {}
237 static FilterList* GetActiveFilters();
240 // High level filters. If these filters are too broad for your current requirement, then
241 // you can add a filter to your own class or source file. If you do, use Filter::New()
242 // to tell this class about it.
244 static Filter *gRender;
245 static Filter *gResource;
246 static Filter *gGLResource;
247 static Filter *gObject;
248 static Filter *gImage;
249 static Filter *gModel;
250 static Filter *gNode;
251 static Filter *gElement;
252 static Filter *gActor;
253 static Filter *gShader;
256 LogLevel mLoggingLevel;
264 #define DALI_LOG_FILTER_SET_LEVEL(filter, level) filter->SetLogLevel(level)
265 #define DALI_LOG_FILTER_ENABLE_TRACE(filter) filter->EnableTrace()
266 #define DALI_LOG_FILTER_DISABLE_TRACE(filter) filter->DisableTrace()
270 #define DALI_LOG_FILTER_SET_LEVEL(filter, level)
271 #define DALI_LOG_FILTER_ENABLE_TRACE(filter)
272 #define DALI_LOG_FILTER_DISABLE_TRACE(filter)
276 /********************************************************************************
277 * General Logging macros *
278 ********************************************************************************/
282 #define DALI_LOG_INFO(filter, level, format, args...) \
283 if(filter && filter->IsEnabledFor(level)) { filter->Log(level, format, ## args); }
285 #else // DEBUG_ENABLED
287 #define DALI_LOG_INFO(filter, level, format, args...)
289 #endif // DEBUG_ENABLED
292 /********************************************************************************
294 ********************************************************************************/
297 * These macros allow the instrumentation of methods. These translate into calls
298 * to LogMessage(DebugInfo).
303 class DALI_IMPORT_API TraceObj
306 TraceObj(Filter* filter, const char* fmt, ...);
310 std::string mMessage;
315 #define DALI_LOG_TRACE_METHOD_FMT(filter, format, args...) \
316 Dali::Integration::Log::TraceObj debugTraceObj(filter, "%s: " format, __PRETTY_FUNCTION__, ## args)
318 #define DALI_LOG_TRACE_METHOD(filter) \
319 Dali::Integration::Log::TraceObj debugTraceObj(filter, __PRETTY_FUNCTION__)
322 #else // DEBUG_ENABLED
324 #define DALI_LOG_TRACE_METHOD_FMT(filter, format, args...)
325 #define DALI_LOG_TRACE_METHOD(filter)
330 /********************************************************************************
331 * Extra object debug *
332 ********************************************************************************/
337 * Warning, this macro changes the current scope, so should usually be put at the
338 * end of the class definition.
340 * Suggest that the value is usually set to the object's name.
341 * Warning - this will increase the size of the object for a debug build.
343 #define DALI_LOG_OBJECT_STRING_DECLARATION \
345 std::string mDebugString;
348 * Print all the actor tree names
350 #define DALI_LOG_ACTOR_TREE( node ) { \
351 std::stringstream branch; \
352 Node* tempNode = node; \
353 while( tempNode ) { \
354 branch << "<" << tempNode->mDebugString << ">::"; \
355 tempNode = tempNode->GetParent(); \
357 DALI_LOG_ERROR_NOFN("Actor tree: %s\n", branch.str().c_str()); \
361 * Allows one object to set another object's debug string
363 #define DALI_LOG_SET_OBJECT_STRING(object, string) (object->mDebugString = string)
366 * Allows one object to set another object's std::string easily
368 #define DALI_LOG_FMT_OBJECT_STRING(object, fmt, args...) (object->mDebugString = FormatToString(fmt, ## args))
371 * Allows one object to get another object's debug string
373 #define DALI_LOG_GET_OBJECT_STRING(object) (object->mDebugString)
376 * Get the C string (for use in formatted logging)
378 #define DALI_LOG_GET_OBJECT_C_STR(object) (object->mDebugString.c_str())
381 * Filtered logging of the object's debug string
383 #define DALI_LOG_OBJECT(filter, object) DALI_LOG_INFO(filter, Debug::General, object->mDebugString)
386 #else // DEBUG_ENABLED
388 #define DALI_LOG_OBJECT_STRING_DECLARATION
389 #define DALI_LOG_ACTOR_TREE(node)
390 #define DALI_LOG_SET_OBJECT_STRING(object, string)
391 #define DALI_LOG_FMT_OBJECT_STRING(object, fmt, args...)
392 #define DALI_LOG_GET_OBJECT_STRING(object)
393 #define DALI_LOG_GET_OBJECT_C_STR(object) ""
394 #define DALI_LOG_OBJECT(filter, object)
398 /********************************************************************************
400 ********************************************************************************/
403 * Helper method to translate a color to a string.
404 * @param[in] color - the color to translate
405 * @return string - the text representation of the color.
407 DALI_IMPORT_API std::string ColorToString(const Vector4& color);
410 * Helper method to translate a vector4 to a string.
411 * @param[in] v - the vector
412 * @param[in] precision - the precision to write the float data.
413 * @param[in] indent - the indent level to use.
414 * @return string - the text representation of the vector.
416 DALI_IMPORT_API std::string Vector4ToString(const Vector4& v, size_t precision=3, size_t indent=0);
419 * Helper method to translate a vector4 to a string.
420 * @param[in] v - the vector
421 * @param[in] precision - the precision to write the float data.
422 * @param[in] indent - the indent level to use.
423 * @return string - the text representation of the vector.
425 DALI_IMPORT_API std::string Vector3ToString(const Vector3& v, size_t precision=3, size_t indent=0);
428 * Helper method to translate a quaternion to a string.
429 * @param[in] q the quaternion
430 * @param[in] precision - the precision to write the float data.
431 * @param[in] indent - the indent level to use.
432 * @return string - the text representation of the quaternion.
434 DALI_IMPORT_API std::string QuaternionToString(const Quaternion& q, size_t precision=3, size_t indent=0);
437 * Helper method to translate a 3x3 matrix to a string.
438 * @param[in] m - the matrix
439 * @param[in] precision - the precision to write the float data.
440 * @param[in] indent - the indent level to use.
441 * @return string - the text representation of the vector.
443 DALI_IMPORT_API std::string Matrix3ToString(const Matrix3& m, size_t precision=3, size_t indent=0);
446 * Helper method to translate a 4x4 matrix to a string.
447 * @param[in] m - the matrix
448 * @param[in] precision - the precision to write the float data.
449 * @param[in] indent - the indent level to use.
450 * @return string - the text representation of the vector.
452 DALI_IMPORT_API std::string MatrixToString(const Matrix& m, size_t precision=3, size_t indent=0);
458 * Filtered write of a matrix
460 #define DALI_LOG_MATRIX(filter, matrix) DALI_LOG_INFO(filter, Debug::General, MatrixToString(matrix))
463 * Filtered write of a vector
465 #define DALI_LOG_VECTOR4(filter, vector) DALI_LOG_INFO(filter, Debug::General, Vector4ToString(vector))
468 * Filtered write of a vector
470 #define DALI_LOG_VECTOR3(filter, vector) DALI_LOG_INFO(filter, Debug::General, Vector3ToString(vector))
473 * Filtered write of a color
475 #define DALI_LOG_COLOR(filter, color) DALI_LOG_INFO(filter, Debug::General, ColorToString(color))
479 #define DALI_LOG_MATRIX(filter, matrix)
480 #define DALI_LOG_VECTOR4(filter,vector)
481 #define DALI_LOG_VECTOR3(filter,vector)
482 #define DALI_LOG_COLOR(filter, color)
486 }}} // Dali/Integration/Debug namespaces
489 #endif // __DALI_INTEGRATION_DEBUG_H__