first commit
This commit is contained in:
87
include/QxFactory/IxFactory.h
Normal file
87
include/QxFactory/IxFactory.h
Normal file
@@ -0,0 +1,87 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** https://www.qxorm.com/
|
||||
** Copyright (C) 2013 XDL Team (ic-east.com)
|
||||
**
|
||||
** This file is part of the QxOrm library
|
||||
**
|
||||
** This software is provided 'as-is', without any express or implied
|
||||
** warranty. In no event will the authors be held liable for any
|
||||
** damages arising from the use of this software
|
||||
**
|
||||
** Commercial Usage
|
||||
** Licensees holding valid commercial QxOrm licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and XDL Team
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3.0 as published by the Free Software
|
||||
** Foundation and appearing in the file 'license.gpl3.txt' included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 3.0 requirements will be
|
||||
** met : http://www.gnu.org/copyleft/gpl.html
|
||||
**
|
||||
** If you are unsure which license is appropriate for your use, or
|
||||
** if you have questions regarding the use of this file, please contact :
|
||||
** ic-east.com
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _IX_FACTORY_H_
|
||||
#define _IX_FACTORY_H_
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* \file IxFactory.h
|
||||
* \author XDL Team
|
||||
* \ingroup QxFactory
|
||||
* \brief Common interface for all classes that can be created dynamically using the class name
|
||||
*/
|
||||
|
||||
#ifndef _QX_NO_RTTI
|
||||
#include <typeinfo>
|
||||
#endif // _QX_NO_RTTI
|
||||
|
||||
#include <QxCommon/QxAny.h>
|
||||
|
||||
namespace qx
|
||||
{
|
||||
|
||||
/*!
|
||||
* \ingroup QxFactory
|
||||
* \brief qx::IxFactory : common interface for all classes that can be created dynamically using the class name
|
||||
*/
|
||||
class QX_DLL_EXPORT IxFactory
|
||||
{
|
||||
|
||||
protected:
|
||||
QString m_sKeyFactory; //!< Factory key used by the collection QxFactoryX
|
||||
|
||||
public:
|
||||
IxFactory(const QString &sKey);
|
||||
virtual ~IxFactory();
|
||||
|
||||
virtual qx::any createObject(bool bRawPointer = false) const = 0;
|
||||
virtual void *createObjectNudePtr() const = 0;
|
||||
|
||||
#ifndef _QX_NO_RTTI
|
||||
virtual const std::type_info &typeInfo() const = 0;
|
||||
#endif // _QX_NO_RTTI
|
||||
|
||||
private:
|
||||
IxFactory(const IxFactory &other) { Q_UNUSED(other); }
|
||||
IxFactory &operator=(const IxFactory &other)
|
||||
{
|
||||
Q_UNUSED(other);
|
||||
return (*this);
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace qx
|
||||
|
||||
#endif // _IX_FACTORY_H_
|
||||
231
include/QxFactory/QxFactory.h
Normal file
231
include/QxFactory/QxFactory.h
Normal file
@@ -0,0 +1,231 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** https://www.qxorm.com/
|
||||
** Copyright (C) 2013 XDL Team (ic-east.com)
|
||||
**
|
||||
** This file is part of the QxOrm library
|
||||
**
|
||||
** This software is provided 'as-is', without any express or implied
|
||||
** warranty. In no event will the authors be held liable for any
|
||||
** damages arising from the use of this software
|
||||
**
|
||||
** Commercial Usage
|
||||
** Licensees holding valid commercial QxOrm licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and XDL Team
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3.0 as published by the Free Software
|
||||
** Foundation and appearing in the file 'license.gpl3.txt' included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 3.0 requirements will be
|
||||
** met : http://www.gnu.org/copyleft/gpl.html
|
||||
**
|
||||
** If you are unsure which license is appropriate for your use, or
|
||||
** if you have questions regarding the use of this file, please contact :
|
||||
** ic-east.com
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _QX_FACTORY_H_
|
||||
#define _QX_FACTORY_H_
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* \file QxFactory.h
|
||||
* \author XDL Team
|
||||
* \ingroup QxFactory
|
||||
* \brief Concrete factory class to create object dynamically using the class name
|
||||
*/
|
||||
|
||||
#include <QtCore/qobject.h>
|
||||
|
||||
#include <QxFactory/IxFactory.h>
|
||||
|
||||
#include <QxTraits/get_base_class.h>
|
||||
#include <QxTraits/get_class_name.h>
|
||||
#include <QxTraits/get_primary_key.h>
|
||||
|
||||
#define QX_STR_CANNOT_INSTANTIATE_ABSTRACT_CLASS "[QxOrm] qx::QxFactory<T> ---> cannot instantiate abstract class '%s'"
|
||||
|
||||
#if _QX_AUTO_REGISTER_REPOSITORY
|
||||
#define QX_AUTO_REGISTER_REPOSITORY(className, sKey) qx::register_repository<className>(sKey);
|
||||
#else // _QX_AUTO_REGISTER_REPOSITORY
|
||||
#define QX_AUTO_REGISTER_REPOSITORY(className, sKey) /* Nothing */
|
||||
#endif // _QX_AUTO_REGISTER_REPOSITORY
|
||||
|
||||
namespace qx
|
||||
{
|
||||
|
||||
class IxPersistable;
|
||||
template <class T>
|
||||
class QxClass;
|
||||
|
||||
#ifdef _QX_ENABLE_QT_NETWORK
|
||||
namespace service
|
||||
{
|
||||
class IxService;
|
||||
class IxParameter;
|
||||
} // namespace service
|
||||
#endif // _QX_ENABLE_QT_NETWORK
|
||||
|
||||
#if _QX_AUTO_REGISTER_REPOSITORY
|
||||
template <class T>
|
||||
inline void register_repository(const QString &sKey);
|
||||
#endif // _QX_AUTO_REGISTER_REPOSITORY
|
||||
|
||||
/*!
|
||||
* \ingroup QxFactory
|
||||
* \brief qx::QxFactory<T> : concrete factory class to create object of type T dynamically using the class name
|
||||
*/
|
||||
template <class T>
|
||||
class QxFactory : public IxFactory
|
||||
{
|
||||
|
||||
public:
|
||||
QxFactory(const QString &sKey) : IxFactory(sKey) { QX_AUTO_REGISTER_REPOSITORY(T, sKey); }
|
||||
virtual ~QxFactory() { ; }
|
||||
|
||||
#ifdef _QX_ENABLE_QT_NETWORK
|
||||
virtual qx::any createObject(bool bRawPointer = false) const
|
||||
{
|
||||
QxClass<T>::getSingleton();
|
||||
return qxCreateInstance<std::is_abstract<T>::value, std::is_base_of<qx::IxPersistable, T>::value, std::is_base_of<qx::service::IxService, T>::value, std::is_base_of<qx::service::IxParameter, T>::value, std::is_base_of<QObject, T>::value, 0>::create(bRawPointer);
|
||||
}
|
||||
|
||||
virtual void *createObjectNudePtr() const
|
||||
{
|
||||
QxClass<T>::getSingleton();
|
||||
return qxCreateInstance<std::is_abstract<T>::value, std::is_base_of<qx::IxPersistable, T>::value, std::is_base_of<qx::service::IxService, T>::value, std::is_base_of<qx::service::IxParameter, T>::value, std::is_base_of<QObject, T>::value, 0>::createNudePtr();
|
||||
}
|
||||
#else // _QX_ENABLE_QT_NETWORK
|
||||
virtual qx::any createObject(bool bRawPointer = false) const
|
||||
{
|
||||
QxClass<T>::getSingleton();
|
||||
return qxCreateInstance<std::is_abstract<T>::value, std::is_base_of<qx::IxPersistable, T>::value, false, false, std::is_base_of<QObject, T>::value, 0>::create(bRawPointer);
|
||||
}
|
||||
|
||||
virtual void *createObjectNudePtr() const
|
||||
{
|
||||
QxClass<T>::getSingleton();
|
||||
return qxCreateInstance<std::is_abstract<T>::value, std::is_base_of<qx::IxPersistable, T>::value, false, false, std::is_base_of<QObject, T>::value, 0>::createNudePtr();
|
||||
}
|
||||
#endif // _QX_ENABLE_QT_NETWORK
|
||||
|
||||
#ifndef _QX_NO_RTTI
|
||||
virtual const std::type_info &typeInfo() const
|
||||
{
|
||||
return typeid(T);
|
||||
}
|
||||
#endif // _QX_NO_RTTI
|
||||
|
||||
private:
|
||||
template <bool bIsAbstract /* = false */, bool bIsIxPersistable /* = false */, bool bIsIxService /* = false */, bool bIsIxParameter /* = false */, bool bIsQObject /* = false */, int dummy>
|
||||
struct qxCreateInstance
|
||||
{
|
||||
static inline qx::any create(bool bRawPointer)
|
||||
{
|
||||
if (bRawPointer)
|
||||
{
|
||||
T *p = new T();
|
||||
return qx::any(p);
|
||||
};
|
||||
std::shared_ptr<T> ptr = std::make_shared<T>();
|
||||
return qx::any(ptr);
|
||||
}
|
||||
static inline void *createNudePtr() { return static_cast<void *>(new T()); }
|
||||
};
|
||||
|
||||
template <bool bIsIxPersistable, bool bIsIxService, bool bIsIxParameter, bool bIsQObject, int dummy>
|
||||
struct qxCreateInstance<true, bIsIxPersistable, bIsIxService, bIsIxParameter, bIsQObject, dummy>
|
||||
{
|
||||
static inline qx::any create(bool bRawPointer)
|
||||
{
|
||||
Q_UNUSED(bRawPointer);
|
||||
qDebug(QX_STR_CANNOT_INSTANTIATE_ABSTRACT_CLASS, qx::trait::get_class_name<T>::get());
|
||||
return qx::any();
|
||||
}
|
||||
static inline void *createNudePtr()
|
||||
{
|
||||
qDebug(QX_STR_CANNOT_INSTANTIATE_ABSTRACT_CLASS, qx::trait::get_class_name<T>::get());
|
||||
return NULL;
|
||||
}
|
||||
};
|
||||
|
||||
template <bool bIsQObject, int dummy>
|
||||
struct qxCreateInstance<false, true, false, false, bIsQObject, dummy>
|
||||
{
|
||||
static inline qx::any create(bool bRawPointer)
|
||||
{
|
||||
if (bRawPointer)
|
||||
{
|
||||
T *p = new T();
|
||||
return qx::any(p);
|
||||
};
|
||||
std::shared_ptr<T> ptr = std::make_shared<T>();
|
||||
return qx::any(ptr);
|
||||
}
|
||||
static inline void *createNudePtr() { return static_cast<qx::IxPersistable *>(new T()); }
|
||||
};
|
||||
|
||||
#ifdef _QX_ENABLE_QT_NETWORK
|
||||
template <bool bIsQObject, int dummy>
|
||||
struct qxCreateInstance<false, false, true, false, bIsQObject, dummy>
|
||||
{
|
||||
static inline qx::any create(bool bRawPointer)
|
||||
{
|
||||
if (bRawPointer)
|
||||
{
|
||||
T *p = new T();
|
||||
return qx::any(p);
|
||||
};
|
||||
std::shared_ptr<T> ptr = std::make_shared<T>();
|
||||
return qx::any(ptr);
|
||||
}
|
||||
static inline void *createNudePtr() { return static_cast<qx::service::IxService *>(new T()); }
|
||||
};
|
||||
|
||||
template <bool bIsQObject, int dummy>
|
||||
struct qxCreateInstance<false, false, false, true, bIsQObject, dummy>
|
||||
{
|
||||
static inline qx::any create(bool bRawPointer)
|
||||
{
|
||||
if (bRawPointer)
|
||||
{
|
||||
T *p = new T();
|
||||
return qx::any(p);
|
||||
};
|
||||
std::shared_ptr<T> ptr = std::make_shared<T>();
|
||||
return qx::any(ptr);
|
||||
}
|
||||
static inline void *createNudePtr() { return static_cast<qx::service::IxParameter *>(new T()); }
|
||||
};
|
||||
#endif // _QX_ENABLE_QT_NETWORK
|
||||
|
||||
template <int dummy>
|
||||
struct qxCreateInstance<false, false, false, false, true, dummy>
|
||||
{
|
||||
static inline qx::any create(bool bRawPointer)
|
||||
{
|
||||
if (bRawPointer)
|
||||
{
|
||||
T *p = new T();
|
||||
return qx::any(p);
|
||||
};
|
||||
std::shared_ptr<T> ptr = std::make_shared<T>();
|
||||
return qx::any(ptr);
|
||||
}
|
||||
static inline void *createNudePtr() { return static_cast<QObject *>(new T()); }
|
||||
};
|
||||
};
|
||||
|
||||
} // namespace qx
|
||||
|
||||
#include "../../inl/QxFactory/QxFactory.inl"
|
||||
|
||||
#endif // _QX_FACTORY_H_
|
||||
144
include/QxFactory/QxFactoryX.h
Normal file
144
include/QxFactory/QxFactoryX.h
Normal file
@@ -0,0 +1,144 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** https://www.qxorm.com/
|
||||
** Copyright (C) 2013 XDL Team (ic-east.com)
|
||||
**
|
||||
** This file is part of the QxOrm library
|
||||
**
|
||||
** This software is provided 'as-is', without any express or implied
|
||||
** warranty. In no event will the authors be held liable for any
|
||||
** damages arising from the use of this software
|
||||
**
|
||||
** Commercial Usage
|
||||
** Licensees holding valid commercial QxOrm licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and XDL Team
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 3.0 as published by the Free Software
|
||||
** Foundation and appearing in the file 'license.gpl3.txt' included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 3.0 requirements will be
|
||||
** met : http://www.gnu.org/copyleft/gpl.html
|
||||
**
|
||||
** If you are unsure which license is appropriate for your use, or
|
||||
** if you have questions regarding the use of this file, please contact :
|
||||
** ic-east.com
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _QX_FACTORY_X_H_
|
||||
#define _QX_FACTORY_X_H_
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* \file QxFactoryX.h
|
||||
* \author XDL Team
|
||||
* \ingroup QxFactory
|
||||
* \brief List of all classes registered with QxOrm library factory pattern to create object instance dynamically using the class name
|
||||
*/
|
||||
|
||||
#include <QtCore/qhash.h>
|
||||
#include <QtCore/qmutex.h>
|
||||
|
||||
#include <QxFactory/IxFactory.h>
|
||||
|
||||
#include <QxSingleton/QxSingleton.h>
|
||||
|
||||
namespace qx
|
||||
{
|
||||
|
||||
inline qx::any create(const QString &sKey, bool bRawPointer = false);
|
||||
template <typename T>
|
||||
inline T *create_nude_ptr(const QString &sKey);
|
||||
inline void *create_void_ptr(const QString &sKey);
|
||||
|
||||
class QxClassX;
|
||||
|
||||
/*!
|
||||
* \ingroup QxFactory
|
||||
* \brief qx::QxFactoryX : list of all classes registered with QxOrm library factory pattern to create object instance dynamically using the class name
|
||||
*/
|
||||
class QX_DLL_EXPORT QxFactoryX : public QxSingleton<QxFactoryX>
|
||||
{
|
||||
|
||||
friend class QxClassX;
|
||||
friend class IxFactory;
|
||||
friend class QxSingleton<QxFactoryX>;
|
||||
friend inline qx::any create(const QString &sKey, bool bRawPointer);
|
||||
template <typename T>
|
||||
friend inline T *create_nude_ptr(const QString &sKey);
|
||||
friend inline void *create_void_ptr(const QString &sKey);
|
||||
|
||||
protected:
|
||||
QHash<QString, IxFactory *> m_mapFactoryX; //!< Collection of all 'IxFactory' pointer
|
||||
QMutex m_oMutexFactoryX; //!< Mutex -> 'QxFactoryX' is thread-safe
|
||||
|
||||
private:
|
||||
QxFactoryX() : QxSingleton<QxFactoryX>("qx::QxFactoryX") { ; }
|
||||
virtual ~QxFactoryX() { ; }
|
||||
|
||||
QHash<QString, IxFactory *> *getAllFactory() { return (&m_mapFactoryX); }
|
||||
|
||||
void registerFactory(const QString &sKey, IxFactory *pFactory);
|
||||
void unregisterFactory(const QString &sKey);
|
||||
|
||||
qx::any createObject(const QString &sKey, bool bRawPointer = false) const;
|
||||
void *createObjectNudePtr(const QString &sKey) const;
|
||||
|
||||
#ifndef _QX_NO_RTTI
|
||||
const std::type_info &typeInfo(const QString &sKey) const;
|
||||
#endif // _QX_NO_RTTI
|
||||
|
||||
static inline qx::any createInstance(const QString &sKey, bool bRawPointer = false) { return QxFactoryX::getSingleton()->createObject(sKey, bRawPointer); }
|
||||
static inline void *createInstanceNudePtr(const QString &sKey) { return QxFactoryX::getSingleton()->createObjectNudePtr(sKey); }
|
||||
|
||||
#ifndef _QX_NO_RTTI
|
||||
static inline const std::type_info &getTypeInfo(const QString &sKey) { return QxFactoryX::getSingleton()->typeInfo(sKey); }
|
||||
#endif // _QX_NO_RTTI
|
||||
};
|
||||
|
||||
/*!
|
||||
* \ingroup QxFactory
|
||||
* \brief Return a smart-pointer new instance of object (std::shared_ptr<T>) associated by key sKey using qx::any type (for example : qx::create("drug") return a new instance of smart-pointer drug class into qx::any type)
|
||||
*/
|
||||
inline qx::any create(const QString &sKey, bool bRawPointer /* = false */)
|
||||
{
|
||||
return qx::QxFactoryX::createInstance(sKey, bRawPointer);
|
||||
}
|
||||
|
||||
/*!
|
||||
* \ingroup QxFactory
|
||||
* \brief Return a nude pointer (be careful with memory leak) of type T associated by key sKey, or return NULL if sKey is not registered into factory engine
|
||||
*/
|
||||
template <typename T>
|
||||
inline T *create_nude_ptr(const QString &sKey)
|
||||
#ifdef _QX_NO_RTTI
|
||||
{
|
||||
return static_cast<T *>(qx::QxFactoryX::createInstanceNudePtr(sKey));
|
||||
}
|
||||
#else // _QX_NO_RTTI
|
||||
{
|
||||
return dynamic_cast<T *>(static_cast<T *>(qx::QxFactoryX::createInstanceNudePtr(sKey)));
|
||||
}
|
||||
#endif // _QX_NO_RTTI
|
||||
|
||||
/*!
|
||||
* \ingroup QxFactory
|
||||
* \brief Return a void * pointer (be careful with memory leak) associated by key sKey, or return NULL if sKey is not registered into factory engine
|
||||
*/
|
||||
inline void *create_void_ptr(const QString &sKey)
|
||||
{
|
||||
return qx::QxFactoryX::createInstanceNudePtr(sKey);
|
||||
}
|
||||
|
||||
} // namespace qx
|
||||
|
||||
QX_DLL_EXPORT_QX_SINGLETON_HPP(qx::QxFactoryX)
|
||||
|
||||
#endif // _QX_FACTORY_X_H_
|
||||
Reference in New Issue
Block a user