VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkExtentSplitter Class Reference

Split an extent across other extents. More...

#include <vtkExtentSplitter.h>

Inheritance diagram for vtkExtentSplitter:
[legend]
Collaboration diagram for vtkExtentSplitter:
[legend]

Public Types

typedef vtkObject Superclass
 
- Public Types inherited from vtkObject
typedef vtkObjectBase Superclass
 

Public Member Functions

virtual int IsA (const char *type)
 
vtkExtentSplitterNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent)
 
int ComputeSubExtents ()
 
int GetNumberOfSubExtents ()
 
int GetSubExtentSource (int index)
 
void AddExtentSource (int id, int priority, int x0, int x1, int y0, int y1, int z0, int z1)
 
void AddExtentSource (int id, int priority, int *extent)
 
void RemoveExtentSource (int id)
 
void RemoveAllExtentSources ()
 
void AddExtent (int x0, int x1, int y0, int y1, int z0, int z1)
 
void AddExtent (int *extent)
 
intGetSubExtent (int index)
 
void GetSubExtent (int index, int *extent)
 
virtual int GetPointMode ()
 
virtual void SetPointMode (int)
 
virtual void PointModeOn ()
 
virtual void PointModeOff ()
 
- Public Member Functions inherited from vtkObject
vtkObjectNewInstance () const
 
virtual void DebugOn ()
 
virtual void DebugOff ()
 
bool GetDebug ()
 
void SetDebug (bool debugFlag)
 
virtual void Modified ()
 
virtual unsigned long GetMTime ()
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 
vtkCommandGetCommand (unsigned long tag)
 
void RemoveObserver (vtkCommand *)
 
void RemoveObservers (unsigned long event, vtkCommand *)
 
void RemoveObservers (const char *event, vtkCommand *)
 
int HasObserver (unsigned long event, vtkCommand *)
 
int HasObserver (const char *event, vtkCommand *)
 
void RemoveObserver (unsigned long tag)
 
void RemoveObservers (unsigned long event)
 
void RemoveObservers (const char *event)
 
void RemoveAllObservers ()
 
int HasObserver (unsigned long event)
 
int HasObserver (const char *event)
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f)
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 
int InvokeEvent (unsigned long event, void *callData)
 
int InvokeEvent (const char *event, void *callData)
 
int InvokeEvent (unsigned long event)
 
int InvokeEvent (const char *event)
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 
virtual void Delete ()
 
virtual void FastDelete ()
 
void Print (ostream &os)
 
virtual void Register (vtkObjectBase *o)
 
virtual void UnRegister (vtkObjectBase *o)
 
void SetReferenceCount (int)
 
void PrintRevisions (ostream &)
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 
int GetReferenceCount ()
 

Static Public Member Functions

static int IsTypeOf (const char *type)
 
static vtkExtentSplitterSafeDownCast (vtkObjectBase *o)
 
static vtkExtentSplitterNew ()
 
- Static Public Member Functions inherited from vtkObject
static int IsTypeOf (const char *type)
 
static vtkObjectSafeDownCast (vtkObjectBase *o)
 
static vtkObjectNew ()
 
static void BreakOnError ()
 
static void SetGlobalWarningDisplay (int val)
 
static void GlobalWarningDisplayOn ()
 
static void GlobalWarningDisplayOff ()
 
static int GetGlobalWarningDisplay ()
 
- Static Public Member Functions inherited from vtkObjectBase
static int IsTypeOf (const char *name)
 
static vtkObjectBaseNew ()
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkExtentSplitter ()
 
 ~vtkExtentSplitter ()
 
void SplitExtent (int *extent, int *subextent)
 
int IntersectExtents (const int *extent1, const int *extent2, int *result)
 
int Min (int a, int b)
 
int Max (int a, int b)
 
- Protected Member Functions inherited from vtkObject
 vtkObject ()
 
virtual ~vtkObject ()
 
virtual void RegisterInternal (vtkObjectBase *, int check)
 
virtual void UnRegisterInternal (vtkObjectBase *, int check)
 
void InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=NULL)
 
void InternalReleaseFocus ()
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void CollectRevisions (ostream &)
 
virtual void ReportReferences (vtkGarbageCollector *)
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Protected Attributes

vtkExtentSplitterInternals * Internal
 
int PointMode
 
- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
- Protected Attributes inherited from vtkObjectBase
vtkAtomicInt32 ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Detailed Description

Split an extent across other extents.

vtkExtentSplitter splits each input extent into non-overlapping sub-extents that are completely contained within other "source extents". A source extent corresponds to some resource providing an extent. Each source extent has an integer identifier, integer priority, and an extent. The input extents are split into sub-extents according to priority, availability, and amount of overlap of the source extents. This can be used by parallel data readers to read as few piece files as possible.

Definition at line 36 of file vtkExtentSplitter.h.

Member Typedef Documentation

Definition at line 39 of file vtkExtentSplitter.h.

Constructor & Destructor Documentation

vtkExtentSplitter::vtkExtentSplitter ( )
protected
vtkExtentSplitter::~vtkExtentSplitter ( )
protected

Member Function Documentation

static int vtkExtentSplitter::IsTypeOf ( const char *  type)
static
virtual int vtkExtentSplitter::IsA ( const char *  name)
virtual

Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkObject.

static vtkExtentSplitter* vtkExtentSplitter::SafeDownCast ( vtkObjectBase o)
static
virtual vtkObjectBase* vtkExtentSplitter::NewInstanceInternal ( ) const
protectedvirtual

Reimplemented from vtkObject.

vtkExtentSplitter* vtkExtentSplitter::NewInstance ( ) const
void vtkExtentSplitter::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
virtual

Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkObject.

static vtkExtentSplitter* vtkExtentSplitter::New ( )
static
void vtkExtentSplitter::AddExtentSource ( int  id,
int  priority,
int  x0,
int  x1,
int  y0,
int  y1,
int  z0,
int  z1 
)

Add/Remove a source providing the given extent. Sources with higher priority numbers are favored. Source id numbers and priorities must be non-negative.

void vtkExtentSplitter::AddExtentSource ( int  id,
int  priority,
int extent 
)

Add/Remove a source providing the given extent. Sources with higher priority numbers are favored. Source id numbers and priorities must be non-negative.

void vtkExtentSplitter::RemoveExtentSource ( int  id)

Add/Remove a source providing the given extent. Sources with higher priority numbers are favored. Source id numbers and priorities must be non-negative.

void vtkExtentSplitter::RemoveAllExtentSources ( )

Add/Remove a source providing the given extent. Sources with higher priority numbers are favored. Source id numbers and priorities must be non-negative.

void vtkExtentSplitter::AddExtent ( int  x0,
int  x1,
int  y0,
int  y1,
int  z0,
int  z1 
)

Add an extent to the queue of extents to be split among the available sources.

void vtkExtentSplitter::AddExtent ( int extent)

Add an extent to the queue of extents to be split among the available sources.

int vtkExtentSplitter::ComputeSubExtents ( )

Split the extents currently in the queue among the available sources. The queue is empty when this returns. Returns 1 if all extents could be read. Returns 0 if any portion of any extent was not available through any source.

int vtkExtentSplitter::GetNumberOfSubExtents ( )

Get the number of sub-extents into which the original set of extents have been split across the available sources. Valid after a call to ComputeSubExtents.

int* vtkExtentSplitter::GetSubExtent ( int  index)

Get the sub-extent associated with the given index. Use GetSubExtentSource to get the id of the source from which this sub-extent should be read. Valid after a call to ComputeSubExtents.

void vtkExtentSplitter::GetSubExtent ( int  index,
int extent 
)

Get the sub-extent associated with the given index. Use GetSubExtentSource to get the id of the source from which this sub-extent should be read. Valid after a call to ComputeSubExtents.

int vtkExtentSplitter::GetSubExtentSource ( int  index)

Get the id of the source from which the sub-extent associated with the given index should be read. Returns -1 if no source provides the sub-extent.

virtual int vtkExtentSplitter::GetPointMode ( )
virtual

Get/Set whether "point mode" is on. In point mode, sub-extents are generated to ensure every point in the update request is read, but not necessarily every cell. This can be used when point data are stored in a planar slice per piece with no cell data. The default is OFF.

virtual void vtkExtentSplitter::SetPointMode ( int  )
virtual

Get/Set whether "point mode" is on. In point mode, sub-extents are generated to ensure every point in the update request is read, but not necessarily every cell. This can be used when point data are stored in a planar slice per piece with no cell data. The default is OFF.

virtual void vtkExtentSplitter::PointModeOn ( )
virtual

Get/Set whether "point mode" is on. In point mode, sub-extents are generated to ensure every point in the update request is read, but not necessarily every cell. This can be used when point data are stored in a planar slice per piece with no cell data. The default is OFF.

virtual void vtkExtentSplitter::PointModeOff ( )
virtual

Get/Set whether "point mode" is on. In point mode, sub-extents are generated to ensure every point in the update request is read, but not necessarily every cell. This can be used when point data are stored in a planar slice per piece with no cell data. The default is OFF.

void vtkExtentSplitter::SplitExtent ( int extent,
int subextent 
)
protected
int vtkExtentSplitter::IntersectExtents ( const int extent1,
const int extent2,
int result 
)
protected
int vtkExtentSplitter::Min ( int  a,
int  b 
)
protected
int vtkExtentSplitter::Max ( int  a,
int  b 
)
protected

Member Data Documentation

vtkExtentSplitterInternals* vtkExtentSplitter::Internal
protected

Definition at line 107 of file vtkExtentSplitter.h.

int vtkExtentSplitter::PointMode
protected

Definition at line 112 of file vtkExtentSplitter.h.


The documentation for this class was generated from the following file: