Safeguard when Actor size is too big.
[platform/core/uifw/dali-core.git] / dali / integration-api / debug.h
1 #ifndef __DALI_INTEGRATION_DEBUG_H__
2 #define __DALI_INTEGRATION_DEBUG_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
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
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
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.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <string>
23 #include <sstream>
24 #include <list>
25
26 // INTERNAL INCLUDES
27 #include <dali/public-api/common/dali-common.h>
28
29 // Using Debug namespace alias shortens the log usage significantly
30 namespace Dali{namespace Integration{namespace Log{}}}
31 namespace Debug = Dali::Integration::Log;
32
33 namespace Dali
34 {
35
36 struct Vector2;
37 struct Vector3;
38 struct Vector4;
39 class Matrix3;
40 class Matrix;
41 class Quaternion;
42
43 namespace Integration
44 {
45 namespace Log
46 {
47
48 enum DebugPriority
49 {
50   DebugInfo,
51   DebugWarning,
52   DebugError
53 };
54
55 /**
56  * Used by logging macros to log a message along with function/class name
57  * @param level debug level
58  * @param format string format
59  */
60 DALI_IMPORT_API void LogMessage(enum DebugPriority level,const char *format, ...);
61
62 /**
63  * typedef for the logging function.
64  */
65 typedef void (*LogFunction)(DebugPriority priority, std::string& message);
66
67 /**
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
73  */
74 DALI_IMPORT_API void InstallLogFunction(const LogFunction& logFunction);
75
76 /**
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.
79  */
80 DALI_IMPORT_API void UninstallLogFunction();
81
82 /********************************************************************************
83  *                            Error/Warning  macros.                            *
84  ********************************************************************************/
85
86 /**
87  * Provides unfiltered logging for global error level messages
88  */
89 #define DALI_LOG_ERROR(format, args...)     Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugError,   "%s " format, __PRETTY_FUNCTION__, ## args)
90
91 #define DALI_LOG_ERROR_NOFN(format, args...)     Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugError, format, ## args)
92
93 /**
94  * Provides unfiltered logging for fps monitor
95  */
96 #define DALI_LOG_FPS(format, args...)     Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, format, ## args)
97
98 /**
99  * Provides unfiltered logging for update status
100  */
101 #define DALI_LOG_UPDATE_STATUS(format, args...)     Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, format, ## args)
102
103 /**
104  * Provides unfiltered logging for render information
105  */
106 #define DALI_LOG_RENDER_INFO(format, args...)     Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, format, ## args)
107
108 #ifdef DEBUG_ENABLED
109
110 /**
111  * Provides unfiltered logging for global warning level messages
112  */
113 #define DALI_LOG_WARNING(format, args...)   Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugWarning, "%s " format, __PRETTY_FUNCTION__, ## args)
114
115
116 #else // DEBUG_ENABLED
117
118 // Don't warn on release build
119 #define DALI_LOG_WARNING(format, args...)
120
121 #endif
122
123 /********************************************************************************
124  *                                    Filter                                    *
125  ********************************************************************************/
126
127 #ifdef DEBUG_ENABLED
128
129 /**
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.
133  */
134 enum LogLevel
135 {
136   NoLogging   = 0,
137   Concise     = 1,
138   General     = 2,
139   Verbose     = 3
140 };
141
142
143 /**
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.
146  *
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.
149  *
150  */
151 class DALI_IMPORT_API Filter
152 {
153 public:
154   typedef std::list<Filter*>           FilterList;
155   typedef std::list<Filter*>::iterator FilterIter;
156
157 public:
158
159   /**
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.
163    */
164   bool IsEnabledFor(LogLevel level) { return level != Debug::NoLogging && level <= mLoggingLevel;}
165
166   /**
167    * Test if trace is enabled for this filter.
168    * @return true if trace is enabled;
169    */
170   bool IsTraceEnabled() { return mTraceEnabled; }
171
172   /**
173    * Enable tracing on this filter.
174    */
175   void EnableTrace() { mTraceEnabled = true; }
176
177   /**
178    * Disable tracing on this filter.
179    */
180   void DisableTrace() { mTraceEnabled = false; }
181
182   /**
183    * Set the log level for this filter. Setting to a higher value than Debug::General also
184    * enables General;
185    */
186   void SetLogLevel(LogLevel level) { mLoggingLevel = level; }
187
188   /**
189    * Perform the logging for this filter.
190    */
191   void Log(LogLevel level, const char* format, ...);
192
193   /**
194    * Create a new filter whose debug level and trace can be modified through the use of an
195    * environment variable.
196    *
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.
201    *
202    * @info To modify logg level/trace at runtime, you can should define your filter as shown below:
203    *
204    * @code
205    * Debug::Filter* filter = Debug::Filter::New( Debug::NoLogging, false, "FILTER_ENV" );
206    * @endcode
207    *
208    * And to use it when running an executable:
209    * @code
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
214    * @endcode
215    */
216   static Filter* New(LogLevel level, bool trace, const char * environmentVariableName );
217
218   /**
219    * Enable trace on all filters.
220    */
221   void EnableGlobalTrace();
222
223   /**
224    * Disable trace on all filters.
225    */
226   void DisableGlobalTrace();
227
228 private:
229
230   /**
231    * Constructor.
232    * @param[in] level - the highest log level.
233    * @param[in] trace - whether this filter allows tracing.
234    */
235   Filter(LogLevel level, bool trace) : mLoggingLevel(level), mTraceEnabled(trace), mNesting(0) {}
236
237   static FilterList* GetActiveFilters();
238
239 public:
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.
243
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;
254   static Filter *gDynamics;
255
256 private:
257   LogLevel mLoggingLevel;
258   bool     mTraceEnabled;
259 public:
260   int      mNesting;
261
262 };
263
264
265 #define  DALI_LOG_FILTER_SET_LEVEL(filter, level) filter->SetLogLevel(level)
266 #define  DALI_LOG_FILTER_ENABLE_TRACE(filter)     filter->EnableTrace()
267 #define  DALI_LOG_FILTER_DISABLE_TRACE(filter)    filter->DisableTrace()
268
269 #else
270
271 #define  DALI_LOG_FILTER_SET_LEVEL(filter, level)
272 #define  DALI_LOG_FILTER_ENABLE_TRACE(filter)
273 #define  DALI_LOG_FILTER_DISABLE_TRACE(filter)
274
275 #endif
276
277 /********************************************************************************
278  *                            General Logging macros                            *
279  ********************************************************************************/
280
281 #ifdef DEBUG_ENABLED
282
283 #define DALI_LOG_INFO(filter, level, format, args...)                        \
284   if(filter && filter->IsEnabledFor(level)) { filter->Log(level, format,  ## args); }
285
286 #else // DEBUG_ENABLED
287
288 #define DALI_LOG_INFO(filter, level, format, args...)
289
290 #endif // DEBUG_ENABLED
291
292
293 /********************************************************************************
294  *                                  Trace Macros                                *
295  ********************************************************************************/
296
297 /*
298  * These macros allow the instrumentation of methods. These translate into calls
299  * to LogMessage(DebugInfo).
300  */
301
302 #ifdef DEBUG_ENABLED
303
304 class DALI_IMPORT_API TraceObj
305 {
306 public:
307   TraceObj(Filter* filter, const char* fmt, ...);
308   ~TraceObj();
309
310 public:
311   std::string mMessage;
312   Filter* mFilter;
313 };
314
315
316 #define DALI_LOG_TRACE_METHOD_FMT(filter, format, args...)                 \
317   Dali::Integration::Log::TraceObj debugTraceObj(filter, "%s: " format, __PRETTY_FUNCTION__, ## args)
318
319 #define DALI_LOG_TRACE_METHOD(filter)                                      \
320   Dali::Integration::Log::TraceObj debugTraceObj(filter, __PRETTY_FUNCTION__)
321
322
323 #else // DEBUG_ENABLED
324
325 #define DALI_LOG_TRACE_METHOD_FMT(filter, format, args...)
326 #define DALI_LOG_TRACE_METHOD(filter)
327
328
329 #endif
330
331 /********************************************************************************
332  *                              Extra object debug                              *
333  ********************************************************************************/
334
335 #ifdef DEBUG_ENABLED
336
337 /**
338  * Warning, this macro changes the current scope, so should usually be put at the
339  * end of the class definition.
340  *
341  * Suggest that the value is usually set to the object's name.
342  * Warning - this will increase the size of the object for a debug build.
343  */
344 #define DALI_LOG_OBJECT_STRING_DECLARATION \
345 public: \
346   std::string mDebugString;
347
348 /**
349  * Print all the actor tree names
350  **/
351 #define DALI_LOG_ACTOR_TREE( node ) { \
352   std::stringstream branch; \
353   Node* tempNode = node; \
354   while( tempNode ) { \
355     branch << "<" << tempNode->mDebugString << ">::"; \
356     tempNode = tempNode->GetParent(); \
357   } \
358   DALI_LOG_ERROR_NOFN("Actor tree: %s\n", branch.str().c_str()); \
359 }
360
361 /**
362  * Allows one object to set another object's debug string
363  */
364 #define DALI_LOG_SET_OBJECT_STRING(object, string) (object->mDebugString = string)
365
366 /**
367  * Allows one object to set another object's std::string easily
368  */
369 #define DALI_LOG_FMT_OBJECT_STRING(object, fmt, args...) (object->mDebugString = FormatToString(fmt, ## args))
370
371 /**
372  * Allows one object to get another object's debug string
373  */
374 #define DALI_LOG_GET_OBJECT_STRING(object) (object->mDebugString)
375
376 /**
377  * Get the C string (for use in formatted logging)
378  */
379 #define DALI_LOG_GET_OBJECT_C_STR(object) (object->mDebugString.c_str())
380
381 /**
382  * Filtered logging of the object's debug string
383  */
384 #define DALI_LOG_OBJECT(filter, object)  DALI_LOG_INFO(filter, Debug::General, object->mDebugString)
385
386
387 #else // DEBUG_ENABLED
388
389 #define DALI_LOG_OBJECT_STRING_DECLARATION
390 #define DALI_LOG_ACTOR_TREE(node)
391 #define DALI_LOG_SET_OBJECT_STRING(object, string)
392 #define DALI_LOG_FMT_OBJECT_STRING(object, fmt, args...)
393 #define DALI_LOG_GET_OBJECT_STRING(object)
394 #define DALI_LOG_GET_OBJECT_C_STR(object) ""
395 #define DALI_LOG_OBJECT(filter, object)
396
397 #endif
398
399 /********************************************************************************
400  *                                Helper writers                                *
401  ********************************************************************************/
402
403 /**
404  * Helper method to translate a color to a string.
405  * @param[in] color - the color to translate
406  * @return string - the text representation of the color.
407  */
408 DALI_IMPORT_API std::string ColorToString(const Vector4& color);
409
410 /**
411  * Helper method to translate a vector4 to a string.
412  * @param[in] v - the vector
413  * @param[in] precision - the precision to write the float data.
414  * @param[in] indent - the indent level to use.
415  * @return string - the text representation of the vector.
416  */
417 DALI_IMPORT_API std::string Vector4ToString(const Vector4& v, size_t precision=3, size_t indent=0);
418
419 /**
420  * Helper method to translate a vector4 to a string.
421  * @param[in] v - the vector
422  * @param[in] precision - the precision to write the float data.
423  * @param[in] indent - the indent level to use.
424  * @return string - the text representation of the vector.
425  */
426 DALI_IMPORT_API std::string Vector3ToString(const Vector3& v, size_t precision=3, size_t indent=0);
427
428 /**
429  * Helper method to translate a quaternion to a string.
430  * @param[in] q the quaternion
431  * @param[in] precision - the precision to write the float data.
432  * @param[in] indent - the indent level to use.
433  * @return string - the text representation of the quaternion.
434  */
435 DALI_IMPORT_API std::string QuaternionToString(const Quaternion& q, size_t precision=3, size_t indent=0);
436
437 /**
438  * Helper method to translate a 3x3 matrix to a string.
439  * @param[in] m - the matrix
440  * @param[in] precision - the precision to write the float data.
441  * @param[in] indent - the indent level to use.
442  * @return string - the text representation of the vector.
443  */
444 DALI_IMPORT_API std::string Matrix3ToString(const Matrix3& m, size_t precision=3, size_t indent=0);
445
446 /**
447  * Helper method to translate a 4x4 matrix to a string.
448  * @param[in] m - the matrix
449  * @param[in] precision - the precision to write the float data.
450  * @param[in] indent - the indent level to use.
451  * @return string - the text representation of the vector.
452  */
453 DALI_IMPORT_API std::string MatrixToString(const Matrix& m, size_t precision=3, size_t indent=0);
454
455 #ifdef DEBUG_ENABLED
456
457
458 /**
459  * Filtered write of a matrix
460  */
461 #define DALI_LOG_MATRIX(filter, matrix)  DALI_LOG_INFO(filter, Debug::General, MatrixToString(matrix))
462
463 /**
464  * Filtered write of a vector
465  */
466 #define DALI_LOG_VECTOR4(filter, vector) DALI_LOG_INFO(filter, Debug::General, Vector4ToString(vector))
467
468 /**
469  * Filtered write of a vector
470  */
471 #define DALI_LOG_VECTOR3(filter, vector) DALI_LOG_INFO(filter, Debug::General, Vector3ToString(vector))
472
473 /**
474  * Filtered write of a color
475  */
476 #define DALI_LOG_COLOR(filter, color)    DALI_LOG_INFO(filter, Debug::General, ColorToString(color))
477
478 #else
479
480 #define DALI_LOG_MATRIX(filter, matrix)
481 #define DALI_LOG_VECTOR4(filter,vector)
482 #define DALI_LOG_VECTOR3(filter,vector)
483 #define DALI_LOG_COLOR(filter, color)
484
485 #endif
486
487 }}} // Dali/Integration/Debug namespaces
488
489
490 #endif // __DALI_INTEGRATION_DEBUG_H__