-
Notifications
You must be signed in to change notification settings - Fork 126
/
FilePOSIX.cpp
256 lines (219 loc) · 6.51 KB
/
FilePOSIX.cpp
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/*
* 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 [email protected]
*/
#include "FilePOSIX.h"
#include <fcntl.h> // open
#include <stddef.h> // write output
#include <sys/stat.h> // open, fstat
#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(helper::Comm const &comm, const bool debugMode)
: Transport("File", "POSIX", comm, 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 | O_TRUNC, 0666);
ProfilerStop("open");
break;
case (Mode::Append):
ProfilerStart("open");
// m_FileDescriptor = open(m_Name.c_str(), O_RDWR);
m_FileDescriptor = open(m_Name.c_str(), O_RDWR | O_CREAT, 0777);
lseek(m_FileDescriptor, 0, SEEK_END);
ProfilerStop("open");
break;
case (Mode::Read):
ProfilerStart("open");
m_FileDescriptor = open(m_Name.c_str(), O_RDONLY);
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) {
while (size > 0)
{
ProfilerStart("write");
const auto writtenSize = write(m_FileDescriptor, buffer, size);
ProfilerStop("write");
if (writtenSize == -1)
{
if (errno == EINTR)
{
continue;
}
throw std::ios_base::failure(
"ERROR: couldn't write to file " + m_Name +
", in call to FileDescriptor Write\n");
}
buffer += writtenSize;
size -= writtenSize;
}
};
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) {
while (size > 0)
{
ProfilerStart("read");
const auto readSize = read(m_FileDescriptor, buffer, size);
ProfilerStop("read");
if (readSize == -1)
{
if (errno == EINTR)
{
continue;
}
throw std::ios_base::failure("ERROR: couldn't read from file " +
m_Name +
", in call to POSIX IO read\n");
}
buffer += readSize;
size -= readSize;
}
};
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 errno " + std::to_string(errno) +
"\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);
}
}
size_t FilePOSIX::GetSize()
{
struct stat fileStat;
if (fstat(m_FileDescriptor, &fileStat) == -1)
{
throw std::ios_base::failure("ERROR: couldn't get size of file " +
m_Name + "\n");
}
return static_cast<size_t>(fileStat.st_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");
}
}
void FilePOSIX::SeekToEnd()
{
const int status = lseek(m_FileDescriptor, 0, SEEK_END);
if (status == -1)
{
throw std::ios_base::failure(
"ERROR: couldn't seek to the end of file " + m_Name +
", in call to POSIX IO lseek\n");
}
}
void FilePOSIX::SeekToBegin()
{
const int status = lseek(m_FileDescriptor, 0, SEEK_SET);
if (status == -1)
{
throw std::ios_base::failure(
"ERROR: couldn't seek to the begin of file " + m_Name +
", in call to POSIX IO lseek\n");
}
}
} // end namespace transport
} // end namespace adios2