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
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*
* FileDescriptor.cpp file I/O using POSIX I/O library
*
* Created on: Oct 6, 2016
* Author: William F Godoy godoywf@ornl.gov
*/
#include "FilePOSIX.h"
#include <fcntl.h> // open
#include <stddef.h> // write output
#include <sys/stat.h> // open
#include <sys/types.h> // open
#include <unistd.h> // write, close
/// \cond EXCLUDE_FROM_DOXYGEN
#include <ios> //std::ios_base::failure
/// \endcond
namespace adios2
{
namespace transport
{
FilePOSIX::FilePOSIX(MPI_Comm mpiComm, const bool debugMode)
: Transport("File", "POSIX", mpiComm, debugMode)
{
}
FilePOSIX::~FilePOSIX()
{
if (m_IsOpen)
{
close(m_FileDescriptor);
}
}
void FilePOSIX::Open(const std::string &name, const Mode openMode)
{
m_Name = name;
CheckName();
m_OpenMode = openMode;
switch (m_OpenMode)
{
case (Mode::Write):
ProfilerStart("open");
m_FileDescriptor = open(m_Name.c_str(), O_WRONLY | O_CREAT, 0777);
ProfilerStop("open");
break;
case (Mode::Append):
ProfilerStart("open");
m_FileDescriptor = open(m_Name.c_str(), O_RDWR | O_CREAT, 0777);
ProfilerStop("open");
break;
case (Mode::Read):
ProfilerStart("open");
m_FileDescriptor = open(m_Name.c_str(), O_RDONLY | O_CREAT, 0777);
ProfilerStop("open");
break;
default:
CheckFile("unknown open mode for file " + m_Name +
", in call to POSIX open");
}
CheckFile("couldn't open file " + m_Name +
", check permissions or path existence, in call to POSIX open");
m_IsOpen = true;
}
void FilePOSIX::Write(const char *buffer, size_t size, size_t start)
{
auto lf_Write = [&](const char *buffer, size_t size) {
ProfilerStart("write");
const auto writtenSize = write(m_FileDescriptor, buffer, size);
ProfilerStop("write");
if (writtenSize == -1)
{
throw std::ios_base::failure("ERROR: couldn't write to file " +
m_Name +
", in call to FileDescriptor Write\n");
}
if (static_cast<size_t>(writtenSize) != size)
{
throw std::ios_base::failure(
"ERROR: written size + " + std::to_string(writtenSize) +
" is not equal to intended size " + std::to_string(size) +
" in file " + m_Name + ", in call to FileDescriptor Write\n");
}
};
if (start != MaxSizeT)
{
const auto newPosition = lseek(m_FileDescriptor, start, SEEK_SET);
if (static_cast<size_t>(newPosition) != start)
{
throw std::ios_base::failure(
"ERROR: couldn't move to start position " +
std::to_string(start) + " in file " + m_Name +
", in call to POSIX lseek\n");
}
}
if (size > DefaultMaxFileBatchSize)
{
const size_t batches = size / DefaultMaxFileBatchSize;
const size_t remainder = size % DefaultMaxFileBatchSize;
size_t position = 0;
for (size_t b = 0; b < batches; ++b)
{
lf_Write(&buffer[position], DefaultMaxFileBatchSize);
position += DefaultMaxFileBatchSize;
}
lf_Write(&buffer[position], remainder);
}
else
{
lf_Write(buffer, size);
}
}
void FilePOSIX::Read(char *buffer, size_t size, size_t start)
{
auto lf_Read = [&](char *buffer, size_t size) {
ProfilerStart("read");
const auto readSize = read(m_FileDescriptor, buffer, size);
ProfilerStop("read");
if (readSize == -1)
{
throw std::ios_base::failure("ERROR: couldn't read from file " +
m_Name +
", in call to POSIX IO read\n");
}
if (static_cast<size_t>(readSize) != size)
{
throw std::ios_base::failure(
"ERROR: read size + " + std::to_string(readSize) +
" is not equal to intended size " + std::to_string(size) +
" in file " + m_Name + ", in call to POSIX IO read\n");
}
};
if (start != MaxSizeT)
{
const auto newPosition = lseek(m_FileDescriptor, start, SEEK_SET);
if (static_cast<size_t>(newPosition) != start)
{
throw std::ios_base::failure(
"ERROR: couldn't move to start position " +
std::to_string(start) + " in file " + m_Name +
", in call to POSIX lseek\n");
}
}
if (size > DefaultMaxFileBatchSize)
{
const size_t batches = size / DefaultMaxFileBatchSize;
const size_t remainder = size % DefaultMaxFileBatchSize;
size_t position = 0;
for (size_t b = 0; b < batches; ++b)
{
lf_Read(&buffer[position], DefaultMaxFileBatchSize);
position += DefaultMaxFileBatchSize;
}
lf_Read(&buffer[position], remainder);
}
else
{
lf_Read(buffer, size);
}
}
void FilePOSIX::Flush() {}
void FilePOSIX::Close()
{
ProfilerStart("close");
const int status = close(m_FileDescriptor);
ProfilerStop("close");
if (status == -1)
{
throw std::ios_base::failure("ERROR: couldn't close file " + m_Name +
", in call to POSIX IO close\n");
}
m_IsOpen = false;
}
void FilePOSIX::CheckFile(const std::string hint) const
{
if (m_FileDescriptor == -1)
{
throw std::ios_base::failure("ERROR: " + hint + "\n");
}
}
} // end namespace transport
} // end namespace adios2