/**************************************************************************** ** ** Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB) ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Installer Framework. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "kdgenericfactory.h" /*! \inmodule kdupdater \class KDGenericFactory \brief The KDGenericFactory class implements a template-based generic factory. KDGenericFactory is an implementation of the factory pattern. It can be used to produce instances of different classes having a common superclass \c T_Product. The user of the factory registers those producible classes in the factory by using an identifier \c T_Identifier. That identifier can then be used to produce as many instances of the registered product as the user wants. The advanced user can even choose the type of the class the factory is using to store its FactoryFunctions by passing a \c T_Map template parameter. It defaults to QHash. KDGenericFactory expects the storage container to be a template class accepting \c T_Identifier and \c FactoryFunction as parameters. Additionally it needs to provide: \table \header \li Method \li Description \row \li \c {const_iterator} \li A type that provides a random-access iterator that can read a const element and when dereferenced has type \c {const &FactoryFunction}. \row \li \c {insert(T_Identifier, FactoryFunction)} \li A function that inserts a new item with \c T_Identifier as key and \c FactoryFunction as value. If there is already an item with \c T_Identifier as key, that item's value must be replaced with \c FactoryFunction. \row \li \c {find(T_Identifier)} \li A function returning an iterator pointing to the item with the key \c T_Identifier. \row \li \c {end()} \li A function returning an iterator pointing to the imaginary item after the last item. \row \li \c {size()} \li A function returning the number of items. \row \li \c {remove(T_Identifier)} \li A function removing all items that have the key \c T_Identifier. \row \li \c {keys()} \li A function returning a list of all the keys \c T_Identifier in an arbitrary order. \endtable The only two class templates that currently match this concept are QHash and QMap. QMultiHash and QMultiMap do not work, because they violate the requirement on insert() above and std::map and std::unordered_map do not match, because they do not have keys() and, because a dereferenced iterator has type \c {std::pair} instead of just \c FactoryFunction. The following example shows how the general use case of KDGenericFactory looks like: \code class Fruit { }; class Apple : public Fruit { }; class Pear : public Fruit { }; int main() { // creates a common fruit "factory" KDGenericFactory< Fruit > fruitPlantation; // registers the product "Apple" fruitPlantation.registerProduct< Apple >( "Apple" ); // registers the product "Pear" fruitPlantation.registerProduct< Pear >( "Pear" ); // lets create some stuff - here comes our tasty apple: Fruit* myApple = fruitPlantation.create( "Apple" ); // and a pear, please: Fruit* myPear = fruitPlantation.create( "Pear" ); // ohh - that doesn't work, returns a null pointer: Fruit* myCherry = fruitPlantation.create( "Cherry" ); } \endcode */ /*! \fn KDGenericFactory::~KDGenericFactory() Destructor. */ /*! \typedef KDGenericFactory::FactoryFunction This typedef defines a factory function producing an object of type T_Product. */ /*! \fn KDGenericFactory::registerProduct( const T_Identifier& name ) Registers a product of type T, identified by \a name in the factory. Any type with the same name gets unregistered. If a product was registered via this method, it will be created using its default constructor. */ /*! \fn KDGenericFactory::create( const T_Identifier& name ) const Creates and returns a product of the type identified by \a name. Ownership of the product is transferred to the caller. */