Newer
Older
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*
* ADIOS.cpp
*
* Created on: Sep 29, 2016
* Author: William F Godoy godoywf@ornl.gov
*/
#include "ADIOS.h"
/// \cond EXCLUDE_FROM_DOXYGEN
#include <fstream>
#include <ios> //std::ios_base::failure
#include <iostream>
#include <sstream>
#include <utility>
/// \endcond
{
ADIOS::ADIOS(const std::string configFile, MPI_Comm mpiComm,
const bool debugMode)
: m_MPIComm(mpiComm), m_ConfigFile(configFile), m_DebugMode(debugMode)
{
if (!configFile.empty())
{
if (configFile.substr(configFile.size() - 3) == "xml")
{
InitXML(configFile, m_MPIComm, m_DebugMode, m_Transforms, m_IOs);
}
// TODO expand for other formats
}
ADIOS::ADIOS(const std::string configFile, const bool debugMode)
: ADIOS(configFile, MPI_COMM_SELF, debugMode)
{
}
ADIOS::ADIOS(MPI_Comm mpiComm, const bool debugMode)
ADIOS::ADIOS(const bool debugMode) : ADIOS("", MPI_COMM_SELF, debugMode) {}
IO &ADIOS::DeclareIO(const std::string ioName)
{
auto itIO = m_IOs.find(ioName);
if (itIO != m_IOs.end()) // exists
{
{
throw std::invalid_argument(
"ERROR: IO class object with name " + ioName +
" previously declared, name must be unique "
" , in call to DeclareIO\n");
}
}
return itIO->second;
}
// doesn't exist, then create new pair
auto ioPair =
m_IOs.emplace(ioName, IO(ioName, m_MPIComm, false, m_DebugMode));
return ioPair.first->second;
IO &ADIOS::GetIO(const std::string name)
{
auto itIO = m_IOs.find(name);
if (m_DebugMode && itIO == m_IOs.end())
{
throw std::invalid_argument(
"ERROR: Unable to find previously defined IO object with name \"" +
name + "\" in call to GetIO.");
}
return itIO->second;
}
// PRIVATE FUNCTIONS
void ADIOS::CheckMPI() const
{
if (m_MPIComm == MPI_COMM_NULL)
{
throw std::ios_base::failure("ERROR: MPI communicator is MPI_COMM_NULL,"
" in call to ADIOS constructor\n");
}
}
} // end namespace adios