# SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
# SPDX-License-Identifier: BSD-3-Clause
r"""
The paraview package provides modules used to script ParaView. Generally, users
should import the modules of interest directly e.g.::
from paraview.simple import *
However, one may want to import paraview package before importing any of the
ParaView modules to force backwards compatibility to an older version::
# To run scripts written for ParaView 4.0 in newer versions, you can use the
# following.
import paraview
paraview.compatibility.major = 4
paraview.compatibility.minor = 0
# Now, import the modules of interest.
from paraview.simple import *
"""
from __future__ import absolute_import
__version__ = '5.13.0'
__version_full__ = '5.13.0'
class _version(object):
def __init__(self, major, minor):
if major is not None and minor is not None:
self.__version = (int(major), int(minor))
elif major is not None:
self.__version = (int(major),)
else:
self.__version = tuple()
@property
def major(self):
"major version number"
try:
return self.__version[0]
except IndexError:
return None
@major.setter
def major(self, value):
if value is None:
self.__version = tuple()
elif len(self.__version) <= 1:
self.__version = (int(value),)
else:
self.__version = (int(value), self.__version[1])
@property
def minor(self):
"minor version number"
try:
return self.__version[1]
except IndexError:
return None
@minor.setter
def minor(self, value):
if value is None:
if len(self.__version) >= 1:
self.__version = (self._version[0], )
else:
self.__version = tuple()
elif len(self._version) >= 2:
self.__version = (self.__version[0], int(value))
else:
self.__version = (0, int(value))
@property
def version(self):
"version as a tuple (major, minor)"
return self.__version
def __bool__(self):
return bool(self.__version)
def _convert(self, value):
# convert value to _version
if type(value) == type(self):
return value
elif type(value) == tuple or type(value) == list:
if len(value) == 0:
return _version(None, None)
elif len(value) == 1:
return _version(value[0], 0)
elif len(value) >= 2:
return _version(value[0], value[1])
elif type(value) == int:
return _version(value, 0)
else:
raise TypeError("unsupport type %s", type(value))
def __lt__(self, other):
"""This will always return False if compatibility is not being forced
to a particular version."""
if not self:
return False
return self.__version < self._convert(other).__version
def __le__(self, other):
"""This will always return False if compatibility is not forced to a
particular version."""
if not self:
return False
return self.__version <= self._convert(other).__version
def __eq__(self, other):
"""This will always return True if compatibility is not being forced to
a particular version"""
if not self:
return True
return self.__version == self._convert(other).__version
def __ne__(self, other):
"""This will always return False if compatibility is not being forced to
a particular version"""
if not self:
return False
return self.__version != self._convert(other).__version
def __gt__(self, other):
"""This will always return True if compatibility is not being forced to
a particular version"""
if not self:
return True
return self.__version > self._convert(other).__version
def __ge__(self, other):
"""This will always return True if compatibility is not being forced to
a particular version"""
if not self:
return True
return self.__version >= self._convert(other).__version
def __repr__(self):
return str(self.__version)
[docs]class compatibility:
"""Class used to check version number and compatibility. Users should only
set the compatibility explicitly to force backwards compatibility to and
older versions.
"""
minor = None
major = None
[docs] @classmethod
def GetVersion(cls):
return _version(cls.major, cls.minor)
# This is reimplemented in vtkSMCoreUtilities::SanitizeName(). Keep both
# implementations consistent.
[docs]def make_name_valid(name):
"""Make a string into a valid Python variable name."""
if not name:
return None
import string
valid_chars = "_%s%s" % (string.ascii_letters, string.digits)
name = str().join([c for c in name if c in valid_chars])
if name and not name[0].isalpha():
name = 'a' + name
return name
[docs]class options:
"""Values set here have any effect, only when importing the paraview module
in python interpretor directly i.e. not through pvpython or pvbatch. In
that case, one should use command line arguments for the two
executables"""
"""When True, act as pvbatch. Default behaviour is to act like pvpython"""
batch = False
"""When True, acts like pvbatch --symmetric. Requires that batch is set to
True to have any effect."""
symmetric = False
"""When True, `paraview.print_debug_info()` will result in printing the
debug messages to stdout. Default is False, hence all debug messages will be
suppressed."""
print_debug_messages = False
"""When True, This mean the current process is a satellite and should not try to
connect or do anything else."""
satelite = False
[docs]class NotSupportedException(Exception):
"""Exception that is fired when obsolete API is used in a script."""
def __init__(self, msg):
self.msg = msg
print_debug_info("\nDEBUG: %s\n" % msg)
def __str__(self):
return "%s" % (self.msg)
"""This variable is set whenever Python is initialized within a ParaView
Qt-based application. Modules within the 'paraview' package often use this to
tailor their behaviour based on whether the Python environment is embedded
within an application or not."""
fromGUI = False
#------------------------------------------------------------------------------
# this little trick is for static builds of ParaView. In such builds, if
# the user imports this Python package in a non-statically linked Python
# interpreter i.e. not of the of the ParaView-python executables, then we import the
# static components importer module.
try:
from .modules import vtkRemotingCore
except ImportError:
import _paraview_modules_static
#------------------------------------------------------------------------------
def _create_logger(name="paraview"):
import logging
logger = logging.getLogger(name)
if not hasattr(logger, "_paraview_initialized"):
logger._paraview_initialized = True
from paraview.detail import loghandler
logger.addHandler(loghandler.VTKHandler())
logger.setLevel(loghandler.get_level())
return logger
logger = _create_logger()
print_error = logger.error
print_warning = logger.warning
print_debug_info = logger.debug
print_debug = logger.debug
print_info = logger.info
log = logger.log