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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkSparseArrayToTable.cxx
-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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 "vtkArrayData.h"
#include "vtkDoubleArray.h"
#include "vtkIdTypeArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkSmartPointer.h"
#include "vtkSparseArray.h"
#include "vtkSparseArrayToTable.h"
#include "vtkStringArray.h"
#include "vtkTable.h"
#include <vtksys/ios/sstream>
#include <vtksys/stl/stdexcept>
template<typename ValueT, typename ValueColumnT>
static bool Convert(vtkArray* Array, const char* ValueColumn, vtkTable* Table)
{
vtkSparseArray<ValueT>* const array = vtkSparseArray<ValueT>::SafeDownCast(Array);
if(!array)
return false;
if(!ValueColumn)
throw std::runtime_error("ValueColumn not specified.");
const vtkIdType dimensions = array->GetDimensions();
const vtkIdType value_count = array->GetNonNullSize();
for(vtkIdType dimension = 0; dimension != dimensions; ++dimension)
{
vtkIdType* const array_coordinates = array->GetCoordinateStorage(dimension);
vtkIdTypeArray* const table_coordinates = vtkIdTypeArray::New();
table_coordinates->SetName(array->GetDimensionLabel(dimension));
table_coordinates->SetNumberOfTuples(value_count);
std::copy(array_coordinates, array_coordinates + value_count, table_coordinates->GetPointer(0));
Table->AddColumn(table_coordinates);
table_coordinates->Delete();
}
ValueT* const array_values = array->GetValueStorage();
ValueColumnT* const table_values = ValueColumnT::New();
table_values->SetName(ValueColumn);
table_values->SetNumberOfTuples(value_count);
std::copy(array_values, array_values + value_count, table_values->GetPointer(0));
Table->AddColumn(table_values);
table_values->Delete();
return true;
}
// ----------------------------------------------------------------------
vtkStandardNewMacro(vtkSparseArrayToTable);
// ----------------------------------------------------------------------
vtkSparseArrayToTable::vtkSparseArrayToTable() :
ValueColumn(0)
{
this->SetValueColumn("value");
this->SetNumberOfInputPorts(1);
this->SetNumberOfOutputPorts(1);
}
// ----------------------------------------------------------------------
vtkSparseArrayToTable::~vtkSparseArrayToTable()
{
this->SetValueColumn(0);
}
// ----------------------------------------------------------------------
void vtkSparseArrayToTable::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "ValueColumn: " << (this->ValueColumn ? this->ValueColumn : "(none)") << endl;
}
int vtkSparseArrayToTable::FillInputPortInformation(int port, vtkInformation* info)
{
switch(port)
{
case 0:
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkArrayData");
return 1;
}
return 0;
}
// ----------------------------------------------------------------------
int vtkSparseArrayToTable::RequestData(
vtkInformation*,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
try
{
vtkArrayData* const input_array_data = vtkArrayData::GetData(inputVector[0]);
if(input_array_data->GetNumberOfArrays() != 1)
throw std::runtime_error("vtkSparseArrayToTable requires a vtkArrayData containing exactly one array.");
vtkArray* const input_array = input_array_data->GetArray(static_cast<vtkIdType>(0));
vtkTable* const output_table = vtkTable::GetData(outputVector);
if(Convert<double, vtkDoubleArray>(input_array, this->ValueColumn, output_table)) return 1;
if(Convert<vtkStdString, vtkStringArray>(input_array, this->ValueColumn, output_table)) return 1;
}
catch(std::exception& e)
{
vtkErrorMacro(<< e.what());
}
return 0;
}
|