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 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
|
//# StManColumn.h: Base storage manager column class
//# Copyright (C) 1994,1995,1996,1998,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
#ifndef TABLES_STMANCOLUMN_H
#define TABLES_STMANCOLUMN_H
//# Includes
#include <casacore/casa/aips.h>
#include <casacore/tables/DataMan/StManColumnBase.h>
#include <casacore/casa/Arrays/IPosition.h>
namespace casacore { //# NAMESPACE CASACORE - BEGIN
// <summary>
// Base table column storage manager class
// </summary>
// <use visibility=local>
// <reviewed reviewer="Gareth Hunt" date="94Nov17" tests="">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
// <li> DataManagerColumn
// </prerequisite>
// <etymology>
// StManColumn handles a column for a storage manager.
// </etymology>
// <synopsis>
// StManColumn is the old storage manager base class which has been replaced
// by StManColumnBase.
// However, the class still exists for backward compatibility for external storage
// managers (such as LofarStMan) that do not derive from StManColumnBase yet.
// It also maps the new get/put functions taking a rownr_t to the old
// functions taking a uInt rownr.
// </synopsis>
// <motivation>
// Provide backward compatibility for external storage managers.
// </motivation>
// <todo asof="$DATE:$">
//# A List of bugs, limitations, extensions or planned refinements.
// </todo>
class StManColumn : public StManColumnBase
{
public:
// Default constructor.
StManColumn (int dataType)
: StManColumnBase (dataType)
{}
virtual ~StManColumn();
// The object cannot be copied.
StManColumn (const StManColumn&) = delete;
// The object cannot be assigned to.
StManColumn& operator= (const StManColumn&) = delete;
// Set the shape of an (variable-shaped) array in the given row.
// By default it throws a "not possible" exception.
virtual void setShape (rownr_t rownr, const IPosition& shape);
virtual void setShape (uInt rownr, const IPosition& shape);
// Set the shape and tile shape of an (variable-shaped) array
// in the given row.
// By default it ignores the tile shape (thus only sets the shape).
virtual void setShapeTiled (rownr_t rownr, const IPosition& shape,
const IPosition& tileShape);
virtual void setShapeTiled (uInt rownr, const IPosition& shape,
const IPosition& tileShape);
// Is the value shape defined in the given row?
// By default it returns True.
virtual Bool isShapeDefined (rownr_t rownr);
virtual Bool isShapeDefined (uInt rownr);
// Get the dimensionality of the item in the given row.
// By default it returns shape(rownr).nelements().
virtual uInt ndim (rownr_t rownr);
virtual uInt ndim (uInt rownr);
// Get the shape of the item in the given row.
// By default it returns a zero-length IPosition (for a scalar value).
virtual IPosition shape (rownr_t rownr);
virtual IPosition shape (uInt rownr);
// Get the tile shape of the item in the given row.
// By default it returns a zero-length IPosition.
virtual IPosition tileShape (rownr_t rownr);
virtual IPosition tileShape (uInt rownr);
// Get the scalar value in the given row.
// <group>
virtual void getBool (rownr_t rownr, Bool* dataPtr);
virtual void getuChar (rownr_t rownr, uChar* dataPtr);
virtual void getShort (rownr_t rownr, Short* dataPtr);
virtual void getuShort (rownr_t rownr, uShort* dataPtr);
virtual void getInt (rownr_t rownr, Int* dataPtr);
virtual void getuInt (rownr_t rownr, uInt* dataPtr);
virtual void getfloat (rownr_t rownr, float* dataPtr);
virtual void getdouble (rownr_t rownr, double* dataPtr);
virtual void getComplex (rownr_t rownr, Complex* dataPtr);
virtual void getDComplex (rownr_t rownr, DComplex* dataPtr);
virtual void getString (rownr_t rownr, String* dataPtr);
// </group>
// Put the scalar value in the given row.
// <group>
virtual void putBool (rownr_t rownr, const Bool* dataPtr);
virtual void putuChar (rownr_t rownr, const uChar* dataPtr);
virtual void putShort (rownr_t rownr, const Short* dataPtr);
virtual void putuShort (rownr_t rownr, const uShort* dataPtr);
virtual void putInt (rownr_t rownr, const Int* dataPtr);
virtual void putuInt (rownr_t rownr, const uInt* dataPtr);
virtual void putfloat (rownr_t rownr, const float* dataPtr);
virtual void putdouble (rownr_t rownr, const double* dataPtr);
virtual void putComplex (rownr_t rownr, const Complex* dataPtr);
virtual void putDComplex (rownr_t rownr, const DComplex* dataPtr);
virtual void putString (rownr_t rownr, const String* dataPtr);
// </group>
// Get all scalar values in the column.
// The argument dataPtr is in fact a Vector<T>&, but an ArrayBase&
// is needed to be generic.
// The vector pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ScalarColumn getColumn function).
// The default implementation calls the appropriate getScalarColumnXXV.
virtual void getScalarColumnV (ArrayBase& dataPtr);
// Put all scalar values in the column.
// The argument dataPtr is in fact a const Vector<T>&, but a const ArrayBase&
// is needed to be generic.
// The vector pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ScalarColumn putColumn function).
// The default implementation calls the appropriate putScalarColumnXXV.
virtual void putScalarColumnV (const ArrayBase& dataPtr);
// Get some scalar values in the column.
// The argument dataPtr is in fact a Vector<T>&, but an ArrayBase&
// is needed to be generic.
// The vector pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ScalarColumn getColumn function).
// The default implementation calls the appropriate getScalarColumnCellsXXV.
virtual void getScalarColumnCellsV (const RefRows& rownrs,
ArrayBase& dataPtr);
// Put some scalar values in the column.
// The argument dataPtr is in fact a const Vector<T>&, but a const ArrayBase&
// is needed to be generic.
// The vector pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ScalarColumn getColumn function).
// The default implementation calls the appropriate putScalarColumnCellsXXV.
virtual void putScalarColumnCellsV (const RefRows& rownrs,
const ArrayBase& dataPtr);
// Get the array value in the given row.
// The argument dataPtr is in fact an Array<T>&, but a ArrayBase&
// is needed to be generic.
// The array pointed to by dataPtr has to have the correct shape
// (which is guaranteed by the ArrayColumn get function).
// The default implementation calls the appropriate getArrayXXV.
virtual void getArrayV (rownr_t rownr, ArrayBase& dataPtr);
// Put the array value into the given row.
// The argument dataPtr is in fact a const Array<T>&, but a const ArrayBase&
// is needed to be generic.
// The array pointed to by dataPtr has to have the correct shape
// (which is guaranteed by the ArrayColumn put function).
// The default implementation calls the appropriate putArrayXXV.
virtual void putArrayV (rownr_t rownr, const ArrayBase& dataPtr);
// Get all array values in the column.
// The argument dataPtr is in fact an Array<T>&, but a ArrayBase&
// is needed to be generic.
// The vector pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ArrayColumn getColumn function).
// The default implementation calls the appropriate getArrayColumnXXV.
virtual void getArrayColumnV (ArrayBase& dataPtr);
// Put all array values in the column.
// The argument dataPtr is in fact a const Array<T>&, but a const ArrayBase&
// is needed to be generic.
// The vector pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ArrayColumn putColumn function).
// The default implementation calls the appropriate putArrayColumnXXV.
virtual void putArrayColumnV (const ArrayBase& dataPtr);
// Get some array values in the column.
// The argument dataPtr is in fact an Array<T>&, but a ArrayBase&
// is needed to be generic.
// The vector pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ArrayColumn getColumn function).
// The default implementation calls the appropriate getArrayColumnCellsXXV.
virtual void getArrayColumnCellsV (const RefRows& rownrs,
ArrayBase& dataPtr);
// Put some array values in the column.
// The argument dataPtr is in fact an const Array<T>&, but a const ArrayBase&
// is needed to be generic.
// The vector pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ArrayColumn getColumn function).
// The default implementation calls the appropriate putArrayColumnCellsXXV.
virtual void putArrayColumnCellsV (const RefRows& rownrs,
const ArrayBase& dataPtr);
// Get a section of the array in the given row.
// The argument dataPtr is in fact an Array<T>&, but a ArrayBase&
// is needed to be generic.
// The array pointed to by dataPtr has to have the correct shape
// (which is guaranteed by the ArrayColumn getSlice function).
// The default implementation calls the appropriate getSliceXXV.
virtual void getSliceV (rownr_t rownr, const Slicer& slicer,
ArrayBase& dataPtr);
// Put into a section of the array in the given row.
// The argument dataPtr is in fact a const Array<T>&, but a const ArrayBase&
// is needed to be generic.
// The array pointed to by dataPtr has to have the correct shape
// (which is guaranteed by the ArrayColumn putSlice function).
// The default implementation calls the appropriate putSliceXXV.
virtual void putSliceV (rownr_t rownr, const Slicer& slicer,
const ArrayBase& dataPtr);
// Get a section of all arrays in the column.
// The argument dataPtr is in fact an Array<T>&, but a ArrayBase&
// is needed to be generic.
// The array pointed to by dataPtr has to have the correct shape
// (which is guaranteed by the ArrayColumn getColumn function).
// The default implementation calls the appropriate getColumnSliceXXV.
virtual void getColumnSliceV (const Slicer& slicer, ArrayBase& dataPtr);
// Put into a section of all arrays in the column.
// The argument dataPtr is in fact a const Array<T>&, but a const ArrayBase&
// is needed to be generic.
// The array pointed to by dataPtr has to have the correct shape
// (which is guaranteed by the ArrayColumn putColumn function).
// The default implementation calls the appropriate putColumnSliceXXV.
virtual void putColumnSliceV (const Slicer& slicer, const ArrayBase& dataPtr);
// Get a section of some arrays in the column.
// The argument dataPtr is in fact an Array<T>&, but a ArrayBase&
// is needed to be generic.
// The array pointed to by dataPtr has to have the correct shape
// (which is guaranteed by the ArrayColumn getColumn function).
// The default implementation calls the appropriate getColumnSliceCellsXXV.
virtual void getColumnSliceCellsV (const RefRows& rownrs,
const Slicer& slicer, ArrayBase& dataPtr);
// Put into a section of some arrays in the column.
// The argument dataPtr is in fact a const Array<T>&, but a const ArrayBase&
// is needed to be generic.
// The array pointed to by dataPtr has to have the correct shape
// (which is guaranteed by the ArrayColumn putColumn function).
// The default implementation calls the appropriate putColumnSliceCellsXXV.
virtual void putColumnSliceCellsV (const RefRows& rownrs,
const Slicer& slicer,
const ArrayBase& dataPtr);
private:
// Throw an "invalid operation" exception for the default
// implementation of getArray.
void throwInvalidOp(const String &op) const;
protected:
// Get the scalar value in the given row.
// <group>
virtual void getBoolV (uInt rownr, Bool* dataPtr);
virtual void getuCharV (uInt rownr, uChar* dataPtr);
virtual void getShortV (uInt rownr, Short* dataPtr);
virtual void getuShortV (uInt rownr, uShort* dataPtr);
virtual void getIntV (uInt rownr, Int* dataPtr);
virtual void getuIntV (uInt rownr, uInt* dataPtr);
virtual void getfloatV (uInt rownr, float* dataPtr);
virtual void getdoubleV (uInt rownr, double* dataPtr);
virtual void getComplexV (uInt rownr, Complex* dataPtr);
virtual void getDComplexV (uInt rownr, DComplex* dataPtr);
virtual void getStringV (uInt rownr, String* dataPtr);
// </group>
// Put the scalar value in the given row.
// <group>
virtual void putBoolV (uInt rownr, const Bool* dataPtr);
virtual void putuCharV (uInt rownr, const uChar* dataPtr);
virtual void putShortV (uInt rownr, const Short* dataPtr);
virtual void putuShortV (uInt rownr, const uShort* dataPtr);
virtual void putIntV (uInt rownr, const Int* dataPtr);
virtual void putuIntV (uInt rownr, const uInt* dataPtr);
virtual void putfloatV (uInt rownr, const float* dataPtr);
virtual void putdoubleV (uInt rownr, const double* dataPtr);
virtual void putComplexV (uInt rownr, const Complex* dataPtr);
virtual void putDComplexV (uInt rownr, const DComplex* dataPtr);
virtual void putStringV (uInt rownr, const String* dataPtr);
// </group>
// Get the scalar values in the entire column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ScalarColumn getColumn function).
// The default implementations calls DataManagerColumn::getScalarColumnBase.
// <group>
virtual void getScalarColumnBoolV (Vector<Bool>* dataPtr);
virtual void getScalarColumnuCharV (Vector<uChar>* dataPtr);
virtual void getScalarColumnShortV (Vector<Short>* dataPtr);
virtual void getScalarColumnuShortV (Vector<uShort>* dataPtr);
virtual void getScalarColumnIntV (Vector<Int>* dataPtr);
virtual void getScalarColumnuIntV (Vector<uInt>* dataPtr);
virtual void getScalarColumnInt64V (Vector<Int64>* dataPtr);
virtual void getScalarColumnfloatV (Vector<float>* dataPtr);
virtual void getScalarColumndoubleV (Vector<double>* dataPtr);
virtual void getScalarColumnComplexV (Vector<Complex>* dataPtr);
virtual void getScalarColumnDComplexV (Vector<DComplex>* dataPtr);
virtual void getScalarColumnStringV (Vector<String>* dataPtr);
// </group>
// Put the scalar values into the entire column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ScalarColumn putColumn function).
// The default implementations calls DataManagerColumn::putScalarColumnBase.
// <group>
virtual void putScalarColumnBoolV (const Vector<Bool>* dataPtr);
virtual void putScalarColumnuCharV (const Vector<uChar>* dataPtr);
virtual void putScalarColumnShortV (const Vector<Short>* dataPtr);
virtual void putScalarColumnuShortV (const Vector<uShort>* dataPtr);
virtual void putScalarColumnIntV (const Vector<Int>* dataPtr);
virtual void putScalarColumnuIntV (const Vector<uInt>* dataPtr);
virtual void putScalarColumnInt64V (const Vector<Int64>* dataPtr);
virtual void putScalarColumnfloatV (const Vector<float>* dataPtr);
virtual void putScalarColumndoubleV (const Vector<double>* dataPtr);
virtual void putScalarColumnComplexV (const Vector<Complex>* dataPtr);
virtual void putScalarColumnDComplexV (const Vector<DComplex>* dataPtr);
virtual void putScalarColumnStringV (const Vector<String>* dataPtr);
// </group>
// Get the scalar values in some cells of the column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ScalarColumn getColumnCells function).
// The default implementations call DataManagerColumn::getScalarColumnCellsBase.
// <group>
virtual void getScalarColumnCellsBoolV (const RefRows& rownrs,
Vector<Bool>* dataPtr);
virtual void getScalarColumnCellsuCharV (const RefRows& rownrs,
Vector<uChar>* dataPtr);
virtual void getScalarColumnCellsShortV (const RefRows& rownrs,
Vector<Short>* dataPtr);
virtual void getScalarColumnCellsuShortV (const RefRows& rownrs,
Vector<uShort>* dataPtr);
virtual void getScalarColumnCellsIntV (const RefRows& rownrs,
Vector<Int>* dataPtr);
virtual void getScalarColumnCellsuIntV (const RefRows& rownrs,
Vector<uInt>* dataPtr);
virtual void getScalarColumnCellsInt64V (const RefRows& rownrs,
Vector<Int64>* dataPtr);
virtual void getScalarColumnCellsfloatV (const RefRows& rownrs,
Vector<float>* dataPtr);
virtual void getScalarColumnCellsdoubleV (const RefRows& rownrs,
Vector<double>* dataPtr);
virtual void getScalarColumnCellsComplexV (const RefRows& rownrs,
Vector<Complex>* dataPtr);
virtual void getScalarColumnCellsDComplexV (const RefRows& rownrs,
Vector<DComplex>* dataPtr);
virtual void getScalarColumnCellsStringV (const RefRows& rownrs,
Vector<String>* dataPtr);
// </group>
// Put the scalar values into some cells of the column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ScalarColumn putColumnCells function).
// The default implementations call DataManagerColumn::putScalarColumnCellsBase.
// <group>
virtual void putScalarColumnCellsBoolV (const RefRows& rownrs,
const Vector<Bool>* dataPtr);
virtual void putScalarColumnCellsuCharV (const RefRows& rownrs,
const Vector<uChar>* dataPtr);
virtual void putScalarColumnCellsShortV (const RefRows& rownrs,
const Vector<Short>* dataPtr);
virtual void putScalarColumnCellsuShortV (const RefRows& rownrs,
const Vector<uShort>* dataPtr);
virtual void putScalarColumnCellsIntV (const RefRows& rownrs,
const Vector<Int>* dataPtr);
virtual void putScalarColumnCellsuIntV (const RefRows& rownrs,
const Vector<uInt>* dataPtr);
virtual void putScalarColumnCellsInt64V (const RefRows& rownrs,
const Vector<Int64>* dataPtr);
virtual void putScalarColumnCellsfloatV (const RefRows& rownrs,
const Vector<float>* dataPtr);
virtual void putScalarColumnCellsdoubleV (const RefRows& rownrs,
const Vector<double>* dataPtr);
virtual void putScalarColumnCellsComplexV (const RefRows& rownrs,
const Vector<Complex>* dataPtr);
virtual void putScalarColumnCellsDComplexV (const RefRows& rownrs,
const Vector<DComplex>* dataPtr);
virtual void putScalarColumnCellsStringV (const RefRows& rownrs,
const Vector<String>* dataPtr);
// </group>
// Get the array value in the given row.
// The array pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ArrayColumn get function).
// The default implementations throw an exception.
// <group>
virtual void getArrayBoolV (uInt rownr, Array<Bool>* dataPtr);
virtual void getArrayuCharV (uInt rownr, Array<uChar>* dataPtr);
virtual void getArrayShortV (uInt rownr, Array<Short>* dataPtr);
virtual void getArrayuShortV (uInt rownr, Array<uShort>* dataPtr);
virtual void getArrayIntV (uInt rownr, Array<Int>* dataPtr);
virtual void getArrayuIntV (uInt rownr, Array<uInt>* dataPtr);
virtual void getArrayInt64V (uInt rownr, Array<Int64>* dataPtr);
virtual void getArrayfloatV (uInt rownr, Array<float>* dataPtr);
virtual void getArraydoubleV (uInt rownr, Array<double>* dataPtr);
virtual void getArrayComplexV (uInt rownr, Array<Complex>* dataPtr);
virtual void getArrayDComplexV (uInt rownr, Array<DComplex>* dataPtr);
virtual void getArrayStringV (uInt rownr, Array<String>* dataPtr);
// </group>
// Put the array value into the given row.
// The buffer pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ArrayColumn put function).
// The default implementations throw an exception.
// <group>
virtual void putArrayBoolV (uInt rownr,
const Array<Bool>* dataPtr);
virtual void putArrayuCharV (uInt rownr,
const Array<uChar>* dataPtr);
virtual void putArrayShortV (uInt rownr,
const Array<Short>* dataPtr);
virtual void putArrayuShortV (uInt rownr,
const Array<uShort>* dataPtr);
virtual void putArrayIntV (uInt rownr,
const Array<Int>* dataPtr);
virtual void putArrayuIntV (uInt rownr,
const Array<uInt>* dataPtr);
virtual void putArrayInt64V (uInt rownr,
const Array<Int64>* dataPtr);
virtual void putArrayfloatV (uInt rownr,
const Array<float>* dataPtr);
virtual void putArraydoubleV (uInt rownr,
const Array<double>* dataPtr);
virtual void putArrayComplexV (uInt rownr,
const Array<Complex>* dataPtr);
virtual void putArrayDComplexV (uInt rownr,
const Array<DComplex>* dataPtr);
virtual void putArrayStringV (uInt rownr,
const Array<String>* dataPtr);
// </group>
// Get the array values in the entire column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ArrayColumn getColumn function).
// The default implementations call DataManagerColumn::getArrayColumnBase.
// <group>
virtual void getArrayColumnBoolV (Array<Bool>* dataPtr);
virtual void getArrayColumnuCharV (Array<uChar>* dataPtr);
virtual void getArrayColumnShortV (Array<Short>* dataPtr);
virtual void getArrayColumnuShortV (Array<uShort>* dataPtr);
virtual void getArrayColumnIntV (Array<Int>* dataPtr);
virtual void getArrayColumnuIntV (Array<uInt>* dataPtr);
virtual void getArrayColumnInt64V (Array<Int64>* dataPtr);
virtual void getArrayColumnfloatV (Array<float>* dataPtr);
virtual void getArrayColumndoubleV (Array<double>* dataPtr);
virtual void getArrayColumnComplexV (Array<Complex>* dataPtr);
virtual void getArrayColumnDComplexV (Array<DComplex>* dataPtr);
virtual void getArrayColumnStringV (Array<String>* dataPtr);
// </group>
// Put the array values into the entire column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ArrayColumn putColumn function).
// The default implementations call DataManagerColumn::putArrayColumnBase.
// <group>
virtual void putArrayColumnBoolV (const Array<Bool>* dataPtr);
virtual void putArrayColumnuCharV (const Array<uChar>* dataPtr);
virtual void putArrayColumnShortV (const Array<Short>* dataPtr);
virtual void putArrayColumnuShortV (const Array<uShort>* dataPtr);
virtual void putArrayColumnIntV (const Array<Int>* dataPtr);
virtual void putArrayColumnuIntV (const Array<uInt>* dataPtr);
virtual void putArrayColumnInt64V (const Array<Int64>* dataPtr);
virtual void putArrayColumnfloatV (const Array<float>* dataPtr);
virtual void putArrayColumndoubleV (const Array<double>* dataPtr);
virtual void putArrayColumnComplexV (const Array<Complex>* dataPtr);
virtual void putArrayColumnDComplexV (const Array<DComplex>* dataPtr);
virtual void putArrayColumnStringV (const Array<String>* dataPtr);
// </group>
// Get the array values in some cells of the column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ArrayColumn getColumnCells function).
// The default implementations call DataManagerColumn::getArrayColumnCellsBase.
// <group>
virtual void getArrayColumnCellsBoolV (const RefRows& rownrs,
Array<Bool>* dataPtr);
virtual void getArrayColumnCellsuCharV (const RefRows& rownrs,
Array<uChar>* dataPtr);
virtual void getArrayColumnCellsShortV (const RefRows& rownrs,
Array<Short>* dataPtr);
virtual void getArrayColumnCellsuShortV (const RefRows& rownrs,
Array<uShort>* dataPtr);
virtual void getArrayColumnCellsIntV (const RefRows& rownrs,
Array<Int>* dataPtr);
virtual void getArrayColumnCellsuIntV (const RefRows& rownrs,
Array<uInt>* dataPtr);
virtual void getArrayColumnCellsInt64V (const RefRows& rownrs,
Array<Int64>* dataPtr);
virtual void getArrayColumnCellsfloatV (const RefRows& rownrs,
Array<float>* dataPtr);
virtual void getArrayColumnCellsdoubleV (const RefRows& rownrs,
Array<double>* dataPtr);
virtual void getArrayColumnCellsComplexV (const RefRows& rownrs,
Array<Complex>* dataPtr);
virtual void getArrayColumnCellsDComplexV (const RefRows& rownrs,
Array<DComplex>* dataPtr);
virtual void getArrayColumnCellsStringV (const RefRows& rownrs,
Array<String>* dataPtr);
// </group>
// Put the array values into some cells of the column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ArrayColumn putColumnCells function).
// The default implementations call DataManagerColumn::putArrayColumnCellsBase.
// <group>
virtual void putArrayColumnCellsBoolV (const RefRows& rownrs,
const Array<Bool>* dataPtr);
virtual void putArrayColumnCellsuCharV (const RefRows& rownrs,
const Array<uChar>* dataPtr);
virtual void putArrayColumnCellsShortV (const RefRows& rownrs,
const Array<Short>* dataPtr);
virtual void putArrayColumnCellsuShortV (const RefRows& rownrs,
const Array<uShort>* dataPtr);
virtual void putArrayColumnCellsIntV (const RefRows& rownrs,
const Array<Int>* dataPtr);
virtual void putArrayColumnCellsuIntV (const RefRows& rownrs,
const Array<uInt>* dataPtr);
virtual void putArrayColumnCellsInt64V (const RefRows& rownrs,
const Array<Int64>* dataPtr);
virtual void putArrayColumnCellsfloatV (const RefRows& rownrs,
const Array<float>* dataPtr);
virtual void putArrayColumnCellsdoubleV (const RefRows& rownrs,
const Array<double>* dataPtr);
virtual void putArrayColumnCellsComplexV (const RefRows& rownrs,
const Array<Complex>* dataPtr);
virtual void putArrayColumnCellsDComplexV (const RefRows& rownrs,
const Array<DComplex>* dataPtr);
virtual void putArrayColumnCellsStringV (const RefRows& rownrs,
const Array<String>* dataPtr);
// </group>
// Get the array value in the given row.
// The array pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ArrayColumn getSlice function).
// The default implementations call DataManagerColumn::getSliceBase.
// <group>
virtual void getSliceBoolV (uInt rownr, const Slicer& ns,
Array<Bool>* dataPtr);
virtual void getSliceuCharV (uInt rownr, const Slicer& ns,
Array<uChar>* dataPtr);
virtual void getSliceShortV (uInt rownr, const Slicer& ns,
Array<Short>* dataPtr);
virtual void getSliceuShortV (uInt rownr, const Slicer& ns,
Array<uShort>* dataPtr);
virtual void getSliceIntV (uInt rownr, const Slicer& ns,
Array<Int>* dataPtr);
virtual void getSliceuIntV (uInt rownr, const Slicer& ns,
Array<uInt>* dataPtr);
virtual void getSliceInt64V (uInt rownr, const Slicer& ns,
Array<Int64>* dataPtr);
virtual void getSlicefloatV (uInt rownr, const Slicer& ns,
Array<float>* dataPtr);
virtual void getSlicedoubleV (uInt rownr, const Slicer& ns,
Array<double>* dataPtr);
virtual void getSliceComplexV (uInt rownr, const Slicer& ns,
Array<Complex>* dataPtr);
virtual void getSliceDComplexV (uInt rownr, const Slicer& ns,
Array<DComplex>* dataPtr);
virtual void getSliceStringV (uInt rownr, const Slicer& ns,
Array<String>* dataPtr);
// </group>
// Put the array value into the given row.
// The buffer pointed to by dataPtr has to have the correct length
// (which is guaranteed by the ArrayColumn putSlice function).
// The default implementations call DataManagerColumn::putSliceBase.
// <group>
virtual void putSliceBoolV (uInt rownr, const Slicer& ns,
const Array<Bool>* dataPtr);
virtual void putSliceuCharV (uInt rownr, const Slicer& ns,
const Array<uChar>* dataPtr);
virtual void putSliceShortV (uInt rownr, const Slicer& ns,
const Array<Short>* dataPtr);
virtual void putSliceuShortV (uInt rownr, const Slicer& ns,
const Array<uShort>* dataPtr);
virtual void putSliceIntV (uInt rownr, const Slicer& ns,
const Array<Int>* dataPtr);
virtual void putSliceuIntV (uInt rownr, const Slicer& ns,
const Array<uInt>* dataPtr);
virtual void putSliceInt64V (uInt rownr, const Slicer& ns,
const Array<Int64>* dataPtr);
virtual void putSlicefloatV (uInt rownr, const Slicer& ns,
const Array<float>* dataPtr);
virtual void putSlicedoubleV (uInt rownr, const Slicer& ns,
const Array<double>* dataPtr);
virtual void putSliceComplexV (uInt rownr, const Slicer& ns,
const Array<Complex>* dataPtr);
virtual void putSliceDComplexV (uInt rownr, const Slicer& ns,
const Array<DComplex>* dataPtr);
virtual void putSliceStringV (uInt rownr, const Slicer& ns,
const Array<String>* dataPtr);
// </group>
// Get the array values in the entire column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ArrayColumn getColumn function).
// The default implementations call DataManagerColumn::getColumnSliceBase.
// <group>
virtual void getColumnSliceBoolV (const Slicer& ns,
Array<Bool>* dataPtr);
virtual void getColumnSliceuCharV (const Slicer& ns,
Array<uChar>* dataPtr);
virtual void getColumnSliceShortV (const Slicer& ns,
Array<Short>* dataPtr);
virtual void getColumnSliceuShortV (const Slicer& ns,
Array<uShort>* dataPtr);
virtual void getColumnSliceIntV (const Slicer& ns,
Array<Int>* dataPtr);
virtual void getColumnSliceuIntV (const Slicer& ns,
Array<uInt>* dataPtr);
virtual void getColumnSliceInt64V (const Slicer& ns,
Array<Int64>* dataPtr);
virtual void getColumnSlicefloatV (const Slicer& ns,
Array<float>* dataPtr);
virtual void getColumnSlicedoubleV (const Slicer& ns,
Array<double>* dataPtr);
virtual void getColumnSliceComplexV (const Slicer& ns,
Array<Complex>* dataPtr);
virtual void getColumnSliceDComplexV (const Slicer& ns,
Array<DComplex>* dataPtr);
virtual void getColumnSliceStringV (const Slicer& ns,
Array<String>* dataPtr);
// </group>
// Put the array values into the entire column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ArrayColumn putColumn function).
// The default implementations call DataManagerColumn::putColumnSliceBase.
// <group>
virtual void putColumnSliceBoolV (const Slicer& ns,
const Array<Bool>* dataPtr);
virtual void putColumnSliceuCharV (const Slicer& ns,
const Array<uChar>* dataPtr);
virtual void putColumnSliceShortV (const Slicer& ns,
const Array<Short>* dataPtr);
virtual void putColumnSliceuShortV (const Slicer& ns,
const Array<uShort>* dataPtr);
virtual void putColumnSliceIntV (const Slicer& ns,
const Array<Int>* dataPtr);
virtual void putColumnSliceuIntV (const Slicer& ns,
const Array<uInt>* dataPtr);
virtual void putColumnSliceInt64V (const Slicer& ns,
const Array<Int64>* dataPtr);
virtual void putColumnSlicefloatV (const Slicer& ns,
const Array<float>* dataPtr);
virtual void putColumnSlicedoubleV (const Slicer& ns,
const Array<double>* dataPtr);
virtual void putColumnSliceComplexV (const Slicer& ns,
const Array<Complex>* dataPtr);
virtual void putColumnSliceDComplexV (const Slicer& ns,
const Array<DComplex>* dataPtr);
virtual void putColumnSliceStringV (const Slicer& ns,
const Array<String>* dataPtr);
// </group>
// Get the array values in some cells of the column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ArrayColumn getColumnCells function).
// The default implementations call DataManagerColumn::getColumnSliceCellsBase.
// <group>
virtual void getColumnSliceCellsBoolV (const RefRows& rownrs,
const Slicer& ns,
Array<Bool>* dataPtr);
virtual void getColumnSliceCellsuCharV (const RefRows& rownrs,
const Slicer& ns,
Array<uChar>* dataPtr);
virtual void getColumnSliceCellsShortV (const RefRows& rownrs,
const Slicer& ns,
Array<Short>* dataPtr);
virtual void getColumnSliceCellsuShortV (const RefRows& rownrs,
const Slicer& ns,
Array<uShort>* dataPtr);
virtual void getColumnSliceCellsIntV (const RefRows& rownrs,
const Slicer& ns,
Array<Int>* dataPtr);
virtual void getColumnSliceCellsuIntV (const RefRows& rownrs,
const Slicer& ns,
Array<uInt>* dataPtr);
virtual void getColumnSliceCellsInt64V (const RefRows& rownrs,
const Slicer& ns,
Array<Int64>* dataPtr);
virtual void getColumnSliceCellsfloatV (const RefRows& rownrs,
const Slicer& ns,
Array<float>* dataPtr);
virtual void getColumnSliceCellsdoubleV (const RefRows& rownrs,
const Slicer& ns,
Array<double>* dataPtr);
virtual void getColumnSliceCellsComplexV (const RefRows& rownrs,
const Slicer& ns,
Array<Complex>* dataPtr);
virtual void getColumnSliceCellsDComplexV (const RefRows& rownrs,
const Slicer& ns,
Array<DComplex>* dataPtr);
virtual void getColumnSliceCellsStringV (const RefRows& rownrs,
const Slicer& ns,
Array<String>* dataPtr);
// </group>
// Put the array values into some cells of the column.
// The buffer pointed to by dataPtr has to have the correct length.
// (which is guaranteed by the ArrayColumn putColumnSlice function).
// The default implementations call DataManagerColumn::putColumnSliceCellsBase.
// <group>
virtual void putColumnSliceCellsBoolV (const RefRows& rownrs,
const Slicer& ns,
const Array<Bool>* dataPtr);
virtual void putColumnSliceCellsuCharV (const RefRows& rownrs,
const Slicer& ns,
const Array<uChar>* dataPtr);
virtual void putColumnSliceCellsShortV (const RefRows& rownrs,
const Slicer& ns,
const Array<Short>* dataPtr);
virtual void putColumnSliceCellsuShortV (const RefRows& rownrs,
const Slicer& ns,
const Array<uShort>* dataPtr);
virtual void putColumnSliceCellsIntV (const RefRows& rownrs,
const Slicer& ns,
const Array<Int>* dataPtr);
virtual void putColumnSliceCellsuIntV (const RefRows& rownrs,
const Slicer& ns,
const Array<uInt>* dataPtr);
virtual void putColumnSliceCellsInt64V (const RefRows& rownrs,
const Slicer& ns,
const Array<Int64>* dataPtr);
virtual void putColumnSliceCellsfloatV (const RefRows& rownrs,
const Slicer& ns,
const Array<float>* dataPtr);
virtual void putColumnSliceCellsdoubleV (const RefRows& rownrs,
const Slicer& ns,
const Array<double>* dataPtr);
virtual void putColumnSliceCellsComplexV (const RefRows& rownrs,
const Slicer& ns,
const Array<Complex>* dataPtr);
virtual void putColumnSliceCellsDComplexV (const RefRows& rownrs,
const Slicer& ns,
const Array<DComplex>* dataPtr);
virtual void putColumnSliceCellsStringV (const RefRows& rownrs,
const Slicer& ns,
const Array<String>* dataPtr);
// </group>
};
} //# NAMESPACE CASACORE - END
#endif
|