2016-02-25 12:07:21 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: programs/Hadrons/ModuleFactory.hpp
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution
|
|
|
|
directory.
|
|
|
|
*******************************************************************************/
|
2015-12-07 18:26:38 +00:00
|
|
|
|
2015-12-23 14:21:35 +00:00
|
|
|
#ifndef Hadrons_ModuleFactory_hpp_
|
|
|
|
#define Hadrons_ModuleFactory_hpp_
|
2015-12-07 18:26:38 +00:00
|
|
|
|
|
|
|
#include <Hadrons/Global.hpp>
|
2015-12-23 14:21:35 +00:00
|
|
|
#include <Hadrons/Module.hpp>
|
2015-12-07 18:26:38 +00:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
/******************************************************************************
|
2015-12-23 14:21:35 +00:00
|
|
|
* ModuleFactory *
|
2015-12-07 18:26:38 +00:00
|
|
|
******************************************************************************/
|
2015-12-23 14:21:35 +00:00
|
|
|
class ModuleFactory
|
2015-12-07 18:26:38 +00:00
|
|
|
{
|
2015-12-23 14:21:35 +00:00
|
|
|
SINGLETON(ModuleFactory)
|
2015-12-07 18:26:38 +00:00
|
|
|
public:
|
2016-04-16 08:41:12 +01:00
|
|
|
typedef std::function<std::unique_ptr<Module>(const std::string )>
|
2015-12-23 14:21:35 +00:00
|
|
|
FactoryFunc;
|
2015-12-07 18:26:38 +00:00
|
|
|
public:
|
2015-12-23 14:21:35 +00:00
|
|
|
// registration
|
2016-04-16 08:41:12 +01:00
|
|
|
void registerModule(const std::string type, const FactoryFunc &f);
|
2015-12-23 14:21:35 +00:00
|
|
|
// get module list
|
|
|
|
std::vector<std::string> getModuleList(void) const;
|
|
|
|
// factory
|
2016-04-16 08:41:12 +01:00
|
|
|
std::unique_ptr<Module> create(const std::string type,
|
|
|
|
const std::string name) const;
|
2015-12-23 14:21:35 +00:00
|
|
|
private:
|
|
|
|
std::map<std::string, FactoryFunc> factory_;
|
2015-12-07 18:26:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
2015-12-23 14:21:35 +00:00
|
|
|
#endif // Hadrons_ModuleFactory_hpp_
|