VTK  9.7.20260805
vtkDemandDrivenPipeline.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
17
18#ifndef vtkDemandDrivenPipeline_h
19#define vtkDemandDrivenPipeline_h
20
21#include "vtkCommonExecutionModelModule.h" // For export macro
22#include "vtkExecutive.h"
23#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
24
25VTK_ABI_NAMESPACE_BEGIN
27class vtkDataArray;
29class vtkDemandDrivenPipelineInternals;
30class vtkFieldData;
31class vtkInformation;
36
65
66class VTKCOMMONEXECUTIONMODEL_EXPORT VTK_MARSHALAUTO vtkDemandDrivenPipeline : public vtkExecutive
67{
68public:
71 void PrintSelf(ostream& os, vtkIndent indent) override;
72
78 vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo) override;
79
84 vtkInformationVector* outInfoVec, int requestFromOutputPort, vtkMTimeType* mtime) override;
85
87
91 vtkTypeBool Update() override;
92 vtkTypeBool Update(int port) override;
94
96
101
106 virtual int SetReleaseDataFlag(int port, vtkTypeBool n);
107
112
116 virtual int UpdatePipelineMTime();
117
123 int UpdateDataObject() override;
124
128 int UpdateInformation() override;
129
135 virtual int UpdateData(int outputPort);
136
142
148
154
161
168
176
182 static vtkDataObject* NewDataObject(const char* type);
183
184protected:
187
188 // Helper methods to send requests to the algorithm.
189 virtual int ExecuteDataObject(
190 vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo);
192 vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo);
193 virtual int ExecuteData(
194 vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo);
195
196 // Reset the pipeline update values in the given output information object.
198
199 // Check whether the data object in the pipeline information for an
200 // output port exists and has a valid type.
201 virtual int CheckDataObject(int port, vtkInformationVector* outInfo);
202
203 // Input connection validity checkers.
208 virtual int InputTypeIsValid(int port, int index, vtkInformationVector**);
211 virtual int InputFieldsAreValid(int port, int index, vtkInformationVector**);
212
213 // Field existence checkers.
217
218 // Input port information checkers.
219 int InputIsOptional(int port);
220 int InputIsRepeatable(int port);
221
222 // Decide whether the output data need to be generated.
223 virtual int NeedToExecuteData(
224 int outputPort, vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec);
225
226 // Handle before/after operations for ExecuteData method.
227 virtual void ExecuteDataStart(
228 vtkInformation* request, vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec);
229 virtual void ExecuteDataEnd(
230 vtkInformation* request, vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec);
232 vtkInformation* request, vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec);
233
234 // Largest MTime of any algorithm on this executive or preceding
235 // executives.
237
238 // Time when information or data were last generated.
242
244
248
249private:
251 void operator=(const vtkDemandDrivenPipeline&) = delete;
252};
253
254VTK_ABI_NAMESPACE_END
255#endif
Abstract superclass for all arrays.
general representation of visualization data
represent and manipulate attribute data in a dataset
void ResetPipelineInformation(int, vtkInformation *) override
int ComputePipelineMTime(vtkInformation *request, vtkInformationVector **inInfoVec, vtkInformationVector *outInfoVec, int requestFromOutputPort, vtkMTimeType *mtime) override
Implement the pipeline modified time request.
int UpdateInformation() override
Bring the output information up to date.
int InputIsOptional(int port)
virtual int UpdatePipelineMTime()
Bring the PipelineMTime up to date.
int InputCountIsValid(int port, vtkInformationVector **)
virtual void MarkOutputsGenerated(vtkInformation *request, vtkInformationVector **inInfoVec, vtkInformationVector *outInfoVec)
virtual int UpdateData(int outputPort)
Bring the output data up to date.
vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo) override
Generalized interface for asking the executive to fulfill update requests.
virtual int ExecuteInformation(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
static vtkDataObject * NewDataObject(const char *type)
Create (New) and return a data object of the given type.
int InputTypeIsValid(vtkInformationVector **)
virtual int ExecuteData(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
int ArrayIsValid(vtkAbstractArray *array, vtkInformation *field)
int InputFieldsAreValid(vtkInformationVector **)
virtual int CheckDataObject(int port, vtkInformationVector *outInfo)
static vtkDemandDrivenPipeline * New()
virtual void ExecuteDataStart(vtkInformation *request, vtkInformationVector **inInfoVec, vtkInformationVector *outInfoVec)
virtual void ExecuteDataEnd(vtkInformation *request, vtkInformationVector **inInfoVec, vtkInformationVector *outInfoVec)
virtual vtkTypeBool GetReleaseDataFlag(int port)
Get whether the given output port releases data when it is consumed.
vtkTypeBool Update() override
Bring the algorithm's outputs up-to-date.
int InputCountIsValid(vtkInformationVector **)
int FieldArrayExists(vtkFieldData *data, vtkInformation *field)
virtual int SetReleaseDataFlag(int port, vtkTypeBool n)
Set whether the given output port releases data when it is consumed.
vtkTypeBool Update(int port) override
Bring the algorithm's outputs up-to-date.
virtual int InputTypeIsValid(int port, int index, vtkInformationVector **)
int InputTypeIsValid(int port, vtkInformationVector **)
virtual int NeedToExecuteData(int outputPort, vtkInformationVector **inInfoVec, vtkInformationVector *outInfoVec)
virtual int InputFieldsAreValid(int port, int index, vtkInformationVector **)
virtual int ExecuteDataObject(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
int UpdateDataObject() override
Bring the output data object's existence up to date.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int InputFieldsAreValid(int port, vtkInformationVector **)
~vtkDemandDrivenPipeline() override
int DataSetAttributeExists(vtkDataSetAttributes *dsa, vtkInformation *field)
int InputIsRepeatable(int port)
Represents and manipulates a collection of data arrays.
a simple class to control print indentation
Definition vtkIndent.h:29
Key for integer values in vtkInformation.
Key for vector-of-keys values.
Key for pointer to pointer.
Key for unsigned long values in vtkInformation.
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
record modification and/or execution time
static vtkInformationRequestKey * REQUEST_DATA_NOT_GENERATED()
Key defining a request to mark outputs that will NOT be generated during a REQUEST_DATA.
static vtkInformationIntegerKey * RELEASE_DATA()
Key to specify in pipeline information the request that data be released after it is used.
static vtkInformationIntegerKey * DATA_NOT_GENERATED()
Key to store a mark for an output that will not be generated.
static vtkInformationRequestKey * REQUEST_DATA_OBJECT()
Key defining a request to make sure the output data objects exist.
static vtkInformationRequestKey * REQUEST_INFORMATION()
Key defining a request to make sure the output information is up to date.
static vtkInformationRequestKey * REQUEST_DATA()
Key defining a request to make sure the output data are up to date.
int vtkTypeBool
Definition vtkABI.h:64
#define vtkDataArray
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:318
#define VTK_MARSHALAUTO