// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause /** * @class vtkStreamerBase * @brief Superclass for filters that stream input pipeline * * * This class can be used as a superclass for filters that want to * stream their input pipeline by making multiple execution passes. * The subclass needs to set NumberOfPasses to > 1 before execution ( * usual in the constructor or in RequestInformation) to initiate * streaming. vtkStreamerBase will handle streaming while calling * ExecutePass() during each pass. CurrentIndex can be used to obtain * the index for the current pass. Finally, PostExecute() is called * after the last pass and can be used to cleanup any internal data * structures and create the actual output. */ #ifndef vtkStreamerBase_h #define vtkStreamerBase_h #include "vtkAlgorithm.h" #include "vtkFiltersCoreModule.h" // For export macro VTK_ABI_NAMESPACE_BEGIN class VTKFILTERSCORE_EXPORT vtkStreamerBase : public vtkAlgorithm { public: vtkTypeMacro(vtkStreamerBase, vtkAlgorithm); void PrintSelf(ostream& os, vtkIndent indent) override; /** * see vtkAlgorithm for details */ vtkTypeBool ProcessRequest( vtkInformation*, vtkInformationVector**, vtkInformationVector*) override; protected: vtkStreamerBase(); ~vtkStreamerBase() override; virtual int RequestInformation(vtkInformation*, vtkInformationVector**, vtkInformationVector*) { return 1; } /** * This is called by the superclass. * This is the method you should override. */ virtual int RequestUpdateExtent( vtkInformation*, vtkInformationVector**, vtkInformationVector*) = 0; virtual int RequestData(vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector); // This method is called during each execution pass. Subclasses // should implement this to do actual work. virtual int ExecutePass( vtkInformationVector** inputVector, vtkInformationVector* outputVector) = 0; // This method is called after streaming is completed. Subclasses // can override this method to perform cleanup. virtual int PostExecute(vtkInformationVector**, vtkInformationVector*) { return 1; } unsigned int NumberOfPasses; unsigned int CurrentIndex; private: vtkStreamerBase(const vtkStreamerBase&) = delete; void operator=(const vtkStreamerBase&) = delete; }; VTK_ABI_NAMESPACE_END #endif //_vtkStreamerBase_h