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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkPVExtractSelection.cxx
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 "vtkPVExtractSelection.h"
#include "vtkCellData.h"
#include "vtkCompositeDataIterator.h"
#include "vtkCompositeDataSet.h"
#include "vtkDataObjectTypes.h"
#include "vtkDataSet.h"
#include "vtkExecutive.h"
//#include "vtkExecutivePortKey.h"
#include "vtkHierarchicalBoxDataIterator.h"
#include "vtkIdTypeArray.h"
#include "vtkInformation.h"
#include "vtkInformationExecutivePortKey.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkPVConfig.h"
#include "vtkSelection.h"
#include "vtkSelectionNode.h"
#include "vtkSmartPointer.h"
#include "vtkTable.h"
#include "vtkGraph.h"
#ifdef PARAVIEW_ENABLE_PYTHON
#include "vtkPythonExtractSelection.h"
#endif
#include <vector>
class vtkPVExtractSelection::vtkSelectionNodeVector :
public std::vector<vtkSmartPointer<vtkSelectionNode> >
{
};
vtkStandardNewMacro(vtkPVExtractSelection);
//----------------------------------------------------------------------------
vtkPVExtractSelection::vtkPVExtractSelection()
{
this->SetNumberOfOutputPorts(3);
}
//----------------------------------------------------------------------------
vtkPVExtractSelection::~vtkPVExtractSelection()
{
}
//----------------------------------------------------------------------------
int vtkPVExtractSelection::FillOutputPortInformation(
int port, vtkInformation* info)
{
if (port==0)
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkDataObject");
}
else // for port 1, 2
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkSelection");
}
return 1;
}
//----------------------------------------------------------------------------
int vtkPVExtractSelection::RequestDataObject(
vtkInformation* request,
vtkInformationVector** inputVector ,
vtkInformationVector* outputVector)
{
if (!this->Superclass::RequestDataObject(request, inputVector, outputVector))
{
return 0;
}
// Second and output is selection
for (int i = 1; i < this->GetNumberOfOutputPorts(); ++i)
{
vtkInformation* info = outputVector->GetInformationObject(i);
vtkSelection *selOut = vtkSelection::GetData(info);
if (!selOut || !selOut->IsA("vtkSelection"))
{
vtkDataObject* newOutput = vtkSelection::New();
if (!newOutput)
{
vtkErrorMacro("Could not create vtkSelectionOutput");
return 0;
}
info->Set(vtkDataObject::DATA_OBJECT(), newOutput);
this->GetOutputPortInformation(i)->Set(
vtkDataObject::DATA_EXTENT_TYPE(), newOutput->GetExtentType());
newOutput->Delete();
}
}
return 1;
}
//----------------------------------------------------------------------------
int vtkPVExtractSelection::RequestData(
vtkInformation* request,
vtkInformationVector** inputVector ,
vtkInformationVector* outputVector)
{
vtkDataObject* inputDO = vtkDataObject::GetData(inputVector[0], 0);
vtkSelection* sel = vtkSelection::GetData(inputVector[1], 0);
vtkCompositeDataSet* cdInput = vtkCompositeDataSet::SafeDownCast(inputDO);
vtkCompositeDataSet* cdOutput = vtkCompositeDataSet::GetData(outputVector, 0);
vtkDataObject *outputDO = vtkDataObject::GetData(outputVector, 0);
if (!sel)
{
return 1;
}
if (vtkSelection* output2 = vtkSelection::GetData(outputVector, 2))
{
// See vtkPVSingleOutputExtractSelection to know why this check is needed.
output2->ShallowCopy(sel);
}
if (sel->GetNumberOfNodes() >= 1 && sel->GetNode(0)->GetContentType() == vtkSelectionNode::QUERY)
{
#ifdef PARAVIEW_ENABLE_PYTHON
vtkPythonExtractSelection *pythonExtractSelection = vtkPythonExtractSelection::New();
vtkDataObject *localInputDO = inputDO->NewInstance();
localInputDO->ShallowCopy(inputDO);
vtkSelection *localSel = sel->NewInstance();
localSel->ShallowCopy(sel);
pythonExtractSelection->SetInputData(0, localInputDO);
pythonExtractSelection->SetInputData(1, localSel);
pythonExtractSelection->SetPreserveTopology(this->PreserveTopology);
pythonExtractSelection->Update();
outputDO->ShallowCopy(pythonExtractSelection->GetOutputDataObject(0));
pythonExtractSelection->Delete();
localSel->Delete();
localInputDO->Delete();
#endif // PARAVIEW_ENABLE_PYTHON
}
else
{
// only call superclass's request data for non-query type
// selections (which use the python extract selection filter)
if (!this->Superclass::RequestData(request, inputVector, outputVector))
{
return 0;
}
}
if (this->GetNumberOfOutputPorts() < 2)
{
return 1;
}
//make an ids selection for the second output
//we can do this because all of the extractSelectedX filters produce
//arrays called "vtkOriginalXIds" that record what input cells produced
//each output cell, at least as long as PRESERVE_TOPOLOGY is off
//when we start allowing PreserveTopology, this will have to instead run
//through the vtkInsidedNess arrays, and for every on entry, record the
//entries index
//
// TODO: The ExtractSelectedGraph filter does not produce the vtkOriginalXIds,
// so to add support for vtkGraph selection in ParaView the filter will have
// to be extended. This requires test cases in ParaView to confirm it functions
// as expected.
vtkSelection *output = vtkSelection::GetData(outputVector, 1);
output->Initialize();
// If input selection content type is vtkSelectionNode::BLOCKS, then we simply
// need to shallow copy the input as the output.
if (this->GetContentType(sel) == vtkSelectionNode::BLOCKS)
{
output->ShallowCopy(sel);
return 1;
}
vtkSelectionNodeVector oVector;
if (cdOutput)
{
// this is the collection of vtkSelectionNodes that don't have any
// COMPOSITE_INDEX or HIERARCHICAL_INDEX qualification i.e. they are
// applicable to all nodes in the composite dataset.
vtkSelectionNodeVector non_composite_nodes;
for (unsigned int cc=0; cc < sel->GetNumberOfNodes(); cc++)
{
vtkInformation* properties = sel->GetNode(cc)->GetProperties();
if (!properties->Has(vtkSelectionNode::COMPOSITE_INDEX()) &&
!properties->Has(vtkSelectionNode::HIERARCHICAL_LEVEL()) &&
!properties->Has(vtkSelectionNode::HIERARCHICAL_INDEX()))
{
non_composite_nodes.push_back(sel->GetNode(cc));
}
}
// For composite datasets, the output of this filter is
// vtkSelectionNode::SELECTIONS instance with vtkSelection instances for some
// nodes in the composite dataset. COMPOSITE_INDEX() or
// HIERARCHICAL_LEVEL(), HIERARCHICAL_INDEX() keys are set on each of the
// vtkSelection instances correctly to help identify the block they came
// from.
vtkCompositeDataIterator* iter = cdInput->NewIterator();
vtkHierarchicalBoxDataIterator* hbIter =
vtkHierarchicalBoxDataIterator::SafeDownCast(iter);
for (iter->InitTraversal(); !iter->IsDoneWithTraversal();
iter->GoToNextItem())
{
vtkSelectionNode* curSel = this->LocateSelection(iter->GetCurrentFlatIndex(),
sel);
if (!curSel && hbIter)
{
curSel = this->LocateSelection(hbIter->GetCurrentLevel(),
hbIter->GetCurrentIndex(), sel);
}
outputDO = vtkDataObject::SafeDownCast(cdOutput->GetDataSet(iter));
vtkSelectionNodeVector curOVector;
if (curSel && outputDO)
{
this->RequestDataInternal(curOVector, outputDO, curSel);
}
for (vtkSelectionNodeVector::iterator giter = non_composite_nodes.begin();
giter != non_composite_nodes.end(); ++giter)
{
this->RequestDataInternal(curOVector, outputDO, giter->GetPointer());
}
for (vtkSelectionNodeVector::iterator viter = curOVector.begin();
viter != curOVector.end(); ++viter)
{
// RequestDataInternal() will not set COMPOSITE_INDEX() for
// hierarchical datasets.
viter->GetPointer()->GetProperties()->Set(vtkSelectionNode::COMPOSITE_INDEX(),
iter->GetCurrentFlatIndex());
oVector.push_back(viter->GetPointer());
}
}
iter->Delete();
}
else if (outputDO) // and not composite dataset.
{
unsigned int numNodes = sel->GetNumberOfNodes();
for (unsigned int i = 0; i < numNodes; i++)
{
this->RequestDataInternal(oVector, outputDO, sel->GetNode(i));
}
}
vtkSelectionNodeVector::iterator iter;
for (iter = oVector.begin(); iter != oVector.end(); ++iter)
{
output->AddNode(iter->GetPointer());
}
return 1;
}
//----------------------------------------------------------------------------
vtkSelectionNode* vtkPVExtractSelection::LocateSelection(unsigned int level,
unsigned int index, vtkSelection* sel)
{
unsigned int numNodes = sel->GetNumberOfNodes();
for (unsigned int cc=0; cc < numNodes; cc++)
{
vtkSelectionNode* node = sel->GetNode(cc);
if (node)
{
if (node->GetProperties()->Has(vtkSelectionNode::HIERARCHICAL_LEVEL()) &&
node->GetProperties()->Has(vtkSelectionNode::HIERARCHICAL_INDEX()) &&
static_cast<unsigned int>(node->GetProperties()->Get(
vtkSelectionNode::HIERARCHICAL_LEVEL())) == level &&
static_cast<unsigned int>(node->GetProperties()->Get(
vtkSelectionNode::HIERARCHICAL_INDEX())) == index)
{
return node;
}
}
}
return NULL;
}
//----------------------------------------------------------------------------
vtkSelectionNode* vtkPVExtractSelection::LocateSelection(unsigned int composite_index,
vtkSelection* sel)
{
unsigned int numNodes = sel->GetNumberOfNodes();
for (unsigned int cc=0; cc < numNodes; cc++)
{
vtkSelectionNode* node = sel->GetNode(cc);
if (node)
{
if (node->GetProperties()->Has(vtkSelectionNode::COMPOSITE_INDEX()) &&
node->GetProperties()->Get(vtkSelectionNode::COMPOSITE_INDEX()) ==
static_cast<int>(composite_index))
{
return node;
}
}
}
return NULL;
}
//----------------------------------------------------------------------------
void vtkPVExtractSelection::RequestDataInternal(vtkSelectionNodeVector& outputs,
vtkDataObject* dataObjectOutput, vtkSelectionNode* sel)
{
// DON'T CLEAR THE outputs.
vtkDataSet* ds = vtkDataSet::SafeDownCast(dataObjectOutput);
vtkTable* table = vtkTable::SafeDownCast(dataObjectOutput);
vtkGraph* graph = vtkGraph::SafeDownCast(dataObjectOutput);
int ft = vtkSelectionNode::CELL;
if (sel && sel->GetProperties()->Has(vtkSelectionNode::FIELD_TYPE()))
{
ft = sel->GetProperties()->Get(vtkSelectionNode::FIELD_TYPE());
}
if (ds && ft == vtkSelectionNode::CELL)
{
vtkSelectionNode* output = vtkSelectionNode::New();
output->GetProperties()->Copy(sel->GetProperties(), /*deep=*/1);
output->SetContentType(vtkSelectionNode::INDICES);
vtkIdTypeArray *oids = vtkIdTypeArray::SafeDownCast(
ds->GetCellData()->GetArray("vtkOriginalCellIds"));
if (oids)
{
output->SetSelectionList(oids);
outputs.push_back(output);
}
output->Delete();
}
// no else, since original point indices are always passed.
if (ds && (
ft == vtkSelectionNode::CELL || ft == vtkSelectionNode::POINT))
{
vtkSelectionNode* output = vtkSelectionNode::New();
output->GetProperties()->Copy(sel->GetProperties(), /*deep=*/1);
output->SetFieldType(vtkSelectionNode::POINT);
output->SetContentType(vtkSelectionNode::INDICES);
vtkIdTypeArray* oids = vtkIdTypeArray::SafeDownCast(
ds->GetPointData()->GetArray("vtkOriginalPointIds"));
if (oids)
{
output->SetSelectionList(oids);
outputs.push_back(output);
}
output->Delete();
}
if (table && ft == vtkSelectionNode::ROW)
{
vtkSelectionNode* output = vtkSelectionNode::New();
output->GetProperties()->Copy(sel->GetProperties(), /*deep=*/1);
output->SetFieldType(vtkSelectionNode::ROW);
output->SetContentType(vtkSelectionNode::INDICES);
vtkIdTypeArray* oids = vtkIdTypeArray::SafeDownCast(
table->GetRowData()->GetArray("vtkOriginalRowIds"));
if (oids)
{
output->SetSelectionList(oids);
outputs.push_back(output);
}
output->Delete();
}
// The ExtractSelectedGraph filter does not produce the vtkOriginal*Ids array,
// it will need extending to be able to follow the same pattern (with some
// test cases to verify functionality).
if (graph && ft == vtkSelectionNode::VERTEX)
{
}
if (graph && ft == vtkSelectionNode::EDGE)
{
}
}
//----------------------------------------------------------------------------
int vtkPVExtractSelection::GetContentType(vtkSelection* sel)
{
int ctype = -1;
unsigned int numNodes = sel->GetNumberOfNodes();
for (unsigned int cc=0; cc < numNodes; cc++)
{
vtkSelectionNode* node = sel->GetNode(cc);
int nodeCType = node->GetContentType();
if (ctype == -1)
{
ctype = nodeCType;
}
else if (nodeCType != ctype)
{
return 0;
}
}
return ctype;
}
//----------------------------------------------------------------------------
void vtkPVExtractSelection::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}
|