# encoding: utf-8
# module vtkmodules.vtkCommonExecutionModel
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkCommonExecutionModel.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore


class vtkExtentSplitter(__vtkmodules_vtkCommonCore.vtkObject):
    """
    vtkExtentSplitter - Split an extent across other extents.
    
    Superclass: vtkObject
    
    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.
    """
    def AddExtent(self, x0, x1, y0, y1, z0, z1): # real signature unknown; restored from __doc__
        """
        AddExtent(self, x0:int, x1:int, y0:int, y1:int, z0:int, z1:int)
            -> None
        C++: void AddExtent(int x0, int x1, int y0, int y1, int z0,
            int z1)
        AddExtent(self, extent:[int, ...]) -> None
        C++: void AddExtent(int *extent)
        
        Add an extent to the queue of extents to be split among the
        available sources.
        """
        pass

    def AddExtentSource(self, id, priority, x0, x1, y0, y1, z0, z1): # real signature unknown; restored from __doc__
        """
        AddExtentSource(self, id:int, priority:int, x0:int, x1:int,
            y0:int, y1:int, z0:int, z1:int) -> None
        C++: void AddExtentSource(int id, int priority, int x0, int x1,
            int y0, int y1, int z0, int z1)
        AddExtentSource(self, id:int, priority:int, extent:[int, ...])
            -> None
        C++: void 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.
        """
        pass

    def ComputeSubExtents(self): # real signature unknown; restored from __doc__
        """
        ComputeSubExtents(self) -> int
        C++: int 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.
        """
        return 0

    def GetNumberOfGenerationsFromBase(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBase(self, type:str) -> int
        C++: vtkIdType GetNumberOfGenerationsFromBase(const char *type)
            override;
        
        Given the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfGenerationsFromBaseType(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBaseType(type:str) -> int
        C++: static vtkIdType GetNumberOfGenerationsFromBaseType(
            const char *type)
        
        Given a the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfSubExtents(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfSubExtents(self) -> int
        C++: int 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.
        """
        return 0

    def GetPointMode(self): # real signature unknown; restored from __doc__
        """
        GetPointMode(self) -> int
        C++: virtual vtkTypeBool GetPointMode()
        
        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.
        """
        return 0

    def GetSubExtent(self, index): # real signature unknown; restored from __doc__
        """
        GetSubExtent(self, index:int) -> (int, int, int, int, int, int)
        C++: int *GetSubExtent(int index)
        GetSubExtent(self, index:int, extent:[int, ...]) -> None
        C++: void 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.
        """
        pass

    def GetSubExtentSource(self, index): # real signature unknown; restored from __doc__
        """
        GetSubExtentSource(self, index:int) -> int
        C++: int 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.
        """
        return 0

    def IsA(self, type): # real signature unknown; restored from __doc__
        """
        IsA(self, type:str) -> int
        C++: vtkTypeBool IsA(const char *type) override;
        
        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.
        """
        return 0

    def IsTypeOf(self, type): # real signature unknown; restored from __doc__
        """
        IsTypeOf(type:str) -> int
        C++: static vtkTypeBool IsTypeOf(const char *type)
        
        Return 1 if this class type 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.
        """
        return 0

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkExtentSplitter
        C++: vtkExtentSplitter *NewInstance()
        """
        return vtkExtentSplitter

    def PointModeOff(self): # real signature unknown; restored from __doc__
        """
        PointModeOff(self) -> None
        C++: virtual void PointModeOff()
        """
        pass

    def PointModeOn(self): # real signature unknown; restored from __doc__
        """
        PointModeOn(self) -> None
        C++: virtual void PointModeOn()
        """
        pass

    def RemoveAllExtentSources(self): # real signature unknown; restored from __doc__
        """
        RemoveAllExtentSources(self) -> None
        C++: void RemoveAllExtentSources()
        """
        pass

    def RemoveExtentSource(self, id): # real signature unknown; restored from __doc__
        """
        RemoveExtentSource(self, id:int) -> None
        C++: void RemoveExtentSource(int id)
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkExtentSplitter
        C++: static vtkExtentSplitter *SafeDownCast(vtkObjectBase *o)
        """
        return vtkExtentSplitter

    def SetPointMode(self, _arg): # real signature unknown; restored from __doc__
        """
        SetPointMode(self, _arg:int) -> None
        C++: virtual void SetPointMode(vtkTypeBool _arg)
        """
        pass

    def __delattr__(self, *args, **kwargs): # real signature unknown
        """ Implement delattr(self, name). """
        pass

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    def __setattr__(self, *args, **kwargs): # real signature unknown
        """ Implement setattr(self, name, value). """
        pass

    def __str__(self, *args, **kwargs): # real signature unknown
        """ Return str(self). """
        pass

    __this__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """Pointer to the C++ object."""


    __dict__ = None # (!) real value is 'mappingproxy({\'__vtkname__\': \'vtkExtentSplitter\', \'IsTypeOf\': <method \'IsTypeOf\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'IsA\': <method \'IsA\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'SafeDownCast\': <method \'SafeDownCast\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'NewInstance\': <method \'NewInstance\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'GetNumberOfGenerationsFromBaseType\': <method \'GetNumberOfGenerationsFromBaseType\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'GetNumberOfGenerationsFromBase\': <method \'GetNumberOfGenerationsFromBase\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'AddExtentSource\': <method \'AddExtentSource\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'RemoveExtentSource\': <method \'RemoveExtentSource\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'RemoveAllExtentSources\': <method \'RemoveAllExtentSources\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'AddExtent\': <method \'AddExtent\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'ComputeSubExtents\': <method \'ComputeSubExtents\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'GetNumberOfSubExtents\': <method \'GetNumberOfSubExtents\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'GetSubExtent\': <method \'GetSubExtent\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'GetSubExtentSource\': <method \'GetSubExtentSource\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'GetPointMode\': <method \'GetPointMode\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'SetPointMode\': <method \'SetPointMode\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'PointModeOn\': <method \'PointModeOn\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'PointModeOff\': <method \'PointModeOff\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'__new__\': <built-in method __new__ of type object at 0x00007FF82F4E2570>, \'__repr__\': <slot wrapper \'__repr__\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'__str__\': <slot wrapper \'__str__\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'__getattribute__\': <slot wrapper \'__getattribute__\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'__setattr__\': <slot wrapper \'__setattr__\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'__delattr__\': <slot wrapper \'__delattr__\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'__dict__\': <attribute \'__dict__\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'__this__\': <attribute \'__this__\' of \'vtkmodules.vtkCommonExecutionModel.vtkExtentSplitter\' objects>, \'__doc__\': \'vtkExtentSplitter - Split an extent across other extents.\\n\\nSuperclass: vtkObject\\n\\nvtkExtentSplitter splits each input extent into non-overlapping\\nsub-extents that are completely contained within other "source\\nextents".  A source extent corresponds to some resource providing an\\nextent.  Each source extent has an integer identifier, integer\\npriority, and an extent.  The input extents are split into\\nsub-extents according to priority, availability, and amount of\\noverlap of the source extents.  This can be used by parallel data\\nreaders to read as few piece files as possible.\\n\\n\'})'
    __vtkname__ = 'vtkExtentSplitter'


