Files
ThirdParty-6/ParaView-5.0.1/ParaViewCore/ServerManager/Core/vtkSMCompoundSourceProxy.h

161 lines
6.1 KiB
C++

/*=========================================================================
Program: ParaView
Module: vtkSMCompoundSourceProxy.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 vtkSMCompoundSourceProxy - a proxy excapsulation a pipeline of proxies.
// .SECTION Description
// vtkSMCompoundSourceProxy is a proxy that allows grouping of multiple proxies.
// vtkSMProxy has also this capability since a proxy can have sub-proxies.
// However, vtkSMProxy does not allow public access to these proxies. The
// only access is through exposed properties. The main reason behind this
// is consistency. There are proxies that will not work if the program
// accesses the sub-proxies directly. The main purpose of
// vtkSMCompoundSourceProxy is to provide an interface to access the
// sub-proxies. The compound proxy also maintains the connections between
// subproxies. This makes it possible to encapsulate a pipeline into a single
// proxy. Since vtkSMCompoundSourceProxy is a vtkSMSourceProxy, it can be
// directly used to input to other filters, representations etc.
// vtkSMCompoundSourceProxy provides API to exposed properties from sub proxies
// as well as output ports of the subproxies.
#ifndef vtkSMCompoundSourceProxy_h
#define vtkSMCompoundSourceProxy_h
#include "vtkPVServerManagerCoreModule.h" //needed for exports
#include "vtkSMSourceProxy.h"
class vtkSMProxyLocator;
class vtkPVXMLElement;
class vtkSMProxyManager;
class VTKPVSERVERMANAGERCORE_EXPORT vtkSMCompoundSourceProxy : public vtkSMSourceProxy
{
public:
static vtkSMCompoundSourceProxy* New();
vtkTypeMacro(vtkSMCompoundSourceProxy, vtkSMSourceProxy);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Add a proxy to be included in this compound proxy.
// The name must be unique to each proxy added, otherwise the previously
// added proxy will be replaced.
void AddProxy(const char* name, vtkSMProxy* proxy);
// Description:
// Expose a property from the sub proxy (added using AddProxy).
// Only exposed properties are accessible externally. Note that the sub proxy
// whose property is being exposed must have been already added using
// AddProxy().
void ExposeProperty(const char* proxyName,
const char* propertyName,
const char* exposedName);
// Description:
// Expose an output port from a subproxy. Exposed output ports are treated as
// output ports of the vtkSMCompoundSourceProxy itself.
// This method does not may the output port available. One must call
// CreateOutputPorts().
void ExposeOutputPort(const char* proxyName,
const char* portName,
const char* exposedName);
// Description:
// Expose an output port from a subproxy. Exposed output ports are treated as
// output ports of the vtkSMCompoundSourceProxy itself.
// This method does not may the output port available. One must call
// CreateOutputPorts().
void ExposeOutputPort(const char* proxyName,
unsigned int portIndex,
const char* exposedName);
// Description:
// Returns the number of sub-proxies.
unsigned int GetNumberOfProxies()
{ return this->GetNumberOfSubProxies(); }
// Description:
// Returns the sub proxy at a given index.
vtkSMProxy* GetProxy(unsigned int cc)
{ return this->GetSubProxy(cc); }
// Description:
// Returns the subproxy with the given name.
vtkSMProxy* GetProxy(const char* name)
{ return this->GetSubProxy(name); }
// Description:
// Returns the name used to store sub-proxy. Returns 0 if sub-proxy does
// not exist.
const char* GetProxyName(unsigned int index)
{ return this->GetSubProxyName(index); }
// Description:
// Creates the output port proxiess for this filter.
// Each output port proxy corresponds to an actual output port on the
// algorithm.
virtual void CreateOutputPorts();
// Description:
// Creates extract selection proxies for each output port if not already
// created. Overridden to update the selection proxies.
virtual void CreateSelectionProxies();
// Description:
// Update the VTK object on the server by pushing the values of
// all modifed properties (un-modified properties are ignored).
// If the object has not been created, it will be created first.
virtual void UpdateVTKObjects();
// Description:
// This is the same as save state except it will remove all references to
// "outside" proxies. Outside proxies are proxies that are not contained
// in the compound proxy. As a result, the saved state will be self
// contained. Returns the top element created. It is the caller's
// responsibility to delete the returned element. If root is NULL,
// the returned element will be a top level element.
vtkPVXMLElement* SaveDefinition(vtkPVXMLElement* root);
//BTX
protected:
vtkSMCompoundSourceProxy();
~vtkSMCompoundSourceProxy();
// Description:
// Read attributes from an XML element.
virtual int ReadXMLAttributes(vtkSMSessionProxyManager* pm, vtkPVXMLElement* element);
// Description:
// Call superclass' and then assigns a new executive
// (vtkCompositeDataPipeline)
virtual void CreateVTKObjects();
// returns 1 if the value element should be written.
// proxy property values that point to "outside" proxies
// are not written
int ShouldWriteValue(vtkPVXMLElement* valueElem);
void TraverseForProperties(vtkPVXMLElement* root);
void StripValues(vtkPVXMLElement* propertyElem);
private:
vtkSMCompoundSourceProxy(const vtkSMCompoundSourceProxy&); // Not implemented
void operator=(const vtkSMCompoundSourceProxy&); // Not implemented
class vtkInternals;
vtkInternals* CSInternals;
//ETX
};
#endif