[dali_2.3.24] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / internal / trace / generic / trace-manager-impl-generic.cpp
1 /*
2  * Copyright (c) 2024 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/generic/trace-manager-impl-generic.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <dali/internal/system/common/performance-interface.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/devel-api/adaptor-framework/environment-variable.h>
27 #include <dali/internal/system/common/environment-variables.h>
28
29 namespace Dali
30 {
31 namespace Internal
32 {
33 namespace Adaptor
34 {
35 namespace
36 {
37 const char* EMPTY_TAG                   = "(null)";
38 static bool gTraceManagerEnablePrintLog = false;
39 } // namespace
40
41 TraceManagerGeneric* TraceManagerGeneric::traceManagerGeneric = nullptr;
42
43 TraceManagerGeneric::TraceManagerGeneric(PerformanceInterface* performanceInterface)
44 : TraceManager(performanceInterface)
45 {
46   const char* enablePrintLog = Dali::EnvironmentVariable::GetEnvironmentVariable(DALI_ENV_TRACE_ENABLE_PRINT_LOG);
47   if(enablePrintLog && std::atoi(enablePrintLog) != 0)
48   {
49     gTraceManagerEnablePrintLog = true;
50   }
51
52   TraceManagerGeneric::traceManagerGeneric = this;
53 }
54
55 Dali::Integration::Trace::LogContextFunction TraceManagerGeneric::GetLogContextFunction()
56 {
57   return LogContext;
58 }
59
60 void TraceManagerGeneric::LogContext(bool start, const char* tag, const char* message)
61 {
62   if(traceManagerGeneric && traceManagerGeneric->mPerformanceInterface)
63   {
64     if(start)
65     {
66       unsigned short contextId = traceManagerGeneric->mPerformanceInterface->GetContextId(tag);
67       if(!contextId)
68       {
69         contextId = traceManagerGeneric->mPerformanceInterface->AddContext(tag);
70       }
71       traceManagerGeneric->mPerformanceInterface->AddMarker(PerformanceInterface::START, contextId);
72     }
73     else
74     {
75       unsigned short contextId = traceManagerGeneric->mPerformanceInterface->GetContextId(tag);
76       traceManagerGeneric->mPerformanceInterface->AddMarker(PerformanceInterface::END, contextId);
77     }
78   }
79
80   if(gTraceManagerEnablePrintLog)
81   {
82     if(start)
83     {
84       DALI_LOG_DEBUG_INFO("BEGIN: %s%s%s\n", tag ? tag : EMPTY_TAG, message ? " " : "", message ? message : "");
85     }
86     else
87     {
88       DALI_LOG_DEBUG_INFO("END: %s%s%s\n", tag ? tag : EMPTY_TAG, message ? " " : "", message ? message : "");
89     }
90   }
91 }
92
93 } // namespace Adaptor
94
95 } // namespace Internal
96
97 } // namespace Dali