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
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
#include "vtkAggregateToPartitionedDataSetCollection.h"
#include "vtkObjectFactory.h"
#include "vtkPartitionedDataSetCollection.h"
VTK_ABI_NAMESPACE_BEGIN
struct vtkAggregateToPartitionedDataSetCollection::Internals
{
vtkSmartPointer<vtkPartitionedDataSetCollection> Output;
};
//------------------------------------------------------------------------------
vtkStandardNewMacro(vtkAggregateToPartitionedDataSetCollection);
//------------------------------------------------------------------------------
vtkAggregateToPartitionedDataSetCollection::vtkAggregateToPartitionedDataSetCollection()
: Internal(new Internals)
{
this->Internal->Output = vtkSmartPointer<vtkPartitionedDataSetCollection>::New();
}
//------------------------------------------------------------------------------
vtkAggregateToPartitionedDataSetCollection::~vtkAggregateToPartitionedDataSetCollection() = default;
//------------------------------------------------------------------------------
void vtkAggregateToPartitionedDataSetCollection::PrintSelf(std::ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//------------------------------------------------------------------------------
vtkSmartPointer<vtkDataObject> vtkAggregateToPartitionedDataSetCollection::RequestDataObject(
vtkDataObject* input)
{
if (!input)
{
return nullptr;
}
return vtkSmartPointer<vtkPartitionedDataSetCollection>::New();
}
//------------------------------------------------------------------------------
bool vtkAggregateToPartitionedDataSetCollection::Aggregate(vtkDataObject* input)
{
if (!this->Internal->Output)
{
vtkErrorMacro("Current output is nullptr");
return false;
}
if (!input)
{
// don't append anything to the output
return true;
}
// Ensure we do not reuse the same pointer
auto newPartition = vtkSmartPointer<vtkDataObject>::Take(input->NewInstance());
newPartition->ShallowCopy(input);
unsigned int LastPDS = this->Internal->Output->GetNumberOfPartitionedDataSets();
this->Internal->Output->SetNumberOfPartitionedDataSets(LastPDS + 1);
this->Internal->Output->SetPartition(LastPDS, 0, newPartition);
return true;
}
//------------------------------------------------------------------------------
vtkSmartPointer<vtkDataObject> vtkAggregateToPartitionedDataSetCollection::GetOutputDataObject()
{
return this->Internal->Output;
}
//------------------------------------------------------------------------------
void vtkAggregateToPartitionedDataSetCollection::Clear()
{
this->Internal->Output = vtkSmartPointer<vtkPartitionedDataSetCollection>::New();
}
VTK_ABI_NAMESPACE_END
|