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.11.1' __version_full__ = '5.11.1' #============================================================================== # # Program: ParaView # Module: __init__.py # # 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. # #============================================================================== 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 GetVersion(self): """::deprecated:: 5.10 Return version as a float. Will return None is no version is specified. This method is deprecated in 5.10. It's return value is not appropriate for version number comparisons and hence should no longer be used. """ if self: version = float(self.minor) while version >= 1.0: version = version / 10.0 version += float(self.major) return version return None 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: value = _version(None, None) elif len(value) == 1: value = _version(value[0], 0) elif len(value) >= 2: value = _version(value[0], value[1]) elif type(value) == int: value = _version(value, 0) elif type(value) == float: major = int(value) minor = int(10 * value) - (10 * major) value = _version(major, minor) return 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 # convert other to _version, if possible other = self._convert(other) if type(other) == type(self): return self.__version < other.__version else: raise TypeError("unsupport type %s", type(other)) def __le__(self, other): """This will always return False if compatibility is not forced to a particular version.""" if not self: return False # convert other to _version, if possible other = self._convert(other) if type(other) == type(self): return self.__version <= other.__version else: raise TypeError("unsupport type %s", type(other)) def __eq__(self, other): raise RuntimeError("Equal operation not supported.") def __ne__(self, other): raise RuntimeError("NotEqual operation not supported.") def __gt__(self, other): """This will always return True if compatibility is not being forced to a particular version""" if not self: return True # convert other to _version, if possible other = self._convert(other) if type(other) == type(self): return self.__version > other.__version else: raise TypeError("unsupport type %s", type(other)) def __ge__(self, other): """This will always return True if compatibility is not being forced to a particular version""" myversion = self.GetVersion() if not myversion: return True # convert other to _version, if possible other = self._convert(other) if type(other) == type(self): return self.__version >= other.__version else: raise TypeError("unsupport type %s", type(other)) def __repr__(self): return str(self.__version) 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 @classmethod def GetVersion(cls): return _version(cls.major, cls.minor) # This is reimplemented in vtkSMCoreUtilities::SanitizeName(). Keep both # implementations consistent. 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 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 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