Trace use scope macro instead of begin-end
[platform/core/uifw/dali-adaptor.git] / dali / internal / trace / tizen / trace-manager-impl-tizen.cpp
1 /*
2  * Copyright (c) 2022 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/internal/trace/tizen/trace-manager-impl-tizen.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <ttrace.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/devel-api/adaptor-framework/environment-variable.h>
27
28 namespace Dali
29 {
30 namespace Internal
31 {
32 namespace Adaptor
33 {
34 namespace
35 {
36 const char* DALI_TRACE_ENABLE_PRINT_LOG_ENV = "DALI_TRACE_ENABLE_PRINT_LOG";
37 const char* EMPTY_TAG                       = "(null)";
38 static bool gTraceManagerEnablePrintLog     = false;
39
40 } // namespace
41
42 TraceManagerTizen::TraceManagerTizen(PerformanceInterface* performanceInterface)
43 : TraceManager(performanceInterface)
44 {
45   const char* enablePrintLog = Dali::EnvironmentVariable::GetEnvironmentVariable(DALI_TRACE_ENABLE_PRINT_LOG_ENV);
46   if(enablePrintLog && std::atoi(enablePrintLog) != 0)
47   {
48     gTraceManagerEnablePrintLog = true;
49   }
50 }
51
52 Dali::Integration::Trace::LogContextFunction TraceManagerTizen::GetLogContextFunction()
53 {
54   return LogContext;
55 }
56
57 void TraceManagerTizen::LogContext(bool start, const char* tag)
58 {
59   if(start)
60   {
61     traceBegin(TTRACE_TAG_GRAPHICS, tag ? tag : EMPTY_TAG);
62
63     if(gTraceManagerEnablePrintLog)
64     {
65       DALI_LOG_DEBUG_INFO("BEGIN: %s\n", tag ? tag : EMPTY_TAG);
66     }
67   }
68   else
69   {
70     traceEnd(TTRACE_TAG_GRAPHICS);
71
72     if(gTraceManagerEnablePrintLog)
73     {
74       DALI_LOG_DEBUG_INFO("END: %s\n", tag ? tag : EMPTY_TAG);
75     }
76   }
77 }
78
79 } // namespace Adaptor
80
81 } // namespace Internal
82
83 } // namespace Dali