Klockwork fixes: Distance field iteration
[platform/core/uifw/dali-core.git] / dali / public-api / common / dali-common.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/common/dali-common.h>
20
21 // EXTERNAL INCLUDES
22 #include <stdlib.h>
23 #include <string>
24 #include <cstdio>
25
26 #ifndef EMSCRIPTEN // cxxabi not supported
27 # include <execinfo.h>
28 # include <cxxabi.h>
29 #endif
30
31 #include <cstring>
32
33 // INTERNAL INCLUDES
34 #include <dali/integration-api/debug.h>
35
36 namespace
37 {
38 const int MAX_NUM_STACK_FRAMES = 25;
39 const size_t C_SYMBOL_LENGTH = 4096;
40 }
41
42 namespace Dali
43 {
44
45 #if defined(BACKTRACE_ENABLED)
46
47 std::string Demangle(const char* symbol)
48 {
49   std::string result;
50
51   // backtrace ::=  <filename>'('['_'<mangled-symbol>'_']['+'<offset>]')'
52   // Only want <mangled-symbol>:
53   const char* openParen = strchr(symbol, '(');
54   if(openParen != NULL)
55   {
56     const char* startOfToken = openParen + 1;
57     const char* plus = strchr(startOfToken, '+');
58     const char* closeParen = strchr(startOfToken, ')');
59     const char* endOfToken = NULL;
60     if(plus != NULL)
61     {
62       endOfToken = plus;
63     }
64     else if(closeParen != NULL)
65     {
66       endOfToken = closeParen;
67     }
68     if(endOfToken != NULL)
69     {
70       size_t tokenLength = endOfToken - startOfToken;
71
72       // Allocate space for symbol
73       char *mangledSymbol = (char*)malloc(tokenLength+1u);
74       if(mangledSymbol != NULL)
75       {
76         strncpy(mangledSymbol, startOfToken, tokenLength);
77         mangledSymbol[tokenLength] = '\0';
78
79         size_t size;
80         int    status;
81         char*  demangled=NULL;
82         demangled = abi::__cxa_demangle( mangledSymbol, NULL, &size, &status );
83         if( demangled != NULL )
84         {
85           result = demangled;
86           free(demangled); // demangle() allocates returned string, so free it
87         }
88         else
89         {
90           result = symbol;
91         }
92         free(mangledSymbol);
93       }
94     }
95   }
96
97   return result;
98 }
99
100 DALI_EXPORT_API DaliException::DaliException(const char *location, const char* condition)
101 : mLocation(location), mCondition(condition)
102 {
103   // Note, if a memory error has occured, then the backtrace won't work - backtrace_symbols relies on
104   // allocating memory.
105
106   // Initial dlog error message is output in DALI_ASSERT_ALWAYS macro
107   // Also output on stderr
108   fprintf(stderr, "Exception: \n%s\n thrown at %s\nSee dlog for backtrace\n", mCondition.c_str(), mLocation.c_str());
109
110   DALI_LOG_ERROR_NOFN("Backtrace:\n");
111
112   void* frameArray[MAX_NUM_STACK_FRAMES];
113   int nSize = backtrace(frameArray, MAX_NUM_STACK_FRAMES);
114   char** symbols = backtrace_symbols(frameArray, nSize);
115   for(int i=1; i< nSize; i++)
116   {
117     std::string demangled_symbol = Demangle(symbols[i]);
118     DALI_LOG_ERROR_NOFN("[%02d]   %s\n", i, demangled_symbol.c_str() );
119   }
120   free(symbols);
121 }
122
123
124 #else // BACKTRACE_ENABLED
125
126
127 DALI_EXPORT_API DaliException::DaliException(const char *location, const char* condition)
128 : mLocation(location), mCondition(condition)
129 {
130   printf("Exception: \n%s\n thrown at %s\nSee dlog for backtrace\n", mCondition.c_str(), mLocation.c_str());
131 }
132
133
134 #endif // BACKTRACE_ENABLED
135
136
137 DALI_EXPORT_API void DaliAssertMessage(const char* condition, const char* file, int line)
138 {
139   DALI_LOG_ERROR_NOFN( "Assertion (%s) failed in: %s:%d\n", condition, file, line );
140 }
141
142 } // Dali