diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-08-30 11:19:22 -0300 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-08-30 17:44:16 -0300 |
commit | 1eda671a34eba38e7e74e592e4ae88fa6803bcba (patch) | |
tree | a7abd551d478f100579067b948e1a17103aedcfb /tests/libother | |
parent | 3dc673c7bcbad1613b9d3d6ff3dd4a73be41915d (diff) | |
download | shiboken-1eda671a34eba38e7e74e592e4ae88fa6803bcba.tar.gz shiboken-1eda671a34eba38e7e74e592e4ae88fa6803bcba.tar.xz shiboken-1eda671a34eba38e7e74e592e4ae88fa6803bcba.zip |
Fix the type resolver algorithm.
The new algorithm do the following:
- Try to use type_info on the object the get the object real name.
- Try to find a type resolver with the name returned by type_info.
- If a type resolver was found, get the python type.
- Else, ask binding manager to resolve the type walking on all possible
subclasses found in the inheritance tree.
The binding manager has a graph representing the class inheritance tree.
Note: This commit break the libshiboken ABI, but not the API.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
Renato Araújo <renato.araujo@openbossa.org>
Diffstat (limited to 'tests/libother')
-rw-r--r-- | tests/libother/CMakeLists.txt | 1 | ||||
-rw-r--r-- | tests/libother/othermultiplederived.cpp | 56 | ||||
-rw-r--r-- | tests/libother/othermultiplederived.h | 6 |
3 files changed, 61 insertions, 2 deletions
diff --git a/tests/libother/CMakeLists.txt b/tests/libother/CMakeLists.txt index 96ab6cab..9b3cf555 100644 --- a/tests/libother/CMakeLists.txt +++ b/tests/libother/CMakeLists.txt @@ -4,6 +4,7 @@ set(libother_SRC number.cpp otherderived.cpp otherobjecttype.cpp +othermultiplederived.cpp ) add_definitions("-DLIBOTHER_BUILD") diff --git a/tests/libother/othermultiplederived.cpp b/tests/libother/othermultiplederived.cpp new file mode 100644 index 00000000..fadaa02b --- /dev/null +++ b/tests/libother/othermultiplederived.cpp @@ -0,0 +1,56 @@ +/* + * This file is part of the Shiboken Python Binding Generator project. + * + * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). + * + * Contact: PySide team <contact@pyside.org> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * version 2.1 as published by the Free Software Foundation. Please + * review the following information to ensure the GNU Lesser General + * Public License version 2.1 requirements will be met: + * http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. + * + * As a special exception to the GNU Lesser General Public License + * version 2.1, the object code form of a "work that uses the Library" + * may incorporate material from a header file that is part of the + * Library. You may distribute such object code under terms of your + * choice, provided that the incorporated material (i) does not exceed + * more than 5% of the total size of the Library; and (ii) is limited to + * numerical parameters, data structure layouts, accessors, macros, + * inline functions and templates. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA + */ + +#include "othermultiplederived.h" + +VirtualMethods OtherMultipleDerived::returnUselessClass() +{ + return VirtualMethods(); +} + +Base1* OtherMultipleDerived::createObject(const std::string& objName) +{ + if (objName == "Base1") + return new Base1; + else if (objName == "MDerived1") + return new MDerived1; + else if (objName == "SonOfMDerived1") + return new SonOfMDerived1; + else if (objName == "MDerived3") + return new MDerived3; + else if (objName == "OtherMultipleDerived") + return new OtherMultipleDerived; + return 0; +} + diff --git a/tests/libother/othermultiplederived.h b/tests/libother/othermultiplederived.h index cefc7256..33260b6e 100644 --- a/tests/libother/othermultiplederived.h +++ b/tests/libother/othermultiplederived.h @@ -37,14 +37,16 @@ #include "libothermacros.h" #include "multiple_derived.h" +#include "virtualmethods.h" class ObjectType; -class OtherMultipleDerived : public MDerived1 +class LIBOTHER_API OtherMultipleDerived : public MDerived1 { public: // this will use CppCopier from other module (bug#142) - inline VirtualMethods returnUselessClass() { return VirtualMethods(); } + VirtualMethods returnUselessClass(); + static Base1* createObject(const std::string& objName); }; #endif |