Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
* BPFileReader.cpp
*
* Created on: Feb 27, 2017
* Author: wfg
*/
#include "engine/bp/BPFileReader.h"
#include "core/Support.h"
#include "functions/adiosFunctions.h" //CSVToVector
#include "transport/file/FileDescriptor.h" // uses POSIX
#include "transport/file/FilePointer.h" // uses C FILE*
// supported transports
#include "transport/file/FStream.h" // uses C++ fstream
namespace adios
{
BPFileReader::BPFileReader(ADIOS &adios, const std::string name,
const std::string accessMode, MPI_Comm mpiComm,
const Method &method, const IOMode iomode,
const float timeout_sec, const bool debugMode,
const unsigned int nthreads)
: Engine(adios, "BPFileReader", name, accessMode, mpiComm, method,
debugMode, nthreads,
" BPFileReader constructor (or call to ADIOS Open).\n"),
m_Buffer(accessMode, m_RankMPI, m_DebugMode)
{
Init();
}
BPFileReader::~BPFileReader() {}
Variable<void> *
BPFileReader::InquireVariable(const std::string name,
const bool readIn) // not yet implemented
{
return nullptr;
}
Variable<char> *BPFileReader::InquireVariableChar(const std::string name,
const bool readIn)
{
return InquireVariableCommon<char>(name, readIn);
}
Variable<unsigned char> *
BPFileReader::InquireVariableUChar(const std::string name, const bool readIn)
{
return InquireVariableCommon<unsigned char>(name, readIn);
}
Variable<short> *BPFileReader::InquireVariableShort(const std::string name,
const bool readIn)
{
return InquireVariableCommon<short>(name, readIn);
}
Variable<unsigned short> *
BPFileReader::InquireVariableUShort(const std::string name, const bool readIn)
{
return InquireVariableCommon<unsigned short>(name, readIn);
}
Variable<int> *BPFileReader::InquireVariableInt(const std::string name,
const bool readIn)
{
return InquireVariableCommon<int>(name, readIn);
}
Variable<unsigned int> *
BPFileReader::InquireVariableUInt(const std::string name, const bool readIn)
{
return InquireVariableCommon<unsigned int>(name, readIn);
}
Variable<long int> *BPFileReader::InquireVariableLInt(const std::string name,
const bool readIn)
{
return InquireVariableCommon<long int>(name, readIn);
}
Variable<unsigned long int> *
BPFileReader::InquireVariableULInt(const std::string name, const bool readIn)
{
return InquireVariableCommon<unsigned long int>(name, readIn);
}
Variable<long long int> *
BPFileReader::InquireVariableLLInt(const std::string name, const bool readIn)
{
return InquireVariableCommon<long long int>(name, readIn);
}
Variable<unsigned long long int> *
BPFileReader::InquireVariableULLInt(const std::string name, const bool readIn)
{
return InquireVariableCommon<unsigned long long int>(name, readIn);
}
Variable<float> *BPFileReader::InquireVariableFloat(const std::string name,
const bool readIn)
{
return InquireVariableCommon<float>(name, readIn);
}
Variable<double> *BPFileReader::InquireVariableDouble(const std::string name,
const bool readIn)
{
return InquireVariableCommon<double>(name, readIn);
}
Variable<long double> *
BPFileReader::InquireVariableLDouble(const std::string name, const bool readIn)
{
return InquireVariableCommon<long double>(name, readIn);
}
Variable<std::complex<float>> *
BPFileReader::InquireVariableCFloat(const std::string name, const bool readIn)
{
return InquireVariableCommon<std::complex<float>>(name, readIn);
}
Variable<std::complex<double>> *
BPFileReader::InquireVariableCDouble(const std::string name, const bool readIn)
{
return InquireVariableCommon<std::complex<double>>(name, readIn);
}
Variable<std::complex<long double>> *
BPFileReader::InquireVariableCLDouble(const std::string name, const bool readIn)
{
return InquireVariableCommon<std::complex<long double>>(name, readIn);
}
VariableCompound *BPFileReader::InquireVariableCompound(const std::string name,
const bool readIn)
{
return nullptr;
}
void BPFileReader::Close(const int transportIndex) {}
// PRIVATE
void BPFileReader::Init()
{
if (m_DebugMode == true)
{
if (m_AccessMode != "r" && m_AccessMode != "read")
throw std::invalid_argument(
"ERROR: BPFileReader doesn't support access mode " + m_AccessMode +
", in call to ADIOS Open or BPFileReader constructor\n");
}
InitCapsules();
InitTransports();
}
void BPFileReader::InitCapsules()
{
// here init memory capsules
}
void BPFileReader::InitTransports() // maybe move this?
{
if (m_DebugMode == true)
{
if (TransportNamesUniqueness() == false)
{
throw std::invalid_argument(
"ERROR: two transports of the same kind (e.g file IO) "
"can't have the same name, modify with name= in Method "
"AddTransport\n");
}
}
for (const auto ¶meters : m_Method.m_TransportParameters)
{
auto itTransport = parameters.find("transport");
if (itTransport->second == "file" || itTransport->second == "File")
{
auto itLibrary = parameters.find("library");
if (itLibrary == parameters.end() ||
itLibrary->second == "POSIX") // use default POSIX
{
auto file =
std::make_shared<transport::FileDescriptor>(m_MPIComm, m_DebugMode);
// m_BP1Reader.OpenRankFiles( m_Name, m_AccessMode, *file );
m_Transports.push_back(std::move(file));
}
else if (itLibrary->second == "FILE*" || itLibrary->second == "stdio.h")
{
auto file =
std::make_shared<transport::FilePointer>(m_MPIComm, m_DebugMode);
// m_BP1Reader.OpenRankFiles( m_Name, m_AccessMode, *file );
m_Transports.push_back(std::move(file));
}
else if (itLibrary->second == "fstream" ||
itLibrary->second == "std::fstream")
{
auto file =
std::make_shared<transport::FStream>(m_MPIComm, m_DebugMode);
// m_BP1Reader.OpenRankFiles( m_Name, m_AccessMode, *file );
m_Transports.push_back(std::move(file));
}
else if (itLibrary->second == "MPI-IO")
{
}
else
{
if (m_DebugMode == true)
throw std::invalid_argument(
"ERROR: file transport library " + itLibrary->second +
" not supported, in " + m_Name + m_EndMessage);
}
}
else
{
if (m_DebugMode == true)
throw std::invalid_argument("ERROR: transport " + itTransport->second +
" (you mean File?) not supported, in " +
m_Name + m_EndMessage);
}
}
}
} // end namespace