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 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
|
//# TableRecord.cc: A hierarchical collection of named fields of various types
//# Copyright (C) 1995,1996,1997,1998,1999,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: aips2-request@nrao.edu.
//# Postal address: AIPS++ Project Office
//# National Radio Astronomy Observatory
//# 520 Edgemont Road
//# Charlottesville, VA 22903-2475 USA
//#
//# $Id$
#include <casacore/tables/Tables/TableRecord.h>
#include <casacore/tables/Tables/TableKeyword.h>
#include <casacore/tables/Tables/Table.h>
#include <casacore/casa/Containers/Record.h>
#include <casacore/casa/Containers/ValueHolder.h>
#include <casacore/casa/IO/AipsIO.h>
#include <casacore/casa/Arrays/IPosition.h>
#include <casacore/casa/Exceptions/Error.h>
#include <casacore/casa/Utilities/Assert.h>
namespace casacore { //# NAMESPACE CASACORE - BEGIN
TableRecord::TableRecord()
: RecordInterface (),
rep_p (new TableRecordRep),
parent_p (0)
{}
TableRecord::TableRecord (RecordType type,
CheckFieldFunction* func, const void* checkArgument)
: RecordInterface (type, func, checkArgument),
rep_p (new TableRecordRep),
parent_p (0)
{}
TableRecord::TableRecord (const RecordDesc& description,
RecordType type,
CheckFieldFunction* func, const void* checkArgument)
: RecordInterface (type, func, checkArgument),
rep_p (new TableRecordRep (description)),
parent_p (0)
{}
// When description is empty, TableRecord is not fixed.
TableRecord::TableRecord (TableRecordRep* parent,
const RecordDesc& description)
: RecordInterface (description.nfields()==0 ? Variable : Fixed, 0, 0),
rep_p (new TableRecordRep (description)),
parent_p (parent)
{}
TableRecord::TableRecord (TableRecordRep* parent, RecordType type)
: RecordInterface (type, 0, 0),
rep_p (new TableRecordRep),
parent_p (parent)
{}
TableRecord::TableRecord (const TableRecord& other)
: RecordInterface (other),
rep_p (other.rep_p),
parent_p (other.parent_p)
{}
TableRecord::TableRecord (const RecordInterface& other)
: RecordInterface (other),
parent_p (0)
{
// If the RecordInterface is a TableRecord, assign it immediately.
const TableRecord* trecp = dynamic_cast<const TableRecord*>(&other);
if (trecp != 0) {
rep_p = trecp->rep_p;
} else {
rep_p.set (new TableRecordRep (other.description()));
uInt n = other.nfields();
const RecordDesc& desc = description();
for (uInt i=0; i<n; i++) {
DataType dtype = desc.type(i);
if (dtype == TpRecord) {
const RecordInterface& subrec = *((RecordInterface*)
(other.get_pointer (i, dtype)));
defineRecord (i, TableRecord (subrec),
subrec.isFixed() ? Fixed : Variable);
} else if (dtype == TpTable) {
const TableKeyword& tabkey = *(const TableKeyword*)
(other.get_pointer (i, dtype));
defineTable (i, tabkey.table(),
tabkey.isFixed() ? Fixed : Variable);
}else{
rep_p->copyDataField (dtype, i, other.get_pointer (i, dtype));
}
}
}
}
TableRecord& TableRecord::operator= (const TableRecord& other)
{
// Assignment is only possible when the Record is empty or
// when their layout match or when the Record is non-fixed.
// When non-fixed or empty, we simply replace the representation.
// Otherwise we replace all values (in which case we do not need
// to replace the RecordFieldPtr pointers).
if (this != &other) {
if (! isFixed() || nfields() == 0) {
notify (RecordNotice (RecordNotice::DETACH, 0));
rep_p = other.rep_p;
}else{
AlwaysAssert (conform (other), AipsError);
rwRef().copyData (other.ref());
}
}
return *this;
}
TableRecord::~TableRecord()
{}
RecordInterface* TableRecord::clone() const
{
return new TableRecord (*this);
}
void TableRecord::assign (const RecordInterface& that)
{
// We want the subrecords to be variable if the main record
// is variable and empty.
// Operator= does not always preserve the type of subrecords,
// so we do a hack by setting the type explicitly.
Bool var = (nfields() == 0 && !isFixed());
*this = TableRecord (that);
if (var) {
setRecordType (Variable);
}
}
void TableRecord::print (ostream& os, Int maxNrValues,
const String& indent) const
{
rep_p.ref().print (os, maxNrValues, indent);
}
void TableRecord::makeUnique()
{
rwRef();
}
TableRecordRep& TableRecord::rwRef()
{
const TableRecordRep& oldRep = rep_p.ref();
TableRecordRep& newRep = rep_p.rwRef();
if (&oldRep != &newRep) {
notify (RecordNotice (RecordNotice::ACQUIRE, 0));
}
return newRep;
}
const String& TableRecord::comment (const RecordFieldId& id) const
{
Int whichField = idToNumber (id);
return ref().comment (whichField);
}
void TableRecord::setComment (const RecordFieldId& id, const String& comment)
{
Int whichField = idToNumber (id);
rwRef().setComment (whichField, comment);
}
RecordDesc TableRecord::getDescription() const
{
return ref().description();
}
void TableRecord::restructure (const RecordDesc& newDescription,
Bool recursive)
{
// Restructure is not possible for fixed records.
throwIfFixed();
// Restructuring means that all RecordFieldPtr's get invalid.
notify (RecordNotice (RecordNotice::DETACH, 0));
rwRef().restructure (newDescription, recursive);
}
void TableRecord::setRecordType (RecordType rtype)
{
recordType() = rtype;
// Iterate through all fields to make the subrecords the required type.
uInt nf = nfields();
for (uInt i=0; i<nf; i++) {
if (type(i) == TpRecord) {
rwSubRecord(i).setRecordType (rtype);
}
}
}
uInt TableRecord::nfields() const
{
return description().nfields();
}
Int TableRecord::fieldNumber (const String& fieldName) const
{
return description().fieldNumber (fieldName);
}
DataType TableRecord::type (Int whichField) const
{
return description().type (whichField);
}
void TableRecord::removeField (const RecordFieldId& id)
{
throwIfFixed();
Int whichField = idToNumber (id);
rwRef().removeField (whichField);
notify (RecordNotice (RecordNotice::REMOVE, whichField));
}
void TableRecord::renameField (const String& newName, const RecordFieldId& id)
{
rwRef().renameField (newName, idToNumber(id));
}
void TableRecord::addDataField (const String& name, DataType type,
const IPosition& shape, Bool fixedShape,
const void* value)
{
rwRef().addDataField (name, type, shape, fixedShape, value);
}
void TableRecord::defineDataField (Int whichField, DataType type,
const void* value)
{
rwRef().defineDataField (whichField, type, value);
}
void* TableRecord::get_pointer (Int whichField, DataType type) const
{
return ref().get_pointer (whichField, type);
}
void* TableRecord::get_pointer (Int whichField, DataType type,
const String& recordType) const
{
return ref().get_pointer (whichField, type, recordType);
}
void TableRecord::defineRecord (const RecordFieldId& id,
const RecordInterface& value, RecordType type)
{
defineRecord (id, TableRecord (value), type);
}
void TableRecord::defineRecord (const RecordFieldId& id,
const TableRecord& value,
RecordInterface::RecordType type)
{
Int whichField = newIdToNumber (id);
if (whichField < 0) {
throwIfFixed();
String name;
if (id.byName()) {
name = id.fieldName();
}else{
name = description().makeName (id.fieldNumber());
}
checkName (name, TpRecord);
rwRef().addField (name, value, type);
}else{
rwRef().defineDataField (whichField, TpRecord, &value);
TableRecord& subrec = *(TableRecord*)get_pointer (whichField, TpRecord);
subrec.recordType() = type;
}
}
void TableRecord::defineTable (const RecordFieldId& id,
const Table& value,
RecordInterface::RecordType type)
{
Int whichField = newIdToNumber (id);
if (whichField < 0 && id.byName()) {
throwIfFixed();
checkName (id.fieldName(), TpTable);
rwRef().addField (id.fieldName(), value, type);
}else{
rwRef().defineDataField (whichField, TpTable, &value);
}
}
const RecordInterface& TableRecord::asRecord (const RecordFieldId& id) const
{
return subRecord (id);
}
RecordInterface& TableRecord::asrwRecord (const RecordFieldId& id)
{
return rwSubRecord (id);
}
const TableRecord& TableRecord::subRecord (const RecordFieldId& id) const
{
Int whichField = idToNumber (id);
return *(const TableRecord*)get_pointer (whichField, TpRecord);
}
TableRecord& TableRecord::rwSubRecord (const RecordFieldId& id)
{
Int whichField = idToNumber (id);
rwRef();
return *(TableRecord*)get_pointer (whichField, TpRecord);
}
Table TableRecord::asTable (const RecordFieldId& id) const
{
Int whichField = idToNumber (id);
return ((const TableKeyword*)get_pointer (whichField, TpTable))->table();
}
Table TableRecord::asTable (const RecordFieldId& id,
const TableLock& lockOptions) const
{
Int whichField = idToNumber (id);
const Table& tab =
((const TableKeyword*)get_pointer (whichField,
TpTable))->table(&lockOptions);
/*
String name = tab.tableName();
int option = tab.tableOption();
if (option == Table::New || option == Table::NewNoReplace) {
option = Table::Update;
}
// Close the table in the record, otherwise the new lock options
// may have no effect.
// Only do this for a plain table.
if (tab.tableType() == Table::Plain) {
closeTable (id);
return Table (name, lockOptions, Table::TableOption(option));
}
*/
return tab;
}
const TableAttr& TableRecord::tableAttributes (const RecordFieldId& id) const
{
Int whichField = idToNumber (id);
return ((const TableKeyword*)get_pointer (whichField, TpTable))->
tableAttributes();
}
void TableRecord::closeTable (const RecordFieldId& id) const
{
Int whichField = idToNumber (id);
ref().closeTable (whichField);
}
void TableRecord::mergeField (const TableRecord& other,
const RecordFieldId& id, DuplicatesFlag flag)
{
throwIfFixed();
Int whichField = other.idToNumber (id);
rwRef().mergeField (other.ref(), whichField, flag);
}
void TableRecord::merge (const TableRecord& other, DuplicatesFlag flag)
{
AlwaysAssert (this != &other, AipsError);
throwIfFixed();
rwRef().merge (other.ref(), flag);
}
AipsIO& operator<< (AipsIO& os, const TableRecord& rec)
{
rec.putRecord (os, TableAttr());
return os;
}
AipsIO& operator>> (AipsIO& os, TableRecord& rec)
{
rec.getRecord (os, TableAttr());
return os;
}
void TableRecord::putRecord (AipsIO& os, const TableAttr& parentAttr) const
{
ref().putRecord (os, recordType(), parentAttr);
}
void TableRecord::getRecord (AipsIO& os, const TableAttr& parentAttr)
{
// Get is only possible when the Record is empty or when
// the Record is non-fixed.
AlwaysAssert ((! isFixed() || nfields() == 0), AipsError);
// Possible RecordFieldPtr's have to be detached.
notify (RecordNotice (RecordNotice::DETACH, 0));
// Reading the record type back means casting it from an int
// to the correct type.
Int type;
rwRef().getRecord (os, type, parentAttr);
recordType() = (RecordInterface::RecordType)type;
}
void TableRecord::setTableAttr (const TableRecord& other,
const TableAttr& defaultAttr)
{
uInt n = nfields();
const RecordDesc& desc = description();
for (uInt i=0; i<n; i++) {
DataType dtype = desc.type(i);
if (dtype == TpRecord) {
// Handle a subrecord (which may contain subtables).
TableRecord& subrec = *(TableRecord*)(get_pointer (i, dtype));
// Take the corresponding subrecord from the other keyset.
// Use an empty record if undefined.
const String& fname = desc.name(i);
if (other.isDefined (fname)) {
subrec.setTableAttr (other.subRecord(fname), defaultAttr);
} else {
subrec.setTableAttr (TableRecord(), defaultAttr);
}
} else if (dtype == TpTable) {
// Handle a subtable.
TableKeyword& tabkey = *(TableKeyword*)(get_pointer (i, dtype));
// Get the attributes from other; use the default one if undefined.
TableAttr attr(defaultAttr);
const String& fname = desc.name(i);
if (other.isDefined (fname)) {
attr = other.tableAttributes (fname);
}
// Always use the new name.
attr.setName (tabkey.tableAttributes().name());
tabkey.setTableAttributes (attr);
}
}
}
Record TableRecord::toRecord() const
{
Record rec;
uInt nr = nfields();
for (uInt i=0; i<nr; i++) {
asValueHolder(i).toRecord (rec, name(i));
}
return rec;
}
ValueHolder TableRecord::asValueHolder (const RecordFieldId& fieldId) const
{
switch (dataType(fieldId)) {
case TpTable:
return ValueHolder ("Table: " + tableAttributes(fieldId).name());
case TpRecord:
return ValueHolder (subRecord(fieldId).toRecord());
default:
return RecordInterface::asValueHolder (fieldId);
}
}
void TableRecord::fromRecord (const Record& rec)
{
for (uInt i=0; i<rec.nfields(); i++) {
defineFromValueHolder (rec.name(i),
ValueHolder::fromRecord(rec, i));
}
}
void TableRecord::defineFromValueHolder (const RecordFieldId& fieldId,
const ValueHolder& value)
{
switch (value.dataType()) {
case TpString:
{
String val = value.asString();
if (val.index("Table: ") == 0 && Table::isReadable (val.from(7))) {
Table tab(val.from(7));
defineTable (fieldId, tab);
} else {
define (fieldId, val);
}
}
break;
case TpRecord:
{
TableRecord trec;
trec.fromRecord(value.asRecord());
defineRecord (fieldId, trec);
}
break;
default:
RecordInterface::defineFromValueHolder (fieldId, value);
}
}
} //# NAMESPACE CASACORE - END
|