Merge "Change the timing of Context::GlContextCreated()" 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
28 namespace
29 {
30
31 using namespace Dali;
32
33 BaseHandle Create()
34 {
35   // not directly creatable
36   return BaseHandle();
37 }
38
39 TypeRegistration mType( typeid(Dali::CustomActor), typeid(Dali::Actor), Create );
40
41 }
42
43 CustomActor::CustomActor()
44 {
45 }
46
47 CustomActor CustomActor::DownCast( BaseHandle handle )
48 {
49   return CustomActor( dynamic_cast<Dali::Internal::CustomActor*>(handle.GetObjectPtr()) );
50 }
51
52 CustomActor::~CustomActor()
53 {
54 }
55
56 CustomActor::CustomActor(const CustomActor& copy) = default;
57
58 CustomActor& CustomActor::operator=(const CustomActor& rhs) = default;
59
60 CustomActor::CustomActor( CustomActor&& rhs ) = default;
61
62 CustomActor& CustomActor::operator=( CustomActor&& rhs ) = default;
63
64 CustomActorImpl& CustomActor::GetImplementation()
65 {
66   Internal::CustomActor& internal = GetImpl(*this);
67
68   return internal.GetImplementation();
69 }
70
71 const CustomActorImpl& CustomActor::GetImplementation() const
72 {
73   const Internal::CustomActor& internal = GetImpl(*this);
74
75   return internal.GetImplementation();
76 }
77
78 CustomActor::CustomActor(CustomActorImpl& implementation)
79 : Actor(Internal::CustomActor::New(implementation).Get())
80 {
81 }
82
83 CustomActor::CustomActor(Internal::CustomActor* internal)
84 : Actor(internal)
85 {
86   // Check we haven't just constructed a new handle, while in the internal custom actors destructor.
87   // This can happen if the user defined CustomActorImpl destructor calls Self(), to create a new handle
88   // to the CustomActor.
89   //
90   // If it's in the destructor then the ref count is zero, so once we've created a new handle it will be 1
91   // Without this check, the actor will be deleted a second time, when the handle is disposed of
92   // causing a crash.
93
94   if (internal)
95   {
96     DALI_ASSERT_ALWAYS(internal->ReferenceCount() != 1 && "Are you trying to use CustomActorImpl::Self() inside a CustomActorImpl destructor?");
97   }
98 }
99
100 } // namespace Dali