[dali_2.3.25] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / performance-logger.cpp
1 /*
2  * Copyright (c) 2020 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/devel-api/adaptor-framework/performance-logger.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/system/common/performance-logger-impl.h>
23
24 namespace Dali
25 {
26 PerformanceLogger::PerformanceLogger()
27 {
28 }
29
30 PerformanceLogger PerformanceLogger::New(const char* name)
31 {
32   Internal::Adaptor::PerformanceLoggerPtr internal = Internal::Adaptor::PerformanceLogger::New(name);
33   return PerformanceLogger(internal.Get());
34 }
35
36 PerformanceLogger::PerformanceLogger(const PerformanceLogger& performanceLogger)
37 : BaseHandle(performanceLogger)
38 {
39 }
40
41 PerformanceLogger& PerformanceLogger::operator=(const PerformanceLogger& performanceLogger)
42 {
43   // check self assignment
44   if(*this != performanceLogger)
45   {
46     BaseHandle::operator=(performanceLogger);
47   }
48   return *this;
49 }
50
51 PerformanceLogger::~PerformanceLogger()
52 {
53 }
54
55 PerformanceLogger PerformanceLogger::DownCast(BaseHandle handle)
56 {
57   return PerformanceLogger(dynamic_cast<Internal::Adaptor::PerformanceLogger*>(handle.GetObjectPtr()));
58 }
59
60 void PerformanceLogger::AddMarker(Marker markerType)
61 {
62   Internal::Adaptor::GetImplementation(*this).AddMarker(markerType);
63 }
64
65 void PerformanceLogger::SetLoggingFrequency(unsigned int logFrequency)
66 {
67   Internal::Adaptor::GetImplementation(*this).SetLoggingFrequency(logFrequency);
68 }
69
70 void PerformanceLogger::EnableLogging(bool enable)
71 {
72   Internal::Adaptor::GetImplementation(*this).EnableLogging(enable);
73 }
74
75 PerformanceLogger::PerformanceLogger(Internal::Adaptor::PerformanceLogger* PerformanceLogger)
76 : BaseHandle(PerformanceLogger)
77 {
78 }
79
80 } // namespace Dali