Merge "Clean up the code to build successfully on macOS" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / actors / custom-actor.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/public-api/actors/custom-actor.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/actors/custom-actor-internal.h>
23 #include <dali/public-api/object/type-registry.h>
24
25 namespace Dali
26 {
27 namespace
28 {
29 using namespace Dali;
30
31 BaseHandle Create()
32 {
33   // not directly creatable
34   return BaseHandle();
35 }
36
37 TypeRegistration mType(typeid(Dali::CustomActor), typeid(Dali::Actor), Create);
38
39 } // namespace
40
41 CustomActor::CustomActor() = default;
42
43 CustomActor CustomActor::DownCast(BaseHandle handle)
44 {
45   return CustomActor(dynamic_cast<Dali::Internal::CustomActor*>(handle.GetObjectPtr()));
46 }
47
48 CustomActor::~CustomActor() = default;
49
50 CustomActor::CustomActor(const CustomActor& copy) = default;
51
52 CustomActor& CustomActor::operator=(const CustomActor& rhs) = default;
53
54 CustomActor::CustomActor(CustomActor&& rhs) = default;
55
56 CustomActor& CustomActor::operator=(CustomActor&& rhs) = default;
57
58 CustomActorImpl& CustomActor::GetImplementation()
59 {
60   Internal::CustomActor& internal = GetImpl(*this);
61
62   return internal.GetImplementation();
63 }
64
65 const CustomActorImpl& CustomActor::GetImplementation() const
66 {
67   const Internal::CustomActor& internal = GetImpl(*this);
68
69   return internal.GetImplementation();
70 }
71
72 CustomActor::CustomActor(CustomActorImpl& implementation)
73 : Actor(Internal::CustomActor::New(implementation).Get())
74 {
75 }
76
77 CustomActor::CustomActor(Internal::CustomActor* internal)
78 : Actor(internal)
79 {
80   // Check we haven't just constructed a new handle, while in the internal custom actors destructor.
81   // This can happen if the user defined CustomActorImpl destructor calls Self(), to create a new handle
82   // to the CustomActor.
83   //
84   // If it's in the destructor then the ref count is zero, so once we've created a new handle it will be 1
85   // Without this check, the actor will be deleted a second time, when the handle is disposed of
86   // causing a crash.
87
88   if(internal)
89   {
90     DALI_ASSERT_ALWAYS(internal->ReferenceCount() != 1 && "Are you trying to use CustomActorImpl::Self() inside a CustomActorImpl destructor?");
91   }
92 }
93
94 } // namespace Dali