2016-02-25 12:07:21 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: programs/Hadrons/Module.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-23 14:21:35 +00:00
|
|
|
|
|
|
|
#ifndef Hadrons_Module_hpp_
|
|
|
|
#define Hadrons_Module_hpp_
|
|
|
|
|
|
|
|
#include <Hadrons/Global.hpp>
|
2016-01-14 04:23:51 +00:00
|
|
|
#include <Hadrons/Environment.hpp>
|
2015-12-23 14:21:35 +00:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
// module registration macro
|
|
|
|
#define MODULE_REGISTER(mod)\
|
2016-04-30 08:17:04 +01:00
|
|
|
class mod##ModuleRegistrar\
|
2015-12-23 14:21:35 +00:00
|
|
|
{\
|
|
|
|
public:\
|
2016-04-30 08:17:04 +01:00
|
|
|
mod##ModuleRegistrar(void)\
|
2015-12-23 14:21:35 +00:00
|
|
|
{\
|
|
|
|
ModuleFactory &modFac = ModuleFactory::getInstance();\
|
2016-04-30 08:17:04 +01:00
|
|
|
modFac.registerBuilder(#mod, [&](const std::string name)\
|
2015-12-23 14:21:35 +00:00
|
|
|
{\
|
|
|
|
return std::unique_ptr<mod>(new mod(name));\
|
|
|
|
});\
|
|
|
|
}\
|
|
|
|
};\
|
2016-04-30 08:17:04 +01:00
|
|
|
static mod##ModuleRegistrar mod##ModuleRegistrarInstance;
|
2015-12-23 14:21:35 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Module *
|
|
|
|
******************************************************************************/
|
|
|
|
class Module
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
2016-04-16 08:41:12 +01:00
|
|
|
Module(const std::string name);
|
2015-12-23 14:21:35 +00:00
|
|
|
// destructor
|
|
|
|
virtual ~Module(void) = default;
|
|
|
|
// access
|
|
|
|
std::string getName(void) const;
|
|
|
|
// parse parameters
|
2016-04-16 08:41:12 +01:00
|
|
|
virtual void parseParameters(XmlReader &reader, const std::string name) = 0;
|
2015-12-23 14:21:35 +00:00
|
|
|
// dependency relation
|
|
|
|
virtual std::vector<std::string> getInput(void) = 0;
|
|
|
|
virtual std::vector<std::string> getOutput(void) = 0;
|
2016-04-30 08:17:04 +01:00
|
|
|
// setup
|
|
|
|
virtual void setup(Environment &env) {};
|
2016-01-14 04:23:51 +00:00
|
|
|
// allocation
|
2016-04-30 08:17:04 +01:00
|
|
|
virtual void allocate(Environment &env) {};
|
2015-12-23 14:21:35 +00:00
|
|
|
// execution
|
2016-01-14 04:23:51 +00:00
|
|
|
void operator()(Environment &env);
|
|
|
|
virtual void execute(Environment &env) = 0;
|
2015-12-23 14:21:35 +00:00
|
|
|
private:
|
|
|
|
std::string name_;
|
|
|
|
};
|
|
|
|
|
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
#endif // Hadrons_Module_hpp_
|