Appendix log for ttrace
[platform/core/uifw/dali-adaptor.git] / dali / internal / trace / android / trace-manager-impl-android.h
1 #ifndef DALI_INTERNAL_TRACE_MANAGER_IMPL_ANDROID_H
2 #define DALI_INTERNAL_TRACE_MANAGER_IMPL_ANDROID_H
3
4 /*
5  * Copyright (c) 2023 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
23 // INTERNAL INCLUDES
24 #include <dali/internal/trace/common/trace-manager-impl.h>
25
26 namespace Dali
27 {
28 namespace Internal
29 {
30 namespace Adaptor
31 {
32 class PerformanceInterface;
33
34 class TraceManagerAndroid : public Dali::Internal::Adaptor::TraceManager
35 {
36 public:
37   /**
38    * Static member to hold TraceManagerAndroid instance. This allows
39    * to access PerformanceInterface for network logging.
40    */
41   static TraceManagerAndroid* traceManagerAndroid;
42
43   /**
44    * Explicit Constructor
45    */
46   explicit TraceManagerAndroid(PerformanceInterface* performanceInterface);
47
48 protected:
49   /**
50    * Destructor
51    */
52   ~TraceManagerAndroid() override = default;
53
54   /**
55    * Obtain the LogContextFunction method (Android specific) used for tracing
56    */
57   Dali::Integration::Trace::LogContextFunction GetLogContextFunction() final;
58
59 private:
60   /**
61    * LogContext method (Android specific) used for tracing
62    */
63   static void LogContext(bool start, const char* tag, const char* message);
64 };
65
66 } // namespace Adaptor
67
68 } // namespace Internal
69
70 } // namespace Dali
71
72 #endif // DALI_INTERNAL_TRACE_MANAGER_IMPL_ANDROID_H