/usr/include/paraview/vtkSISourceProxy.h is in paraview-dev 5.0.1+dfsg1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
Program: ParaView
Module: vtkSISourceProxy.h
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.
=========================================================================*/
// .NAME vtkSISourceProxy
// .SECTION Description
// vtkSISourceProxy is the server-side helper for a vtkSMSourceProxy.
// It adds support to handle various vtkAlgorithm specific Invoke requests
// coming from the client. vtkSISourceProxy also inserts post-processing filters
// for each output port from the vtkAlgorithm. These post-processing filters
// deal with things like parallelizing the data etc.
#ifndef vtkSISourceProxy_h
#define vtkSISourceProxy_h
#include "vtkPVServerImplementationCoreModule.h" //needed for exports
#include "vtkSIProxy.h"
class vtkAlgorithm;
class vtkAlgorithmOutput;
class VTKPVSERVERIMPLEMENTATIONCORE_EXPORT vtkSISourceProxy : public vtkSIProxy
{
public:
static vtkSISourceProxy* New();
vtkTypeMacro(vtkSISourceProxy, vtkSIProxy);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Returns the vtkAlgorithmOutput for an output port, if valid.
virtual vtkAlgorithmOutput* GetOutputPort(int port);
// Description:
// Triggers UpdateInformation() on vtkObject if possible.
virtual void UpdatePipelineInformation();
// Description:
// Triggers UpdatePipeline().
// Called from client.
virtual void UpdatePipeline(int port, double time, bool doTime);
// Description:
// setups extract selection proxies.
virtual void SetupSelectionProxy(int port, vtkSIProxy* extractSelection);
// Description:
// Allow to shut down pipeline execution. This is particulary useful for
// a Catalyst session that does not contains any real data.
virtual void SetDisablePipelineExecution(bool value)
{ this->DisablePipelineExecution = value; }
//BTX
protected:
vtkSISourceProxy();
~vtkSISourceProxy();
// Description:
// Creates the VTKObjects. Overridden to add post-filters to the pipeline.
virtual bool CreateVTKObjects(vtkSMMessage* message);
// Description:
// Read xml-attributes.
virtual bool ReadXMLAttributes(vtkPVXMLElement* element);
// Description:
// Create the output ports and add post filters for each output port.
// CreateOutputPorts is only called when an output-port is requested, i.e.
// GetOutputPort() is called.
virtual bool CreateOutputPorts();
// Description:
// Called to initialize a single output port. This assigns each output port an
// interpreter id and then initializes the translator/extract pieces/post
// filters.
virtual bool InitializeOutputPort(vtkAlgorithm* alo, int port);
// Description:
// Insert a filter to create the Post Filter
// so that filters can request data conversions
void InsertPostFilterIfNecessary(vtkAlgorithm* algo, int port);
// Description:
// Callbacks to add start/end events to the timer log.
void MarkStartEvent();
void MarkEndEvent();
char *ExecutiveName;
vtkSetStringMacro(ExecutiveName);
bool DisablePipelineExecution;
friend class vtkSICompoundSourceProxy;
private:
vtkSISourceProxy(const vtkSISourceProxy&); // Not implemented
void operator=(const vtkSISourceProxy&); // Not implemented
class vtkInternals;
vtkInternals* Internals;
bool PortsCreated;
//ETX
};
#endif
|