2016-12-15 18:26:39 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
2016-02-25 12:07:21 +00:00
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2016-12-15 18:26:39 +00:00
|
|
|
Source file: extras/Hadrons/Module.hpp
|
2016-02-25 12:07:21 +00:00
|
|
|
|
|
|
|
Copyright (C) 2015
|
2016-12-15 18:26:39 +00:00
|
|
|
Copyright (C) 2016
|
2016-02-25 12:07:21 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2016-12-15 18:26:39 +00:00
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
2016-12-15 18:21:52 +00:00
|
|
|
/* END LEGAL */
|
2015-12-23 14:21:35 +00:00
|
|
|
|
|
|
|
#ifndef Hadrons_Module_hpp_
|
|
|
|
#define Hadrons_Module_hpp_
|
|
|
|
|
2016-11-28 07:02:15 +00:00
|
|
|
#include <Grid/Hadrons/Global.hpp>
|
2017-12-05 14:31:59 +00:00
|
|
|
#include <Grid/Hadrons/VirtualMachine.hpp>
|
2015-12-23 14:21:35 +00:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
2016-12-05 04:53:31 +00:00
|
|
|
// module registration macros
|
2016-12-14 17:59:45 +00:00
|
|
|
#define MODULE_REGISTER(mod, base)\
|
|
|
|
class mod: public base\
|
|
|
|
{\
|
|
|
|
public:\
|
|
|
|
typedef base Base;\
|
|
|
|
using Base::Base;\
|
|
|
|
virtual std::string getRegisteredName(void)\
|
|
|
|
{\
|
|
|
|
return std::string(#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
|
|
|
|
2016-12-14 17:59:45 +00:00
|
|
|
#define MODULE_REGISTER_NS(mod, base, ns)\
|
|
|
|
class mod: public base\
|
|
|
|
{\
|
|
|
|
public:\
|
|
|
|
typedef base Base;\
|
|
|
|
using Base::Base;\
|
|
|
|
virtual std::string getRegisteredName(void)\
|
|
|
|
{\
|
|
|
|
return std::string(#ns "::" #mod);\
|
|
|
|
}\
|
|
|
|
};\
|
2016-12-05 04:53:31 +00:00
|
|
|
class ns##mod##ModuleRegistrar\
|
|
|
|
{\
|
|
|
|
public:\
|
|
|
|
ns##mod##ModuleRegistrar(void)\
|
|
|
|
{\
|
|
|
|
ModuleFactory &modFac = ModuleFactory::getInstance();\
|
|
|
|
modFac.registerBuilder(#ns "::" #mod, [&](const std::string name)\
|
|
|
|
{\
|
|
|
|
return std::unique_ptr<ns::mod>(new ns::mod(name));\
|
|
|
|
});\
|
|
|
|
}\
|
|
|
|
};\
|
|
|
|
static ns##mod##ModuleRegistrar ns##mod##ModuleRegistrarInstance;
|
|
|
|
|
2016-12-14 17:59:45 +00:00
|
|
|
#define ARG(...) __VA_ARGS__
|
2017-12-01 19:38:23 +00:00
|
|
|
#define MACRO_REDIRECT(arg1, arg2, arg3, macro, ...) macro
|
2016-12-14 17:59:45 +00:00
|
|
|
|
2017-12-01 19:38:23 +00:00
|
|
|
#define envGet(type, name)\
|
2017-11-22 23:27:19 +00:00
|
|
|
*env().template getObject<type>(name)
|
|
|
|
|
2017-12-01 19:38:23 +00:00
|
|
|
#define envGetTmp(type, name)\
|
|
|
|
*env().template getObject<type>(getName() + "_tmp_" + name)
|
|
|
|
|
2017-12-03 18:45:15 +00:00
|
|
|
#define envHasType(type, name)\
|
|
|
|
env().template isObjectOfType<type>(name)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
2017-12-06 15:51:48 +00:00
|
|
|
#define envCreate(type, name, Ls, ...)\
|
|
|
|
env().template createObject<type>(name, Environment::Storage::object, Ls, __VA_ARGS__)
|
|
|
|
|
|
|
|
#define envCreateDerived(base, type, name, Ls, ...)\
|
|
|
|
env().template createDerivedObject<base, type>(name, Environment::Storage::object, Ls, __VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCreateLat4(type, name)\
|
2017-12-06 15:51:48 +00:00
|
|
|
envCreate(type, name, 1, env().getGrid())
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCreateLat5(type, name, Ls)\
|
2017-12-06 15:51:48 +00:00
|
|
|
envCreate(type, name, Ls, env().getGrid(Ls))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCreateLat(...)\
|
|
|
|
MACRO_REDIRECT(__VA_ARGS__, envCreateLat5, envCreateLat4)(__VA_ARGS__)
|
|
|
|
|
2017-12-06 15:51:48 +00:00
|
|
|
#define envCache(type, name, Ls, ...)\
|
|
|
|
env().template createObject<type>(name, Environment::Storage::cache, Ls, __VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCacheLat4(type, name)\
|
2017-12-06 15:51:48 +00:00
|
|
|
envCache(type, name, 1, env().getGrid())
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCacheLat5(type, name, Ls)\
|
2017-12-06 15:51:48 +00:00
|
|
|
envCache(type, name, Ls, env().getGrid(Ls))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCacheLat(...)\
|
|
|
|
MACRO_REDIRECT(__VA_ARGS__, envCacheLat5, envCacheLat4)(__VA_ARGS__)
|
|
|
|
|
2017-12-06 15:51:48 +00:00
|
|
|
#define envTmp(type, name, Ls, ...)\
|
2017-12-01 19:38:23 +00:00
|
|
|
env().template createObject<type>(getName() + "_tmp_" + name, \
|
2017-12-06 15:51:48 +00:00
|
|
|
Environment::Storage::temporary, Ls, __VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envTmpLat4(type, name)\
|
2017-12-06 15:51:48 +00:00
|
|
|
envTmp(type, name, 1, env().getGrid())
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envTmpLat5(type, name, Ls)\
|
2017-12-06 15:51:48 +00:00
|
|
|
envTmp(type, name, Ls, env().getGrid(Ls))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envTmpLat(...)\
|
|
|
|
MACRO_REDIRECT(__VA_ARGS__, envTmpLat5, envTmpLat4)(__VA_ARGS__)
|
|
|
|
|
2015-12-23 14:21:35 +00:00
|
|
|
/******************************************************************************
|
2016-05-12 12:49:49 +01:00
|
|
|
* Module class *
|
2015-12-23 14:21:35 +00:00
|
|
|
******************************************************************************/
|
2016-05-12 12:49:49 +01:00
|
|
|
// base class
|
2016-05-12 11:59:28 +01:00
|
|
|
class ModuleBase
|
2015-12-23 14:21:35 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
2016-05-12 11:59:28 +01:00
|
|
|
ModuleBase(const std::string name);
|
2015-12-23 14:21:35 +00:00
|
|
|
// destructor
|
2016-05-12 11:59:28 +01:00
|
|
|
virtual ~ModuleBase(void) = default;
|
2015-12-23 14:21:35 +00:00
|
|
|
// access
|
|
|
|
std::string getName(void) const;
|
2016-12-14 17:59:45 +00:00
|
|
|
// get factory registration name if available
|
|
|
|
virtual std::string getRegisteredName(void);
|
2016-05-04 00:30:29 +01:00
|
|
|
// dependencies/products
|
2015-12-23 14:21:35 +00:00
|
|
|
virtual std::vector<std::string> getInput(void) = 0;
|
2017-12-12 13:08:01 +00:00
|
|
|
virtual std::vector<std::string> getReference(void) = 0;
|
2015-12-23 14:21:35 +00:00
|
|
|
virtual std::vector<std::string> getOutput(void) = 0;
|
2016-05-12 11:59:28 +01:00
|
|
|
// parse parameters
|
|
|
|
virtual void parseParameters(XmlReader &reader, const std::string name) = 0;
|
2016-12-14 18:01:56 +00:00
|
|
|
virtual void saveParameters(XmlWriter &writer, const std::string name) = 0;
|
2017-12-03 18:46:18 +00:00
|
|
|
// setup
|
|
|
|
virtual void setup(void) {};
|
2016-05-05 03:11:03 +01:00
|
|
|
virtual void execute(void) = 0;
|
2017-12-12 19:32:58 +00:00
|
|
|
// execution
|
|
|
|
void operator()(void);
|
|
|
|
protected:
|
2017-12-05 14:31:59 +00:00
|
|
|
// environment shortcut
|
|
|
|
DEFINE_ENV_ALIAS;
|
|
|
|
// virtual machine shortcut
|
|
|
|
DEFINE_VM_ALIAS;
|
2015-12-23 14:21:35 +00:00
|
|
|
private:
|
|
|
|
std::string name_;
|
|
|
|
};
|
|
|
|
|
2016-05-12 12:49:49 +01:00
|
|
|
// derived class, templating the parameter class
|
2016-05-12 11:59:28 +01:00
|
|
|
template <typename P>
|
|
|
|
class Module: public ModuleBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef P Par;
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
Module(const std::string name);
|
|
|
|
// destructor
|
|
|
|
virtual ~Module(void) = default;
|
|
|
|
// parse parameters
|
|
|
|
virtual void parseParameters(XmlReader &reader, const std::string name);
|
2016-12-14 18:01:56 +00:00
|
|
|
virtual void saveParameters(XmlWriter &writer, const std::string name);
|
2016-05-12 11:59:28 +01:00
|
|
|
// parameter access
|
|
|
|
const P & par(void) const;
|
|
|
|
void setPar(const P &par);
|
|
|
|
private:
|
|
|
|
P par_;
|
|
|
|
};
|
|
|
|
|
2016-05-12 12:49:49 +01:00
|
|
|
// no parameter type
|
2016-06-06 17:45:37 +01:00
|
|
|
class NoPar {};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
class Module<NoPar>: public ModuleBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
Module(const std::string name): ModuleBase(name) {};
|
|
|
|
// destructor
|
|
|
|
virtual ~Module(void) = default;
|
|
|
|
// parse parameters (do nothing)
|
|
|
|
virtual void parseParameters(XmlReader &reader, const std::string name) {};
|
2016-12-14 18:01:56 +00:00
|
|
|
virtual void saveParameters(XmlWriter &writer, const std::string name)
|
|
|
|
{
|
|
|
|
push(writer, "options");
|
|
|
|
pop(writer);
|
|
|
|
};
|
2016-06-06 17:45:37 +01:00
|
|
|
};
|
2016-05-12 12:49:49 +01:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Template implementation *
|
|
|
|
******************************************************************************/
|
2016-05-12 11:59:28 +01:00
|
|
|
template <typename P>
|
|
|
|
Module<P>::Module(const std::string name)
|
|
|
|
: ModuleBase(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
template <typename P>
|
|
|
|
void Module<P>::parseParameters(XmlReader &reader, const std::string name)
|
|
|
|
{
|
2016-11-10 18:38:30 +00:00
|
|
|
read(reader, name, par_);
|
2016-05-12 11:59:28 +01:00
|
|
|
}
|
|
|
|
|
2016-12-14 18:01:56 +00:00
|
|
|
template <typename P>
|
|
|
|
void Module<P>::saveParameters(XmlWriter &writer, const std::string name)
|
|
|
|
{
|
|
|
|
write(writer, name, par_);
|
|
|
|
}
|
|
|
|
|
2016-05-12 11:59:28 +01:00
|
|
|
template <typename P>
|
|
|
|
const P & Module<P>::par(void) const
|
|
|
|
{
|
|
|
|
return par_;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename P>
|
|
|
|
void Module<P>::setPar(const P &par)
|
|
|
|
{
|
|
|
|
par_ = par;
|
|
|
|
}
|
|
|
|
|
2015-12-23 14:21:35 +00:00
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
#endif // Hadrons_Module_hpp_
|