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 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
|
//# StArrayFile.cc: Read/write array in external format for a storage manager
//# Copyright (C) 1994,1995,1996,1997,1999,2000,2001,2002
//# 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: casa-feedback@nrao.edu.
//# Postal address: AIPS++ Project Office
//# National Radio Astronomy Observatory
//# 520 Edgemont Road
//# Charlottesville, VA 22903-2475 USA
#include <casacore/tables/DataMan/StArrayFile.h>
#include <casacore/casa/OS/RegularFile.h>
#include <casacore/casa/IO/MFFileIO.h>
#include <casacore/casa/IO/CanonicalIO.h>
#include <casacore/casa/IO/LECanonicalIO.h>
#include <casacore/casa/OS/CanonicalConversion.h>
#include <casacore/casa/OS/LECanonicalConversion.h>
#include <casacore/casa/Arrays/IPosition.h>
#include <casacore/casa/Containers/Block.h>
#include <casacore/casa/BasicSL/Complex.h>
#include <casacore/casa/BasicSL/String.h>
#include <casacore/casa/Utilities/ValType.h>
#include <casacore/casa/OS/Path.h>
#include <casacore/tables/DataMan/DataManError.h>
#include <casacore/casa/Utilities/Assert.h>
namespace casacore { //# NAMESPACE CASACORE - BEGIN
StManArrayFile::StManArrayFile (const String& fname, ByteIO::OpenOption fop,
uInt version, Bool bigEndian,
uInt bufferSize,
const std::shared_ptr<MultiFileBase>& mfile)
: leng_p (16),
version_p (version),
hasPut_p (False)
{
// The maximum version is 1.
if (version_p > 1) {
version_p = 1;
}
if (bufferSize == 0) {
bufferSize = 65536;
}
//# Open file name as input and/or output; throw exception if it fails.
if (mfile) {
file_p.reset (new MFFileIO (mfile, fname, fop));
} else {
file_p.reset (new RegularFileIO (RegularFile(fname), fop, bufferSize));
}
if (bigEndian) {
iofil_p.reset (new CanonicalIO (file_p));
}else{
iofil_p.reset (new LECanonicalIO (file_p));
}
AlwaysAssert (iofil_p != 0, AipsError);
swput_p = iofil_p->isWritable();
//# Get the version and length for an existing file.
//# Otherwise set put-flag.
resync();
sizeChar_p = ValType::getCanonicalSize (TpChar, bigEndian);
sizeuChar_p = ValType::getCanonicalSize (TpUChar, bigEndian);
sizeShort_p = ValType::getCanonicalSize (TpShort, bigEndian);
sizeuShort_p = ValType::getCanonicalSize (TpUShort, bigEndian);
sizeInt_p = ValType::getCanonicalSize (TpInt, bigEndian);
sizeuInt_p = ValType::getCanonicalSize (TpUInt, bigEndian);
sizeInt64_p = ValType::getCanonicalSize (TpInt64, bigEndian);
sizeFloat_p = ValType::getCanonicalSize (TpFloat, bigEndian);
sizeDouble_p = ValType::getCanonicalSize (TpDouble, bigEndian);
}
//# Close the file.
//# Delete it if required.
StManArrayFile::~StManArrayFile ()
{
//# Write the version and file length at the beginning.
flush (False);
}
Bool StManArrayFile::flush (Bool)
{
if (hasPut_p) {
setpos (0);
put (version_p);
iofil_p->write (1, &leng_p);
hasPut_p = False;
file_p->flush();
setpos (leng_p);
return True;
}
return False;
}
// Resync the file (i.e. clear possible cache information).
void StManArrayFile::resync()
{
file_p->resync();
if (iofil_p->seek (0, ByteIO::End) > 0) {
setpos (0);
get (version_p);
iofil_p->read (1, &leng_p);
}else{
setpos (0);
put (version_p);
iofil_p->write (1, &leng_p);
//# Put a 0 to fill up the buffer and make valgrind happy.
put (Int(0));
hasPut_p = True;
}
}
void StManArrayFile::setpos (Int64 pos)
{
Int64 newpos = iofil_p->seek (pos);
if (newpos != pos) {
throw (DataManError ("StManArrayFile::setpos failed in file " +
file_p->fileName()));
}
}
void StManArrayFile::put (Int64 fileOff, Int64 arrayOff, uInt64 nr,
const Float* data)
{
setpos (fileOff + arrayOff*sizeFloat_p);
iofil_p->write (nr, data);
hasPut_p = True;
}
uInt StManArrayFile::putShape (const IPosition& shape, Int64& offset,
const Float*)
{ return putRes (shape, offset, sizeFloat_p); }
void StManArrayFile::get (Int64 fileOff, Int64 arrayOff, uInt64 nr,
Float* data)
{
setpos (fileOff + arrayOff*sizeFloat_p);
iofil_p->read (nr, data);
}
void StManArrayFile::copyArrayFloat (Int64 to, Int64 from, uInt64 nr)
{ copyData (to, from, nr*sizeFloat_p); }
//# Put a vector at the given offset.
#define STMANARRAYFILE_PUTGET(T,SIZEDTYPE) \
void StManArrayFile::put (Int64 fileOff, Int64 arrayOff, uInt64 nr, \
const T* data) \
{ \
setpos (fileOff + arrayOff*SIZEDTYPE); \
iofil_p->write (nr, data); \
hasPut_p = True; \
} \
uInt StManArrayFile::putShape (const IPosition& shape, Int64& offset, \
const T*) \
{ return putRes (shape, offset, SIZEDTYPE); } \
void StManArrayFile::get (Int64 fileOff, Int64 arrayOff, uInt64 nr, T* data) \
{ \
setpos (fileOff + arrayOff*SIZEDTYPE); \
iofil_p->read (nr, data); \
} \
void StManArrayFile::aips_name2(copyArray,T) (Int64 to, Int64 from, uInt64 nr)\
{ copyData (to, from, nr*SIZEDTYPE); }
STMANARRAYFILE_PUTGET(Char, sizeChar_p)
STMANARRAYFILE_PUTGET(uChar, sizeuChar_p)
STMANARRAYFILE_PUTGET(Short, sizeShort_p)
STMANARRAYFILE_PUTGET(uShort, sizeuShort_p)
STMANARRAYFILE_PUTGET(Int, sizeInt_p)
STMANARRAYFILE_PUTGET(uInt, sizeuInt_p)
STMANARRAYFILE_PUTGET(Int64, sizeInt64_p)
STMANARRAYFILE_PUTGET(uInt64, sizeuInt64_p)
//#//STMANARRAYFILE_PUTGET(Float, sizeFloat_p)
STMANARRAYFILE_PUTGET(Double, sizeDouble_p)
//#//STMANARRAYFILE_PUTGET(long double, sizeLDouble_p)
//# Handle it for Bool.
void StManArrayFile::put (Int64 fileOff, Int64 arrayOff, uInt64 nr,
const Bool* data)
{
//# Bools are stored as bits, thus a bit more complex.
uInt64 start = arrayOff / 8;
uInt stbit = arrayOff - 8 * start;
uInt64 end = (arrayOff + nr) / 8;
uInt endbit = arrayOff + nr - 8 * end;
if (endbit != 0) {
end++;
}
//# Allocate a buffer of the required length.
//# Read first and/or last byte when partially accessed.
uChar* buf = new uChar[end - start];
if (endbit != 0) {
setpos (fileOff + end - 1);
iofil_p->read (1, buf+end-start-1);
}
//# Avoid reading same byte twice if all bits are in 1 byte.
if (stbit != 0 && (endbit == 0 || start < end-1)) {
setpos (fileOff + start);
iofil_p->read (1, buf);
}
Conversion::boolToBit (buf, data, stbit, nr);
setpos (fileOff + start);
iofil_p->write (end - start, buf);
hasPut_p = True;
delete [] buf;
}
uInt StManArrayFile::putShape (const IPosition& shape, Int64& offset,
const Bool*)
{ return putRes (shape, offset, 0.125); }
void StManArrayFile::get (Int64 fileOff, Int64 arrayOff, uInt64 nr, Bool* data)
{
//# Bools are stored as bits, thus a bit more complex.
uInt64 start = arrayOff / 8;
uInt stbit = arrayOff - 8 * start;
uInt64 end = (arrayOff + nr) / 8;
uInt endbit = arrayOff + nr - 8 * end;
if (endbit != 0) {
end++;
}
//# Allocate a buffer of the required length.
uChar* buf = new uChar[end - start];
setpos (fileOff + start);
iofil_p->read (end - start, buf);
Conversion::bitToBool (data, buf, stbit, nr);
delete [] buf;
}
void StManArrayFile::copyArrayBool (Int64 to, Int64 from, uInt64 nr)
{ copyData (to, from, (nr+7)/8); }
//# Handle it for Complex and String.
//# A Complex consists of 2 float values.
//# For a string its file offset gets stored (as a uInt), while the
//# string itself will be put at the end of the file.
uInt StManArrayFile::putShape (const IPosition& shape, Int64& offset,
const Complex*)
{ return putRes (shape, offset, 2*sizeFloat_p); }
uInt StManArrayFile::putShape (const IPosition& shape, Int64& offset,
const DComplex*)
{ return putRes (shape, offset, 2*sizeDouble_p); }
uInt StManArrayFile::putShape (const IPosition& shape, Int64& offset,
const String*)
{
uInt n = putRes (shape, offset, sizeuInt_p);
uInt64 nr = shape.product();
Block<uInt> data(nr, 0u);
put (offset+n, 0, nr, data.storage());
return n;
}
//# Put a complex vector at the given file offset.
void StManArrayFile::put (Int64 fileOff, Int64 arrayOff, uInt64 nr,
const Complex* data)
{
setpos (fileOff + arrayOff*2*sizeFloat_p);
iofil_p->write (2*nr, (const Float*)data);
hasPut_p = True;
}
void StManArrayFile::put (Int64 fileOff, Int64 arrayOff, uInt64 nr,
const DComplex* data)
{
setpos (fileOff + arrayOff*2*sizeDouble_p);
iofil_p->write (2*nr, (const Double*)data);
hasPut_p = True;
}
//# Put a string at the given file offset.
void StManArrayFile::put (Int64 fileOff, Int64 arrayOff, uInt64 nr,
const String* data)
{
//# Get file offset for string offset array.
//# Allocate a buffer to hold 4096 string offsets.
Int64 offs = fileOff + arrayOff*sizeuInt_p;
uInt buf[4096];
uInt64 n;
while (nr > 0) {
n = (nr < 4096 ? nr : 4096);
setpos (leng_p); // position at end of file
for (uInt64 i=0; i<n; i++) {
// The offset in the file is an uInt.
// Note: this should be fixed one time and make it uInt64.
AlwaysAssert (leng_p < Int64(65536)*65536, DataManError);
buf[i] = leng_p;
leng_p += put (uInt(data->length())); // write string length
leng_p += iofil_p->write (data->length(), data->chars());
data++;
}
//# Write the offsets.
setpos (offs);
offs += iofil_p->write (n, buf);
hasPut_p = True;
nr -= n;
}
}
//# Get a complex vector at the given file offset.
void StManArrayFile::get (Int64 fileOff, Int64 arrayOff, uInt64 nr,
Complex* data)
{
setpos (fileOff + arrayOff*2*sizeFloat_p);
iofil_p->read (2*nr, (Float*)data);
}
void StManArrayFile::get (Int64 fileOff, Int64 arrayOff, uInt64 nr,
DComplex* data)
{
setpos (fileOff + arrayOff*2*sizeDouble_p);
iofil_p->read (2*nr, (Double*)data);
}
//# Get a string at the given file offset.
void StManArrayFile::get (Int64 fileOff, Int64 arrayOff, uInt64 nr,
String* data)
{
//# Get file offset for string offset array.
//# Allocate a buffer to hold 4096 string offsets.
Int64 offs = fileOff + arrayOff*sizeuInt_p;
uInt buf[4096];
uInt64 n;
uInt l;
while (nr > 0) {
n = (nr < 4096 ? nr : 4096);
setpos (offs);
offs += iofil_p->read (n, buf);
for (uInt64 i=0; i<n; i++) {
if (buf[i] == 0) {
*data = String();
} else {
setpos (buf[i]);
get (l); // read string length
data->resize (l); // resize storage which adds trailing 0
char* ptr = &((*data)[0]); // get actual string
iofil_p->read (data->length(), ptr);
#ifdef USE_OLD_STRING
ptr[l] = '\0';
#endif
}
data++;
}
nr -= n;
}
}
void StManArrayFile::copyArrayComplex (Int64 to, Int64 from, uInt64 nr)
{ copyData (to, from, nr*2*sizeFloat_p); }
void StManArrayFile::copyArrayDComplex (Int64 to, Int64 from, uInt64 nr)
{ copyData (to, from, nr*2*sizeDouble_p); }
void StManArrayFile::copyArrayString (Int64 to, Int64 from, uInt64 nr)
{
String data[4096];
uInt64 ndone = 0;
for (uInt64 n=0; nr>0; nr-=n) {
n = (nr < 4096 ? nr : 4096);
get (from, ndone, n, data);
put (to, ndone, n, data);
ndone += n;
}
}
//# Copy the data of the given length from one file offset to another.
void StManArrayFile::copyData (Int64 to, Int64 from, uInt64 length)
{
uChar buffer[32768];
for (uInt64 n=0; length>0; length-=n) {
n = (length < 32768 ? length : 32768);
setpos (from);
from += iofil_p->read (n, buffer);
setpos (to);
to += iofil_p->write (n, buffer);
hasPut_p = True;
}
}
//# Write shape and reserve file space for the array by
//# increasing the length.
//# Take care it is at 8 byte boundary.
//# Write something in the last byte to make sure the file is extended.
uInt StManArrayFile::putRes (const IPosition& shape, Int64& offset,
float lenElem)
{
leng_p = 8 * ((leng_p+7) / 8);
offset = leng_p;
uInt n = 0;
setpos (leng_p);
// Put reference count in higher versions only.
if (version_p > 0) {
n += put (uInt(1));
}
n += put (uInt(shape.nelements()));
for (uInt i=0; i<shape.nelements(); i++) {
n += put (Int(shape(i)));
}
// Add length of shape and of entire array to file length.
// Take care of rounding (needed for Bool case).
leng_p += n;
leng_p += Int64 (double(shape.product()) * lenElem + 0.95);
setpos (leng_p - 1);
Char c = 0;
iofil_p->write (1, &c);
hasPut_p = True;
return n;
}
//# Get the shape at the given file offset
//# and returns its length in the file.
uInt StManArrayFile::getShape (Int64 fileOff, IPosition& shape)
{
setpos (fileOff);
uInt n=0;
if (version_p > 0) {
uInt refCount;
n = get (refCount);
}
uInt nr;
n += get (nr);
shape.resize (nr);
Int tmp;
for (uInt i=0; i<nr; i++) {
n += get (tmp);
shape(i) = tmp;
}
return n;
}
//# Update the reference count.
uInt StManArrayFile::getRefCount (Int64 offset)
{
if (version_p == 0) {
return 1;
}
setpos (offset);
uInt refCount;
get (refCount);
return refCount;
}
//# Update the reference count.
void StManArrayFile::putRefCount (uInt refCount, Int64 offset)
{
// For version 0 only a dummy put (i.e. value 1) is allowed.
if (version_p == 0) {
AlwaysAssert (refCount==1, AipsError);
}else{
setpos (offset);
put (refCount);
}
}
} //# NAMESPACE CASACORE - END
|