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
|
/*=========================================================================
Program: ParaView
Module: vtkPVDataRepresentationPipeline.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 "vtkPVDataRepresentationPipeline.h"
#include "vtkObjectFactory.h"
#include "vtkPVDataRepresentation.h"
#include "vtkInformationVector.h"
#include "vtkInformation.h"
#include "vtkAlgorithm.h"
#include "vtkAlgorithmOutput.h"
vtkStandardNewMacro(vtkPVDataRepresentationPipeline);
//----------------------------------------------------------------------------
vtkPVDataRepresentationPipeline::vtkPVDataRepresentationPipeline()
{
}
//----------------------------------------------------------------------------
vtkPVDataRepresentationPipeline::~vtkPVDataRepresentationPipeline()
{
}
//----------------------------------------------------------------------------
int vtkPVDataRepresentationPipeline::ForwardUpstream(
int i, int j, vtkInformation* request)
{
vtkPVDataRepresentation* representation =
vtkPVDataRepresentation::SafeDownCast(this->Algorithm);
if (representation && representation->GetUsingCacheForUpdate())
{
// shunt upstream updates when using cache.
return 1;
}
if (representation && !representation->GetNeedUpdate())
{
// shunt upstream updates when using cache.
return 1;
}
return this->Superclass::ForwardUpstream(i, j, request);
}
//----------------------------------------------------------------------------
int vtkPVDataRepresentationPipeline::ForwardUpstream(vtkInformation* request)
{
vtkPVDataRepresentation* representation =
vtkPVDataRepresentation::SafeDownCast(this->Algorithm);
if (representation && representation->GetUsingCacheForUpdate())
{
// shunt upstream updates when using cache.
return 1;
}
if (representation && !representation->GetNeedUpdate())
{
// shunt upstream updates when using cache.
return 1;
}
return this->Superclass::ForwardUpstream(request);
}
//----------------------------------------------------------------------------
int vtkPVDataRepresentationPipeline::ProcessRequest(vtkInformation* request,
vtkInformationVector** inInfo,
vtkInformationVector* outInfo)
{
if (request->Has(REQUEST_DATA()) || request->Has(REQUEST_UPDATE_EXTENT()))
{
vtkPVDataRepresentation* representation =
vtkPVDataRepresentation::SafeDownCast(this->Algorithm);
// This check doesn't make sense. We need to call RequestData() whenever
// needed even when using cache. How else the the cache-keeper going to
// produce a new timestep? (BUG #11321).
//if (representation && representation->GetUsingCacheForUpdate())
// {
// // shunt upstream updates when using cache.
// return 1;
// }
if (representation && !representation->GetNeedUpdate())
{
// shunt upstream updates when using cache.
return 1;
}
}
return this->Superclass::ProcessRequest(request, inInfo, outInfo);
}
//----------------------------------------------------------------------------
void vtkPVDataRepresentationPipeline::ExecuteDataEnd(vtkInformation* request,
vtkInformationVector** inInfoVec,
vtkInformationVector* outInfoVec)
{
this->Superclass::ExecuteDataEnd(request, inInfoVec, outInfoVec);
}
//----------------------------------------------------------------------------
int vtkPVDataRepresentationPipeline::NeedToExecuteData(int outputPort,
vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec)
{
return this->Superclass::NeedToExecuteData(outputPort, inInfoVec, outInfoVec);
}
//----------------------------------------------------------------------------
void vtkPVDataRepresentationPipeline::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|