File: tArrayColumnCellSlices.cc

package info (click to toggle)
casacore 3.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 51,680 kB
  • sloc: cpp: 462,815; fortran: 16,372; ansic: 7,403; yacc: 4,626; lex: 2,340; sh: 1,786; python: 629; perl: 531; sed: 499; csh: 34; makefile: 31
file content (511 lines) | stat: -rw-r--r-- 17,125 bytes parent folder | download
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
//# tArrayColumnSlices.cc: Test program for the ArrayColumn slices functions
//# Copyright (C) 2008
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This program is free software; you can redistribute it and/or modify it
//# under the terms of the GNU General Public License as published by the Free
//# Software Foundation; either version 2 of the License, or (at your option)
//# any later version.
//#
//# This program 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 General Public License for
//# more details.
//#
//# You should have received a copy of the GNU General Public License along
//# with this program; 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/TableDesc.h>
#include <casacore/tables/Tables/SetupNewTab.h>
#include <casacore/tables/Tables/Table.h>
#include <casacore/tables/Tables/ArrColDesc.h>
#include <casacore/tables/Tables/ArrayColumn.h>
#include <casacore/tables/DataMan/StandardStMan.h>
#include <casacore/tables/DataMan/IncrementalStMan.h>
#include <casacore/casa/Arrays/Vector.h>
#include <casacore/casa/Arrays/ArrayMath.h>
#include <casacore/casa/Arrays/ArrayLogical.h>
#include <casacore/casa/Arrays/Slice.h>
#include <casacore/casa/Utilities/Assert.h>
#include <casacore/casa/Exceptions/Error.h>

using namespace casacore;

uInt nRows=7;
uInt nChannels=5;
uInt nCorrelations=3;
Array<Int> referenceArray (IPosition (3, nCorrelations, nChannels, nRows));

// Create the table.
void createTable (DataManager& dataMan,
                  const Array<Int> array,
                  Bool useDirect)
{
    IPosition shape = array.shape();
    int nCorrelations = shape(0);
    int nChannels = shape (1);
    int nRows = shape(2);

    // Build the table description.

    TableDesc td("", "1", TableDesc::Scratch);
    td.addColumn (ArrayColumnDesc<Int>("testArrayColumn",IPosition(2, nCorrelations, nChannels),
                                       useDirect ? ColumnDesc::Direct : ColumnDesc::FixedShape));

    // Now create a new table from the description.

    SetupNewTable newtab("tArrayColumnCellSlices_tmp.data", td, Table::New);
    newtab.bindAll (dataMan);
    Table tab(newtab, nRows, False, Table::LocalEndian);
    ArrayColumn<Int> arrayColumn (tab, "testArrayColumn");

    //indgen (arrf);

    RefRows rows (0, nRows-1); // all rows
    arrayColumn.putColumnCells (rows, referenceArray);

}

void
clearValues (ArrayColumn<Int> & arrayColumn, Int value = 0)
{
    int nRows = referenceArray.shape().last();

    Array<Int> array (referenceArray.shape(), value);

    RefRows rows (0, nRows-1); // all rows

    arrayColumn.putColumnCells (rows, array);
}

void
createReferenceArray (int nCorrelations, int nChannels, int nRows)
{
   for (Int i=0; i<nRows; i++) {
	for (Int j=0; j < nCorrelations; j++){
	    for (Int k=0; k < nChannels; k++){
		referenceArray (IPosition (3, j, k, i)) = i * 100 + k * 10 + j;;
	    }
	}
    }
}
    
void 
compareToReferenceArray (const Array<Int> other)
{

    AlwaysAssertExit (other.shape().isEqual (referenceArray.shape()));

    for (uInt i=0; i<nRows; i++) {
	for (uInt j=0; j < nCorrelations; j++){
	    for (uInt k=0; k < nChannels; k++){
		AlwaysAssertExit (referenceArray (IPosition (3, j, k, i)) == other (IPosition (3, j, k, i)));
	    }
	}
    }   
}

void
readAndCompareArray (ArrayColumn<Int> & arrayColumn)
{
    Array<Int> array (referenceArray.shape(), -2);
    RefRows rows (0, referenceArray.shape().last()-1);
    arrayColumn.getColumnCells (rows, array);

    compareToReferenceArray (array);
}

void readCellSlices()
{
  Table tab("tArrayColumnCellSlices_tmp.data");
  ArrayColumn<Int> arrayColumn(tab, "testArrayColumn");
  {
      // Check ColumnSlicer validation logic
      //
      // No slicers

      Vector <Slicer *> dataSlicer;
      Vector <Slicer *> destinationSlicer;
      IPosition shape (1, 0);


      try {
	  
	  ColumnSlicer columnSlicer (shape, dataSlicer, destinationSlicer);
	  AlwaysAssertExit (False); // shouldn't get here
      }
      catch (std::exception & e){
      }
  }

  {
      // Check ColumnSlicer validation logic II
      //
      // Slicer lists must be same length

      Vector <Slicer *> dataSlicer (3, nullptr);
      Vector <Slicer *> destinationSlicer (2, nullptr);
      IPosition shape (1, 0);


      try {
	  
	  ColumnSlicer columnSlicer (shape, dataSlicer, destinationSlicer);
	  AlwaysAssertExit (False); // shouldn't get here
      }
      catch (std::exception & e){
      }
  }

  {
      // Check ColumnSlicer validation logic III
      //
      // Slicer elements must have same length

      Vector <Slicer *> dataSlicer (1, nullptr);
      Vector <Slicer *> destinationSlicer (1, nullptr);
      IPosition shape (1, 0);

      dataSlicer (0) = new Slicer (IPosition (1, 0), IPosition (1, 2), IPosition (1, 1));
      destinationSlicer (0) = new Slicer (IPosition (1, 0), IPosition (1, 3), IPosition (1, 1));

      try {
	  
	  ColumnSlicer columnSlicer (shape, dataSlicer, destinationSlicer);
	  AlwaysAssertExit (False); // shouldn't get here
      }
      catch (std::exception & e){
      }
  }
  
  {
      // Check the actual I/O now
      //
      // Read the whole thing at once.

      Vector <Slicer *> dataSlicer (1, nullptr);
      Vector <Slicer *> destinationSlicer (1, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, nChannels), IPosition (2, 1));
      destinationSlicer (0) = new Slicer (IPosition (2, 0), IPosition (2, nCorrelations, nChannels), IPosition (2, 1));

      ColumnSlicer columnSlicer (shape, dataSlicer, destinationSlicer);
      RefRows refRows (0, nRows - 1);
      Array<Int> destination (IPosition (3, nCorrelations, nChannels, nRows));

      arrayColumn.getColumnCells (refRows, columnSlicer, destination);

      compareToReferenceArray (destination);

  }

  {
      // Check the actual I/O now
      //
      // Do read in two halves

      Vector <Slicer *> dataSlicer (2, nullptr);
      Vector <Slicer *> destinationSlicer (2, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      uInt n1 = nChannels / 2;
      uInt n2 = nChannels / 2 + nChannels % 2;

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, n1), IPosition (2, 1, 1));
      destinationSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, n1), IPosition (2, 1, 1));

      dataSlicer (1) = new Slicer (IPosition (2, 0, n1), IPosition (2, nCorrelations, n2), IPosition (2, 1, 1));
      destinationSlicer (1) = new Slicer (IPosition (2, 0, n1), IPosition (2, nCorrelations, n2), IPosition (2, 1, 1));

      ColumnSlicer columnSlicer (shape, dataSlicer, destinationSlicer);
      RefRows refRows (0, nRows - 1);
      Array<Int> destination (IPosition (3, nCorrelations, nChannels, nRows));

      arrayColumn.getColumnCells (refRows, columnSlicer, destination);

      compareToReferenceArray (destination);

  }

  {
      // Check the actual I/O now
      //
      // Do read in two halves the other way.

      Vector <Slicer *> dataSlicer (2, nullptr);
      Vector <Slicer *> destinationSlicer (2, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      uInt n1 = nCorrelations / 2;
      uInt n2 = nCorrelations / 2 + nCorrelations % 2;

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, n1, nChannels), IPosition (2, 1, 1));
      destinationSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, n1, nChannels), IPosition (2, 1, 1));

      dataSlicer (1) = new Slicer (IPosition (2, n1, 0), IPosition (2, n2, nChannels), IPosition (2, 1, 1));
      destinationSlicer (1) = new Slicer (IPosition (2, n1, 0), IPosition (2, n2, nChannels), IPosition (2, 1, 1));

      ColumnSlicer columnSlicer (shape, dataSlicer, destinationSlicer);
      RefRows refRows (0, nRows - 1);
      Array<Int> destination (IPosition (3, nCorrelations, nChannels, nRows));

      arrayColumn.getColumnCells (refRows, columnSlicer, destination);

      compareToReferenceArray (destination);

  }



  {
      // Check the actual I/O now
      //
      // Do it with two interleaving slices.

      Vector <Slicer *> dataSlicer (2, nullptr);
      Vector <Slicer *> destinationSlicer (2, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      uInt nChannels1 = nChannels / 2;
      uInt nChannels2 = nChannels / 2 + nChannels % 2;

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, nChannels2), IPosition (2, 1, 2));
      destinationSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, nChannels2), IPosition (2, 1, 2));

      dataSlicer (1) = new Slicer (IPosition (2, 0, 1), IPosition (2, nCorrelations, nChannels1), IPosition (2, 1, 2));
      destinationSlicer (1) = new Slicer (IPosition (2, 0, 1), IPosition (2, nCorrelations, nChannels1), IPosition (2, 1, 2));

      ColumnSlicer columnSlicer (shape, dataSlicer, destinationSlicer);
      RefRows refRows (0, nRows - 1);

      Array<Int> destination (IPosition (3, nCorrelations, nChannels, nRows));

      arrayColumn.getColumnCells (refRows, columnSlicer, destination);

      compareToReferenceArray (destination);

  }

  {
      // Check the actual I/O now
      //
      // Do it with two interleaving slices doing it the other way

      Vector <Slicer *> dataSlicer (2, nullptr);
      Vector <Slicer *> destinationSlicer (2, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      uInt nCorrelations1 = nCorrelations / 2;
      uInt nCorrelations2 = nCorrelations / 2 + nCorrelations % 2;

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations2, nChannels), IPosition (2, 2, 1));
      destinationSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations2, nChannels), IPosition (2, 2, 1));

      dataSlicer (1) = new Slicer (IPosition (2, 1, 0), IPosition (2, nCorrelations1, nChannels), IPosition (2, 2, 1));
      destinationSlicer (1) = new Slicer (IPosition (2, 1, 0), IPosition (2, nCorrelations1, nChannels), IPosition (2, 2, 1));

      ColumnSlicer columnSlicer (shape, dataSlicer, destinationSlicer);
      RefRows refRows (0, nRows - 1);

      Array<Int> destination (IPosition (3, nCorrelations, nChannels, nRows));

      arrayColumn.getColumnCells (refRows, columnSlicer, destination);

      compareToReferenceArray (destination);

  }

}

void writeCellSlices()
{
    Table tab("tArrayColumnCellSlices_tmp.data", Table::Update);
    ArrayColumn<Int> arrayColumn(tab, "testArrayColumn");
  
  {
      // Check the actual I/O now
      //
      // Read the whole thing at once.

      Vector <Slicer *> dataSlicer (1, nullptr);
      Vector <Slicer *> sourceSlicer (1, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, nChannels), IPosition (2, 1));
      sourceSlicer (0) = new Slicer (IPosition (2, 0), IPosition (2, nCorrelations, nChannels), IPosition (2, 1));

      ColumnSlicer columnSlicer (shape, dataSlicer, sourceSlicer);
      RefRows refRows (0, nRows - 1);
      Array<Int> source = referenceArray.copy();

      arrayColumn.putColumnCells (refRows, columnSlicer, source);

      readAndCompareArray (arrayColumn);

  }

  {
      // Check the actual I/O now
      //
      // Do read in two halves

      Vector <Slicer *> dataSlicer (2, nullptr);
      Vector <Slicer *> sourceSlicer (2, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      uInt n1 = nChannels / 2;
      uInt n2 = nChannels / 2 + nChannels % 2;

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, n1), IPosition (2, 1, 1));
      sourceSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, n1), IPosition (2, 1, 1));

      dataSlicer (1) = new Slicer (IPosition (2, 0, n1), IPosition (2, nCorrelations, n2), IPosition (2, 1, 1));
      sourceSlicer (1) = new Slicer (IPosition (2, 0, n1), IPosition (2, nCorrelations, n2), IPosition (2, 1, 1));

      ColumnSlicer columnSlicer (shape, dataSlicer, sourceSlicer);
      RefRows refRows (0, nRows - 1);
      Array<Int> source = referenceArray.copy();

      arrayColumn.putColumnCells (refRows, columnSlicer, source);

      readAndCompareArray (arrayColumn);

  }

  {
      // Check the actual I/O now
      //
      // Do read in two halves the other way.

      Vector <Slicer *> dataSlicer (2, nullptr);
      Vector <Slicer *> sourceSlicer (2, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      uInt n1 = nCorrelations / 2;
      uInt n2 = nCorrelations / 2 + nCorrelations % 2;

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, n1, nChannels), IPosition (2, 1, 1));
      sourceSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, n1, nChannels), IPosition (2, 1, 1));

      dataSlicer (1) = new Slicer (IPosition (2, n1, 0), IPosition (2, n2, nChannels), IPosition (2, 1, 1));
      sourceSlicer (1) = new Slicer (IPosition (2, n1, 0), IPosition (2, n2, nChannels), IPosition (2, 1, 1));

      ColumnSlicer columnSlicer (shape, dataSlicer, sourceSlicer);
      RefRows refRows (0, nRows - 1);
      Array<Int> source = referenceArray.copy();

      arrayColumn.putColumnCells (refRows, columnSlicer, source);

      readAndCompareArray (arrayColumn);

  }



  {
      // Check the actual I/O now
      //
      // Do it with two interleaving slices.

      Vector <Slicer *> dataSlicer (2, nullptr);
      Vector <Slicer *> sourceSlicer (2, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      uInt nChannels1 = nChannels / 2;
      uInt nChannels2 = nChannels / 2 + nChannels % 2;

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, nChannels2), IPosition (2, 1, 2));
      sourceSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations, nChannels2), IPosition (2, 1, 2));

      dataSlicer (1) = new Slicer (IPosition (2, 0, 1), IPosition (2, nCorrelations, nChannels1), IPosition (2, 1, 2));
      sourceSlicer (1) = new Slicer (IPosition (2, 0, 1), IPosition (2, nCorrelations, nChannels1), IPosition (2, 1, 2));

      ColumnSlicer columnSlicer (shape, dataSlicer, sourceSlicer);
      RefRows refRows (0, nRows - 1);

      Array<Int> source = referenceArray.copy();

      arrayColumn.putColumnCells (refRows, columnSlicer, source);

      readAndCompareArray (arrayColumn);

  }

  {
      // Check the actual I/O now
      //
      // Do it with two interleaving slices doing it the other way

      Vector <Slicer *> dataSlicer (2, nullptr);
      Vector <Slicer *> sourceSlicer (2, nullptr);
      IPosition shape (2, nCorrelations, nChannels);

      uInt nCorrelations1 = nCorrelations / 2;
      uInt nCorrelations2 = nCorrelations / 2 + nCorrelations % 2;

      dataSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations2, nChannels), IPosition (2, 2, 1));
      sourceSlicer (0) = new Slicer (IPosition (2, 0, 0), IPosition (2, nCorrelations2, nChannels), IPosition (2, 2, 1));

      dataSlicer (1) = new Slicer (IPosition (2, 1, 0), IPosition (2, nCorrelations1, nChannels), IPosition (2, 2, 1));
      sourceSlicer (1) = new Slicer (IPosition (2, 1, 0), IPosition (2, nCorrelations1, nChannels), IPosition (2, 2, 1));

      ColumnSlicer columnSlicer (shape, dataSlicer, sourceSlicer);
      RefRows refRows (0, nRows - 1);

      Array<Int> source = referenceArray.copy();

      arrayColumn.putColumnCells (refRows, columnSlicer, source);

      readAndCompareArray (arrayColumn);

  }

}


int main()
{
  try {
      createReferenceArray (nCorrelations, nChannels, nRows);
      {
        StandardStMan dataMan;
        createTable (dataMan, referenceArray, True);
        readCellSlices();
        writeCellSlices();
      } 
      {
        StandardStMan dataMan;
        createTable (dataMan, referenceArray, False);
        readCellSlices();
        writeCellSlices();
      }
     {
        IncrementalStMan dataMan;
        createTable (dataMan, referenceArray, True);
        readCellSlices();
        writeCellSlices();
      }
     {
        IncrementalStMan dataMan;
        createTable (dataMan, referenceArray, False);
        readCellSlices();
        writeCellSlices();
      }
 } catch (std::exception& x) {
    cout << "Caught an exception: " << x.what() << endl;
    return 1;
  } 
  return 0;                           // exit with success status
}