Skip to content
Snippets Groups Projects
Commit 66a080eb authored by Atkins, Charles Vernon's avatar Atkins, Charles Vernon Committed by GitHub
Browse files

Merge pull request #35 from chuckatkins/move-adios-class-templates

Further seperation of public templates vs private templates
parents 738c37d7 4d4ed83e
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#include <vector> #include <vector>
/// \endcond /// \endcond
#include "ADIOSMacros.h"
#include "ADIOS_MPI.h" #include "ADIOS_MPI.h"
#include "ADIOSTypes.h" #include "ADIOSTypes.h"
...@@ -354,20 +355,18 @@ protected: // no const to allow default empty and copy constructors ...@@ -354,20 +355,18 @@ protected: // no const to allow default empty and copy constructors
std::map<unsigned int, Variable<T>> &GetVarMap(); std::map<unsigned int, Variable<T>> &GetVarMap();
}; };
template <class T> // Explicit declaration of the template methods
VariableCompound &ADIOS::DefineVariableCompound(const std::string &name, #define declare_template_instantiation(T) \
const Dims dimensions, extern template Variable<T> &ADIOS::DefineVariable<T>( \
const Dims globalDimensions, const std::string &name, const Dims, const Dims, const Dims); \
const Dims globalOffsets) extern template Variable<T> &ADIOS::GetVariable<T>(const std::string &); \
{ extern template unsigned int ADIOS::GetVariableIndex<T>( \
CheckVariableInput(name, dimensions); const std::string &name); \
const unsigned int size = m_Compound.size(); template <> \
m_Compound.emplace(size, VariableCompound(name, sizeof(T), dimensions, std::map<unsigned int, Variable<T>> &ADIOS::GetVarMap<T>();
globalDimensions, globalOffsets, ADIOS_FOREACH_TYPE_1ARG(declare_template_instantiation)
m_DebugMode)); extern template unsigned int ADIOS::GetVariableIndex<void>(const std::string &);
m_Variables.emplace(name, std::make_pair(GetType<T>(), size)); #undef declare_template_instantiation
return m_Compound.at(size);
}
} // end namespace adios } // end namespace adios
......
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*
* ADIOS.tcc
* This contains the template implementations for the ADIOS class
*/
#ifndef ADIOS_TCC_
#define ADIOS_TCC_
#include "ADIOS.h"
namespace adios
{
template <class T>
VariableCompound &ADIOS::DefineVariableCompound(const std::string &name,
const Dims dimensions,
const Dims globalDimensions,
const Dims globalOffsets)
{
CheckVariableInput(name, dimensions);
const unsigned int size = m_Compound.size();
m_Compound.emplace(size, VariableCompound(name, sizeof(T), dimensions,
globalDimensions, globalOffsets,
m_DebugMode));
m_Variables.emplace(name, std::make_pair(GetType<T>(), size));
return m_Compound.at(size);
}
} // end namespace adios
#endif /* ADIOS_TCC_ */
File moved
...@@ -3,22 +3,10 @@ ...@@ -3,22 +3,10 @@
* accompanying file Copyright.txt for details. * accompanying file Copyright.txt for details.
* *
* ADIOS.tcc * ADIOS.tcc
* This contains the template specialization implementations for the ADIOS * This contains the template specializatios for the ADIOS class
* class
*/ */
#ifndef ADIOS_TCC_ #include "ADIOS.tcc"
#define ADIOS_TCC_
#include <complex>
#include <map>
#include <memory> //std::shared_ptr
#include <ostream>
#include <set>
#include <string>
#include <vector>
#include "ADIOS.h"
#include "ADIOSMacros.h" #include "ADIOSMacros.h"
namespace adios namespace adios
...@@ -125,7 +113,7 @@ std::map<unsigned int, Variable<std::complex<long double>>> &ADIOS::GetVarMap() ...@@ -125,7 +113,7 @@ std::map<unsigned int, Variable<std::complex<long double>>> &ADIOS::GetVarMap()
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// template specializations of DefineVariable: // explicit template instantiations of DefineVariable:
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
template <typename T> template <typename T>
...@@ -142,14 +130,14 @@ ADIOS::DefineVariable(const std::string &name, const Dims dimensions, ...@@ -142,14 +130,14 @@ ADIOS::DefineVariable(const std::string &name, const Dims dimensions,
return varMap.at(size); return varMap.at(size);
} }
#define instantiate_specialization(T) \ #define define_template_instantiation(T) \
template Variable<T> &ADIOS::DefineVariable<T>( \ template Variable<T> &ADIOS::DefineVariable<T>( \
const std::string &, const Dims, const Dims, const Dims); const std::string &, const Dims, const Dims, const Dims);
ADIOS_FOREACH_TYPE_1ARG(instantiate_specialization) ADIOS_FOREACH_TYPE_1ARG(define_template_instantiation)
#undef instantiate_specialization #undef define_template_instatiation
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// template specializations of DefineVariable: // template specializations of GetVariable:
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
template <class T> template <class T>
...@@ -163,18 +151,17 @@ unsigned int ADIOS::GetVariableIndex(const std::string &name) ...@@ -163,18 +151,17 @@ unsigned int ADIOS::GetVariableIndex(const std::string &name)
return itVariable->second.second; return itVariable->second.second;
} }
// Get template specialization
template <typename T> template <typename T>
Variable<T> &ADIOS::GetVariable(const std::string &name) Variable<T> &ADIOS::GetVariable(const std::string &name)
{ {
return GetVarMap<T>().at(GetVariableIndex<T>(name)); return GetVarMap<T>().at(GetVariableIndex<T>(name));
} }
#define instantiate_specialization(T) \ #define define_template_instatiation(T) \
template unsigned int ADIOS::GetVariableIndex<T>(const std::string &); \
template Variable<T> &ADIOS::GetVariable<T>(const std::string &); template Variable<T> &ADIOS::GetVariable<T>(const std::string &);
ADIOS_FOREACH_TYPE_1ARG(instantiate_specialization) ADIOS_FOREACH_TYPE_1ARG(define_template_instatiation)
#undef instantiate_specialization template unsigned int ADIOS::GetVariableIndex<void>(const std::string &);
#undef define_template_instatiation
} // end namespace adios } // end namespace adios
#endif /* ADIOS_TCC_ */
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#------------------------------------------------------------------------------# #------------------------------------------------------------------------------#
add_library(adios2 add_library(adios2
ADIOS.cpp ADIOS.cpp ADIOS.tcc ADIOS_inst.cpp
#ADIOS_C.cpp #ADIOS_C.cpp
capsule/heap/STLVector.cpp capsule/heap/STLVector.cpp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment