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
|
/*=========================================================================
Program: ParaView
Module: TestPartialArraysInformation.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkCellData.h"
#include "vtkIntArray.h"
#include "vtkMultiBlockDataSet.h"
#include "vtkNew.h"
#include "vtkPVArrayInformation.h"
#include "vtkPVCompositeDataInformation.h"
#include "vtkPVDataInformation.h"
#include "vtkPointData.h"
#include "vtkPolyData.h"
#include "vtkSmartPointer.h"
#include "vtkSphereSource.h"
vtkSmartPointer<vtkPolyData> GetPolyData(const char** parrays = NULL, const char** carrays = NULL)
{
vtkNew<vtkSphereSource> sphere;
sphere->Update();
vtkSmartPointer<vtkPolyData> pd = sphere->GetOutput();
vtkIdType numPts = pd->GetNumberOfPoints();
for (int cc = 0; parrays != NULL && parrays[cc] != NULL; ++cc)
{
vtkNew<vtkIntArray> array;
array->SetName(parrays[cc]);
array->SetNumberOfComponents(numPts);
array->FillComponent(0, 0.0);
pd->GetPointData()->AddArray(array.Get());
}
vtkIdType numCells = pd->GetNumberOfCells();
for (int cc = 0; carrays != NULL && carrays[cc] != NULL; ++cc)
{
vtkNew<vtkIntArray> array;
array->SetName(carrays[cc]);
array->SetNumberOfComponents(numCells);
array->FillComponent(0, 0.0);
pd->GetCellData()->AddArray(array.Get());
}
return pd;
}
int TestPartialArraysInformation(int, char* [])
{
vtkNew<vtkMultiBlockDataSet> data;
const char* p00[] = { "pd0", NULL };
const char* c00[] = { "cd0", NULL };
data->SetBlock(0, GetPolyData(p00, c00));
const char* c01[] = { "cd0", "cd1", NULL };
data->SetBlock(1, GetPolyData(p00, c01));
vtkNew<vtkMultiBlockDataSet> base;
const char* p10[] = { "pd0", NULL };
base->SetBlock(0, GetPolyData(p10));
base->SetBlock(1, data.Get());
vtkNew<vtkMultiBlockDataSet> root;
root->SetBlock(0, base.Get());
vtkNew<vtkPVDataInformation> info;
info->CopyFromObject(root.Get());
if (info->GetArrayInformation("pd0", vtkDataObject::POINT) == NULL)
{
cerr << "ERROR: failed to find `pd0`." << endl;
return EXIT_FAILURE;
}
if (info->GetArrayInformation("pd0", vtkDataObject::POINT)->GetIsPartial())
{
cerr << "ERROR: 'pd0' should not have been flagged as partial.";
return EXIT_FAILURE;
}
if (info->GetArrayInformation("cd0", vtkDataObject::CELL) == NULL)
{
cerr << "ERROR: failed to find `cd0`." << endl;
return EXIT_FAILURE;
}
if (!info->GetArrayInformation("cd0", vtkDataObject::CELL)->GetIsPartial())
{
cerr << "ERROR: 'cd0' should have been flagged as partial.";
return EXIT_FAILURE;
}
if (info->GetArrayInformation("cd1", vtkDataObject::CELL) == NULL)
{
cerr << "ERROR: failed to find `cd1`." << endl;
return EXIT_FAILURE;
}
if (!info->GetArrayInformation("cd1", vtkDataObject::CELL)->GetIsPartial())
{
cerr << "ERROR: 'cd1' should have been flagged as partial.";
return EXIT_FAILURE;
}
vtkPVDataInformation* b1info = info->GetCompositeDataInformation()
->GetDataInformation(0)
->GetCompositeDataInformation()
->GetDataInformation(1);
if (b1info->GetArrayInformation("cd0", vtkDataObject::CELL) == NULL)
{
cerr << "ERROR: failed to find `cd0` on block 1." << endl;
return EXIT_FAILURE;
}
if (b1info->GetArrayInformation("cd0", vtkDataObject::CELL)->GetIsPartial())
{
cerr << "ERROR: 'cd0' should not have been flagged as partial on block 1";
return EXIT_FAILURE;
}
if (b1info->GetArrayInformation("cd1", vtkDataObject::CELL) == NULL)
{
cerr << "ERROR: failed to find `cd1` on block 1." << endl;
return EXIT_FAILURE;
}
if (!b1info->GetArrayInformation("cd1", vtkDataObject::CELL)->GetIsPartial())
{
cerr << "ERROR: 'cd1' should have been flagged as partial on block 1";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
|