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
|
/*=========================================================================
Program: ParaView
Module: vtkCompleteArrays.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 "vtkCompleteArrays.h"
#include "vtkCellData.h"
#include "vtkCharArray.h"
#include "vtkClientServerStream.h"
#include "vtkDataArray.h"
#include "vtkDataSet.h"
#include "vtkDoubleArray.h"
#include "vtkFloatArray.h"
#include "vtkIdTypeArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkIntArray.h"
#include "vtkLongArray.h"
#include "vtkMultiProcessController.h"
#include "vtkObjectFactory.h"
#include "vtkPVArrayInformation.h"
#include "vtkPVDataInformation.h"
#include "vtkPVDataSetAttributesInformation.h"
#include "vtkPointData.h"
#include "vtkPointSet.h"
#include "vtkShortArray.h"
#include "vtkUnsignedCharArray.h"
#include "vtkUnsignedIntArray.h"
#include "vtkUnsignedLongArray.h"
#include "vtkUnsignedShortArray.h"
vtkStandardNewMacro(vtkCompleteArrays);
vtkCxxSetObjectMacro(vtkCompleteArrays,Controller,vtkMultiProcessController);
//-----------------------------------------------------------------------------
vtkCompleteArrays::vtkCompleteArrays()
{
this->Controller = vtkMultiProcessController::GetGlobalController();
if (this->Controller)
{
this->Controller->Register(this);
}
}
//-----------------------------------------------------------------------------
vtkCompleteArrays::~vtkCompleteArrays()
{
if (this->Controller)
{
this->Controller->UnRegister(this);
this->Controller = NULL;
}
}
//-----------------------------------------------------------------------------
int vtkCompleteArrays::RequestData(
vtkInformation*,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
vtkInformation* info = outputVector->GetInformationObject(0);
vtkDataSet *output = vtkDataSet::SafeDownCast(
info->Get(vtkDataObject::DATA_OBJECT()));
vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
vtkDataSet *input = vtkDataSet::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
// Initialize
//
vtkDebugMacro(<<"Completing array");
output->CopyStructure( input );
output->GetPointData()->PassData(input->GetPointData());
output->GetCellData()->PassData(input->GetCellData());
if(this->Controller->GetNumberOfProcesses() <= 1)
{
return 1;
}
int myProcId = this->Controller->GetLocalProcessId();
// array is [num points on proc 0, num cells on proc 0,
// num points on this proc, num cells on this proc,
// proc id if this process has point,
// proc id if this process has cells]
vtkIdType localInfo[6] = {-1, -1, input->GetNumberOfPoints(),
input->GetNumberOfCells(), -1, -1};
if(myProcId == 0)
{
localInfo[0] = input->GetNumberOfPoints();
localInfo[1] = input->GetNumberOfCells();
}
if(input->GetNumberOfPoints() > 0)
{
localInfo[4] = myProcId;
}
if(input->GetNumberOfCells() > 0)
{
localInfo[5] = myProcId;
}
vtkIdType globalInfo[6];
this->Controller->AllReduce(localInfo, globalInfo, 6, vtkCommunicator::MAX_OP);
// Idea is that if process 0 doesn't have the proper point data and cell data
// arrays (if cells exist) then we need to get that information from another proc.
// We only need to get that information from one process so we look for the highest
// process id with cells (if they exist) or points (if no cells exist) to
// provide that information.
if( globalInfo[1] > 0 || (globalInfo[3] == 0 && globalInfo[0] > 0) ||
globalInfo[2] == 0 )
{
// process 0 has all of the needed information already (globalInfo[2] == 0
// means there is no information at all)
return 1;
}
int infoProc = globalInfo[5]; // a process that has the information proc 0 needs
if(globalInfo[3] == 0)
{ // there are no cells so we find a process with points
infoProc = globalInfo[4];
}
if (myProcId == 0)
{
// Receive and collected information from the remote processes.
vtkPVDataInformation* dataInfo = vtkPVDataInformation::New();
vtkPVDataInformation* tmpInfo = vtkPVDataInformation::New();
int length = 0;
this->Controller->Receive(&length, 1, infoProc, 389002);
unsigned char* data = new unsigned char[length];
this->Controller->Receive(data, length, infoProc, 389003);
vtkClientServerStream css;
css.SetData(data, length);
tmpInfo->CopyFromStream(&css);
delete [] data;
dataInfo->AddInformation(tmpInfo);
this->FillArrays(
output->GetPointData(), dataInfo->GetPointDataInformation());
this->FillArrays(
output->GetCellData(), dataInfo->GetCellDataInformation());
vtkPointSet* ps = vtkPointSet::SafeDownCast(output);
if (ps)
{
vtkDataArray* pointArray = this->CreateArray(
dataInfo->GetPointArrayInformation());
if (!pointArray)
{
vtkErrorMacro("Could not create point array. "
"The output will not contain points.");
}
else
{
vtkPoints* pts = vtkPoints::New();
pts->SetData(pointArray);
pointArray->Delete();
ps->SetPoints(pts);
pts->Delete();
}
}
dataInfo->Delete();
tmpInfo->Delete();
}
else if(myProcId == infoProc)
{
vtkClientServerStream css;
vtkPVDataInformation* dataInfo = vtkPVDataInformation::New();
dataInfo->SetSortArrays(0);
dataInfo->CopyFromObject(output);
dataInfo->CopyToStream(&css);
size_t length;
const unsigned char* data;
css.GetData(&data, &length);
int len = static_cast<int>(length);
this->Controller->Send(&len, 1, 0, 389002);
this->Controller->Send(const_cast<unsigned char*>(data), len, 0, 389003);
dataInfo->Delete();
}
return 1;
}
//-----------------------------------------------------------------------------
vtkDataArray* vtkCompleteArrays::CreateArray(vtkPVArrayInformation* aInfo)
{
vtkDataArray* array = 0;
switch (aInfo->GetDataType())
{
case VTK_FLOAT:
array = vtkFloatArray::New();
break;
case VTK_DOUBLE:
array = vtkDoubleArray::New();
break;
case VTK_INT:
array = vtkIntArray::New();
break;
case VTK_CHAR:
array = vtkCharArray::New();
break;
case VTK_ID_TYPE:
array = vtkIdTypeArray::New();
break;
case VTK_LONG:
array = vtkLongArray::New();
break;
case VTK_SHORT:
array = vtkShortArray::New();
break;
case VTK_UNSIGNED_CHAR:
array = vtkUnsignedCharArray::New();
break;
case VTK_UNSIGNED_INT:
array = vtkUnsignedIntArray::New();
break;
case VTK_UNSIGNED_LONG:
array = vtkUnsignedLongArray::New();
break;
case VTK_UNSIGNED_SHORT:
array = vtkUnsignedShortArray::New();
break;
default:
array = NULL;
}
if (array)
{
array->SetNumberOfComponents(aInfo->GetNumberOfComponents());
array->SetName(aInfo->GetName());
}
return array;
}
//-----------------------------------------------------------------------------
void vtkCompleteArrays::FillArrays(vtkDataSetAttributes* da,
vtkPVDataSetAttributesInformation* attrInfo)
{
int num, idx;
vtkPVArrayInformation* arrayInfo;
vtkDataArray* array;
da->Initialize();
num = attrInfo->GetNumberOfArrays();
for (idx = 0; idx < num; ++idx)
{
arrayInfo = attrInfo->GetArrayInformation(idx);
array = this->CreateArray(arrayInfo);
if (array)
{
switch (attrInfo->IsArrayAnAttribute(idx))
{
case vtkDataSetAttributes::SCALARS:
da->SetScalars(array);
break;
case vtkDataSetAttributes::VECTORS:
da->SetVectors(array);
break;
case vtkDataSetAttributes::NORMALS:
da->SetNormals(array);
break;
case vtkDataSetAttributes::TENSORS:
da->SetTensors(array);
break;
case vtkDataSetAttributes::TCOORDS:
da->SetTCoords(array);
break;
default:
da->AddArray(array);
}
array->Delete();
array = NULL;
}
}
}
//-----------------------------------------------------------------------------
void vtkCompleteArrays::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
if (this->Controller)
{
os << indent << "Controller: " << this->Controller << endl;
}
else
{
os << indent << "Controller: (none)\n";
}
}
|