Appendix log for ttrace
[platform/core/uifw/dali-adaptor.git] / dali / internal / trace / tizen / trace-manager-impl-tizen.h
1 #ifndef DALI_INTERNAL_TRACE_MANAGER_IMPL_TIZEN_H
2 #define DALI_INTERNAL_TRACE_MANAGER_IMPL_TIZEN_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 TraceManagerTizen : public Dali::Internal::Adaptor::TraceManager
35 {
36 public:
37   /**
38    * Explicit Constructor
39    */
40   explicit TraceManagerTizen(PerformanceInterface* performanceInterface);
41
42 protected:
43   /**
44    * Destructor
45    */
46   ~TraceManagerTizen() override = default;
47
48   /**
49    * Obtain the LogContextFunction method (Tizen specific) used for tracing
50    */
51   Dali::Integration::Trace::LogContextFunction GetLogContextFunction() final;
52
53 private:
54   /**
55    * LogContext method (Tizen specific) used for tracing
56    */
57   static void LogContext(bool start, const char* tag, const char* message);
58 };
59
60 } // namespace Adaptor
61
62 } // namespace Internal
63
64 } // namespace Dali
65
66 #endif // DALI_INTERNAL_TRACE_MANAGER_IMPL_TIZEN_H