Newer
Older
/*
* Method.h
*
* Created on: Dec 16, 2016
* Author: wfg
*/
#ifndef METHOD_H_
#define METHOD_H_
/// \cond EXCLUDE_FROM_DOXYGEN
namespace adios
{
/**
* Serves as metadata to define an engine
*/
const bool m_DebugMode = false; ///< true: on, throws exceptions and do additional checks, false: off, faster, but unsafe
std::map<std::string, std::string> m_Parameters; ///< method parameters
std::vector< std::map<std::string, std::string> > m_TransportParameters; ///< each is a separate Transport containing their own parameters
* @param type must be an engine type
Method( const std::string type, const bool debugMode = false );
/**
* Sets parameters for the method in "parameter=value" format
* @param args list of parameters with format "parameter1=value1", ..., "parameterN=valueN"
*/
std::vector<std::string> parameters = { args... };
m_Parameters = BuildParametersMap( parameters, m_DebugMode );
/**
* Adds a transport and its parameters for the method
* @param type must be a supported transport type under /include/transport
* @param args list of parameters for a transport with format "parameter1=value1", ..., "parameterN=valueN"
*/
void AddTransport( const std::string type, Args... args )
std::vector<std::string> parameters = { args... };
AddTransportParameters( type, parameters );
void AddTransportParameters( const std::string type, const std::vector<std::string>& parameters );