Merge "Ensure BaseHandle class move noexcept (core public-api)" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / object / type-info.cpp
index 4278922..6fb2e42 100644 (file)
@@ -1,18 +1,19 @@
-//
-// Copyright (c) 2014 Samsung Electronics Co., Ltd.
-//
-// Licensed under the Flora License, Version 1.0 (the License);
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://floralicense.org/license/
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an AS IS BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
+/*
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
 
 // CLASS HEADER
 #include <dali/public-api/object/type-info.h>
 
 namespace Dali
 {
+TypeInfo::TypeInfo() = default;
 
-TypeInfo::TypeInfo()
-{
-}
+TypeInfo::~TypeInfo() = default;
 
-TypeInfo::~TypeInfo()
-{
-}
+TypeInfo::TypeInfo(const TypeInfo& copy) = default;
+
+TypeInfo& TypeInfo::operator=(const TypeInfo& rhs) = default;
 
-const std::string& TypeInfo::GetName()
+TypeInfo::TypeInfo(TypeInfo&& rhs) noexcept = default;
+
+TypeInfo& TypeInfo::operator=(TypeInfo&& rhs) noexcept = default;
+
+const std::string& TypeInfo::GetName() const
 {
   return GetImplementation(*this).GetName();
 }
 
-const std::string& TypeInfo::GetBaseName()
+const std::string& TypeInfo::GetBaseName() const
 {
   return GetImplementation(*this).GetBaseName();
 }
 
-BaseHandle TypeInfo::CreateInstance()
+BaseHandle TypeInfo::CreateInstance() const
 {
   return GetImplementation(*this).CreateInstance();
 }
 
-TypeInfo::CreateFunction TypeInfo::GetCreator()
+TypeInfo::CreateFunction TypeInfo::GetCreator() const
 {
   return GetImplementation(*this).GetCreator();
 }
 
-TypeInfo::NameContainer TypeInfo::GetActions()
+size_t TypeInfo::GetActionCount() const
+{
+  return GetImplementation(*this).GetActionCount();
+}
+
+std::string TypeInfo::GetActionName(size_t index)
 {
-  return GetImplementation(*this).GetActions();
+  return GetImplementation(*this).GetActionName(static_cast<uint32_t>(index));
 }
 
-TypeInfo::NameContainer TypeInfo::GetSignals()
+size_t TypeInfo::GetSignalCount() const
 {
-  return GetImplementation(*this).GetSignals();
+  return GetImplementation(*this).GetSignalCount();
+}
+
+std::string TypeInfo::GetSignalName(size_t index)
+{
+  return GetImplementation(*this).GetSignalName(static_cast<uint32_t>(index));
+}
+
+size_t TypeInfo::GetPropertyCount() const
+{
+  return GetImplementation(*this).GetPropertyCount();
+}
+
+void TypeInfo::GetPropertyIndices(Property::IndexContainer& indices) const
+{
+  indices.Clear(); // We do not want to clear the container if called internally, so only clear here
+  GetImplementation(*this).GetPropertyIndices(indices);
+}
+
+std::string_view TypeInfo::GetPropertyName(Property::Index index) const
+{
+  return GetImplementation(*this).GetRegisteredPropertyName(index);
+}
+
+Property::Index TypeInfo::GetChildPropertyIndex(const std::string& name) const
+{
+  return GetImplementation(*this).GetChildPropertyIndex(Internal::ConstString(name));
+}
+
+std::string_view TypeInfo::GetChildPropertyName(Property::Index index) const
+{
+  return GetImplementation(*this).GetChildPropertyName(index);
+}
+
+Property::Type TypeInfo::GetChildPropertyType(Property::Index index) const
+{
+  return GetImplementation(*this).GetChildPropertyType(index);
+}
+
+void TypeInfo::GetChildPropertyIndices(Property::IndexContainer& indices) const
+{
+  indices.Clear(); // We do not want to clear the container if called internally, so only clear here
+  GetImplementation(*this).GetChildPropertyIndices(indices);
 }
 
 TypeInfo::TypeInfo(Internal::TypeInfo* internal)
@@ -69,4 +120,3 @@ TypeInfo::TypeInfo(Internal::TypeInfo* internal)
 }
 
 } // namespace Dali
-