Newer
Older
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*
* Transport.cpp
*
* Created on: Dec 5, 2016
* Author: wfg
*/
#include "Transport.h"
#include "adios2/ADIOSMPI.h"
{
Transport::Transport(const std::string type, const std::string library,
MPI_Comm mpiComm, const bool debugMode)
: m_Type(type), m_Library(library), m_MPIComm(mpiComm), m_DebugMode(debugMode)
{
MPI_Comm_rank(m_MPIComm, &m_RankMPI);
MPI_Comm_size(m_MPIComm, &m_SizeMPI);
}
void Transport::InitProfiler(const Mode openMode, const TimeUnit timeUnit)
m_Profiler.IsActive = true;
m_Profiler.Timers.emplace(std::make_pair(
"open", profiling::Timer("open", TimeUnit::Microseconds, m_DebugMode)));
if (openMode == Mode::Write)
{
m_Profiler.Timers.emplace(
"write", profiling::Timer("write", timeUnit, m_DebugMode));
m_Profiler.Bytes.emplace("write", 0);
}
else if (openMode == Mode::Append)
{
m_Profiler.Timers.emplace(
"append", profiling::Timer("append", timeUnit, m_DebugMode));
m_Profiler.Bytes.emplace("append", 0);
}
else if (openMode == Mode::Read)
{
m_Profiler.Timers.emplace(
"read", profiling::Timer("read", timeUnit, m_DebugMode));
m_Profiler.Bytes.emplace("read", 0);
}
m_Profiler.Timers.emplace(
"close",
profiling::Timer("close", TimeUnit::Microseconds, m_DebugMode));
}
void Transport::SetBuffer(char * /*buffer*/, size_t /*size*/)
{
{
std::invalid_argument("ERROR: " + m_Name + " transport type " + m_Type +
" using library " + m_Library +
" doesn't implement the SetBuffer function\n");
}
}
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
void Transport::Flush()
{
if (m_DebugMode)
{
std::invalid_argument("ERROR: " + m_Name + " transport type " + m_Type +
" using library " + m_Library +
" doesn't implement the Flush function\n");
}
}
void Transport::ProfilerStart(const std::string process) noexcept
{
if (m_Profiler.IsActive)
{
m_Profiler.Timers.at(process).Resume();
}
}
void Transport::ProfilerStop(const std::string process) noexcept
{
if (m_Profiler.IsActive)
{
m_Profiler.Timers.at(process).Pause();
}
}
void Transport::CheckName() const
{
if (m_DebugMode && m_Name.empty())
{
throw std::invalid_argument("ERROR: name can't be empty for " +
m_Library + " transport \n");
}
}
} // end namespace adios2