816db29619f78ed666ad74eacf6a62232529df45
[platform/core/uifw/dali-core.git] / dali / public-api / actors / custom-actor.cpp
1 /*
2  * Copyright (c) 2015 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)
57 : Actor(copy)
58 {
59 }
60
61 CustomActor& CustomActor::operator=(const CustomActor& rhs)
62 {
63   BaseHandle::operator=(rhs);
64   return *this;
65 }
66
67 CustomActorImpl& CustomActor::GetImplementation()
68 {
69   Internal::CustomActor& internal = GetImpl(*this);
70
71   return internal.GetImplementation();
72 }
73
74 const CustomActorImpl& CustomActor::GetImplementation() const
75 {
76   const Internal::CustomActor& internal = GetImpl(*this);
77
78   return internal.GetImplementation();
79 }
80
81 CustomActor::CustomActor(CustomActorImpl& implementation)
82 : Actor(Internal::CustomActor::New(implementation).Get())
83 {
84 }
85
86 CustomActor::CustomActor(Internal::CustomActor* internal)
87 : Actor(internal)
88 {
89   // Check we haven't just constructed a new handle, while in the internal custom actors destructor.
90   // This can happen if the user defined CustomActorImpl destructor calls Self(), to create a new handle
91   // to the CustomActor.
92   //
93   // If it's in the destructor then the ref count is zero, so once we've created a new handle it will be 1
94   // Without this check, the actor will be deleted a second time, when the handle is disposed of
95   // causing a crash.
96
97   if (internal)
98   {
99     DALI_ASSERT_ALWAYS(internal->ReferenceCount() != 1 && "Are you trying to use CustomActorImpl::Self() inside a CustomActorImpl destructor?");
100   }
101 }
102
103 } // namespace Dali