espressopp/espressopp

View on GitHub
src/Real3D.py

Summary

Maintainability
D
2 days
Test Coverage
#  Copyright (C) 2012,2013
#      Max Planck Institute for Polymer Research
#  Copyright (C) 2008,2009,2010,2011
#      Max-Planck-Institute for Polymer Research & Fraunhofer SCAI
#
#  This file is part of ESPResSo++.
#
#  ESPResSo++ is free software: you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  ESPResSo++ is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.


r"""
*****************
espressopp.Real3D
*****************


.. function:: espressopp.Real3D(\*args)

                :param \*args:
                :type \*args:

.. function:: espressopp.Real3D.x(v, [0)

                :param v:
                :param [0:
                :type v:
                :type [0:
                :rtype:

.. function:: espressopp.Real3D.y(v, [1)

                :param v:
                :param [1:
                :type v:
                :type [1:
                :rtype:

.. function:: espressopp.Real3D.z(v, [2)

                :param v:
                :param [2:
                :type v:
                :type [2:
                :rtype:

.. function:: espressopp.toReal3DFromVector(\*args)

                :param \*args:
                :type \*args:

.. function:: espressopp.toReal3D(\*args)

                :param \*args:
                :type \*args:
"""

# List of exported methods from the module.
import numbers

from _espressopp import Real3D

__all__ = ['Real3D', 'toReal3DFromVector', 'toReal3D']


# This injects additional methods into the Real3D class and pulls it
# into this module. Now, this hacky method is required because other places
# of the code uses _espressopp.Real3D type.
def extend_class():
    origin_init = Real3D.__init__

    def new_init(self, *args):
        if len(args) == 0:
            x = y = z = 0.0
        elif len(args) == 1:
            arg0 = args[0]
            if isinstance(arg0, Real3D):
                x = arg0.x
                y = arg0.y
                z = arg0.z
            # test whether the argument is iterable and has 3 elements
            elif hasattr(arg0, '__iter__') and len(arg0) == 3:
                x, y, z = arg0
            elif isinstance(arg0, float) or isinstance(arg0, int):
                x = y = z = arg0
            else:
                raise TypeError("Cannot initialize Real3D from %s" % (args))
        elif len(args) == 3:
            x, y, z = args
        else:
            raise TypeError("Cannot initialize Real3D from %s" % (args))

        origin_init(self, x, y, z)

    def _eq(self, other):
        if other is None:
            return False
        if isinstance(other, numbers.Number):
            return all([self[i] == other for i in range(3)])

        return all([self[i] == other[i] for i in range(3)])

    def _lt(self, other):
        if other is None:
            return True

        return id(self) < id(other)

    def _get_getter_setter(idx):
        def _get(self):
            return self[idx]

        def _set(self, v):
            self[idx] = v

        return _get, _set

    Real3D.__init__ = new_init
    Real3D.x = property(*_get_getter_setter(0))
    Real3D.y = property(*_get_getter_setter(1))
    Real3D.z = property(*_get_getter_setter(2))
    Real3D.__str__ = lambda self: str((self[0], self[1], self[2]))
    Real3D.__repr__ = lambda self: 'Real3D' + str(self)
    Real3D.__eq__ = _eq
    Real3D.__lt__ = _lt
    Real3D.__gt__ = _lt


extend_class()


def toReal3DFromVector(*args):
    """Try to convert the arguments to a Real3D.

    This function will only convert to a Real3D if x, y and z are
    specified."""
    if len(args) == 1:
        arg0 = args[0]
        if isinstance(arg0, Real3D):
            return arg0
        elif hasattr(arg0, '__iter__') and len(arg0) == 3:
            return Real3D(*args)
    elif len(args) == 3:
        return Real3D(*args)

    raise TypeError("Specify x, y and z.")


def toReal3D(*args):
    """Try to convert the arguments to a Real3D, returns the argument,
    if it is already a Real3D."""
    if len(args) == 1 and isinstance(args[0], Real3D):
        return args[0]
    else:
        return Real3D(*args)