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 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
//# MultiFileBase.cc: Class to combine multiple files in a single one
//# Copyright (C) 2014
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This library is free software; you can redistribute it and/or modify it
//# under the terms of the GNU Library General Public License as published by
//# the Free Software Foundation; either version 2 of the License, or (at your
//# option) any later version.
//#
//# This library is distributed in the hope that it will be useful, but WITHOUT
//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
//# License for more details.
//#
//# You should have received a copy of the GNU Library General Public License
//# along with this library; if not, write to the Free Software Foundation,
//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS should be addressed as follows:
//# Internet email: [email protected].
//# Postal address: AIPS Project Office
//# National Radio Astronomy Observatory
//# 520 Edgemont Road
//# Charlottesville, VA 22903-2475 USA
//#
//# $Id: RegularFileIO.h 20551 2009-03-25 00:11:33Z Malte.Marquarding $
//# Includes
#include <casacore/casa/IO/MultiFileBase.h>
#include <casacore/casa/OS/Path.h>
#include <casacore/casa/BasicSL/STLIO.h>
#include <casacore/casa/Utilities/Assert.h>
#include <casacore/casa/Exceptions/Error.h>
#include <casacore/casa/OS/File.h> // for fileSTAT
#include <sys/stat.h> // needed for stat or stat64
#include <string.h>
#include <stdlib.h> // for posix_memalign
namespace casacore { //# NAMESPACE CASACORE - BEGIN
void operator<< (ostream& ios, const MultiFileInfo& info)
{ ios << info.name << ' ' << info.blockNrs << ' ' << info.fsize << ' '
<< info.curBlock << ' ' << info.dirty << endl; }
void operator<< (AipsIO& ios, const MultiFileInfo& info)
{ ios << info.name << info.blockNrs << info.fsize; }
void operator>> (AipsIO& ios, MultiFileInfo& info)
{ ios >> info.name >> info.blockNrs >> info.fsize; }
MultiFileBase::MultiFileBase (const String& name, Int blockSize, Bool useODirect)
: itsBlockSize (blockSize),
itsNrBlock (0),
itsHdrCounter (0),
itsUseODirect (useODirect),
itsWritable (False), // usually reset by derived class
itsChanged (False)
{
// Unset itsUseODirect if the OS does not support it.
#ifndef HAVE_O_DIRECT
itsUseODirect = False;
#endif
itsName = Path(name).expandedName();
}
void MultiFileBase::setNewFile()
{
// New file.
itsChanged = True;
// Use file system block size, but not less than given size.
if (itsBlockSize <= 0) {
struct fileSTAT sfs;
fileSTAT (itsName.c_str(), &sfs);
Int64 blksz = sfs.st_blksize;
itsBlockSize = std::max (-itsBlockSize, blksz);
}
AlwaysAssert (itsBlockSize > 0, AipsError);
}
MultiFileBase::~MultiFileBase()
{
itsInfo.clear();
}
uInt MultiFileBase::nfile() const
{
Int nf = 0;
for (vector<MultiFileInfo>::const_iterator iter=itsInfo.begin();
iter!=itsInfo.end(); iter) {
if (! iter->name.empty()) {
nf ;
}
}
return nf;
}
void MultiFileBase::flush()
{
// Flush all buffers if needed.
for (vector<MultiFileInfo>::iterator iter=itsInfo.begin();
iter!=itsInfo.end(); iter) {
if (iter->dirty) {
writeDirty (*iter);
}
}
// Header only needs to be written if blocks were added since last flush.
if (itsChanged) {
writeHeader();
itsChanged = False;
}
flushFile();
}
Int64 MultiFileBase::read (Int fileId, void* buf,
Int64 size, Int64 offset)
{
if (fileId >= Int(itsInfo.size()) || itsInfo[fileId].name.empty()) {
throw AipsError ("MultiFileBase::read - invalid fileId given");
}
char* buffer = static_cast<char*>(buf);
MultiFileInfo& info = itsInfo[fileId];
char* infoBuffer = info.buffer->data;
// Determine the logical block to read and the start offset in that block.
Int64 nrblk = (info.fsize itsBlockSize - 1) / itsBlockSize;
Int64 blknr = offset/itsBlockSize;
Int64 start = offset - blknr*itsBlockSize;
Int64 done = 0;
Int64 szdo = std::min(size, info.fsize - offset); // not past EOF
// Read until done.
while (done < szdo) {
AlwaysAssert (blknr < nrblk, AipsError);
Int64 todo = std::min(szdo-done, itsBlockSize-start);
// If already in buffer, copy from there.
if (blknr == info.curBlock) {
memcpy (buffer, infoBuffer start, todo);
} else {
// Read directly into buffer if it fits exactly and no O_DIRECT.
if (todo == itsBlockSize && !itsUseODirect) {
readBlock (info, blknr, buffer);
} else {
if (info.dirty) {
writeDirty (info);
}
// Read into file buffer and copy correct part.
readBlock (info, blknr, infoBuffer);
info.curBlock = blknr;
memcpy (buffer, infoBuffer start, todo);
}
}
// Increment counters.
done = todo;
buffer = todo;
blknr ;
start = 0;
}
return done;
}
Int64 MultiFileBase::write (Int fileId, const void* buf,
Int64 size, Int64 offset)
{
if (fileId >= Int(itsInfo.size()) || itsInfo[fileId].name.empty()) {
throw AipsError ("MultiFileBase::write - invalid fileId given");
}
const char* buffer = static_cast<const char*>(buf);
AlwaysAssert (itsWritable, AipsError);
MultiFileInfo& info = itsInfo[fileId];
char* infoBuffer = info.buffer->data;
// Determine the logical block to write and the start offset in that block.
Int64 blknr = offset/itsBlockSize;
Int64 start = offset - blknr*itsBlockSize;
Int64 done = 0;
// If beyond EOF, add blocks as needed.
Int64 lastblk = blknr (start size itsBlockSize-1) / itsBlockSize;
Int64 curnrb = (info.fsize itsBlockSize-1) / itsBlockSize;
if (lastblk >= curnrb) {
extend (info, lastblk);
itsChanged = True;
}
// Write until all done.
while (done < size) {
Int64 todo = std::min(size-done, itsBlockSize-start);
// Favor sequential writing, thus write current buffer first.
if (blknr == info.curBlock) {
memcpy (infoBuffer start, buffer, todo);
info.dirty = True;
if (done todo > size) {
writeDirty (info);
}
} else if (todo == itsBlockSize && !itsUseODirect) {
// Write directly from buffer if it fits exactly and no O_DIRECT.
writeBlock (info, blknr, buffer);
} else {
// Write into temporary buffer and copy correct part.
// First write possibly dirty buffer.
if (info.dirty) {
writeDirty (info);
}
if (blknr >= curnrb) {
memset (infoBuffer, 0, itsBlockSize);
} else {
readBlock (info, blknr, infoBuffer);
}
info.curBlock = blknr;
memcpy (infoBuffer start, buffer, todo);
info.dirty = True;
}
done = todo;
buffer = todo;
blknr ;
start = 0;
}
if (offset size > info.fsize) {
info.fsize = offset size;
}
return done;
}
void MultiFileBase::resync()
{
AlwaysAssert (!itsChanged, AipsError);
// Clear all blocknrs.
for (vector<MultiFileInfo>::iterator iter=itsInfo.begin();
iter!=itsInfo.end(); iter) {
AlwaysAssert (!iter->dirty, AipsError);
iter->curBlock = -1;
}
readHeader();
}
Int MultiFileBase::addFile (const String& fname)
{
if (fname.empty()) {
throw AipsError("MultiFileBase::addFile - empty file name given");
}
// Only use the basename part (to avoid directory rename problems).
String bname = Path(fname).baseName();
// Check that file name is not used yet.
// Also determine (last) free file slot.
uInt inx = itsInfo.size();
uInt i = 0;
for (vector<MultiFileInfo>::iterator iter=itsInfo.begin();
iter!=itsInfo.end(); iter, i) {
if (iter->name.empty()) {
inx = i; // free file slot
} else if (bname == iter->name) {
throw AipsError ("MultiFileBase::addFile - file name " bname
" already in use");
}
}
// Add a new file entry if needed.
if (inx == itsInfo.size()) {
itsInfo.resize (inx 1);
}
itsInfo[inx] = MultiFileInfo(itsBlockSize, itsUseODirect);
itsInfo[inx].name = bname;
doAddFile (itsInfo[inx]);
itsChanged = True;
return inx;
}
Int MultiFileBase::fileId (const String& fname, Bool throwExcp) const
{
// Only use the basename part (to avoid directory rename problems).
String bname = Path(fname).baseName();
for (size_t i=0; i<itsInfo.size(); i) {
if (bname == itsInfo[i].name) {
return i;
}
}
if (throwExcp) {
throw AipsError ("MultiFileBase::fileId - file name " fname
" is unknown");
}
return -1;
}
void MultiFileBase::deleteFile (Int fileId)
{
if (fileId >= Int(itsInfo.size()) || itsInfo[fileId].name.empty()) {
throw AipsError ("MultiFileBase::deleteFile - invalid fileId given");
}
MultiFileInfo& info = itsInfo[fileId];
doDeleteFile (info);
// Clear this slot.
info = MultiFileInfo();
itsChanged = True;
}
MultiFileInfo::MultiFileInfo (Int64 bufSize, Bool useODirect)
: curBlock (-1),
fsize (0),
dirty (False),
buffer (new MultiFileBuffer (bufSize, useODirect))
{}
MultiFileBuffer::MultiFileBuffer (size_t bufSize, Bool useODirect)
: data (0)
{
const size_t align = 4096;
// Free buffer (in case used).
if (data) {
free (data);
data = 0;
}
if (bufSize > 0) {
if (useODirect && bufSize%align != 0) {
throw AipsError("MultiFile bufsize " String::toString(bufSize)
" must be a multiple of 4096 when using O_DIRECT");
}
// Note that the error messages do a malloc as well, but small
// compared to the requested malloc, so they'll probably succeed.
void* ptr;
if (useODirect) {
if (posix_memalign (&ptr, align, bufSize) != 0) {
throw AllocError("MultiFileBuffer: failed to allocate aligned buffer",
bufSize);
}
} else {
ptr = malloc (bufSize);
if (!ptr) {
throw AllocError("MultiFileBuffer: failed to allocate buffer", bufSize);
}
}
data = static_cast<char*>(ptr);
}
}
} //# NAMESPACE CASACORE - END
|