espressopp/espressopp

View on GitHub
src/Version.py

Summary

Maintainability
A
25 mins
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.Version
******************

Return version information of espressopp module

Example:

>>> version     = espressopp.Version()
>>> print "Name                   = ", version.name
>>> print "Major version number   = ", version.major
>>> print "Minor version number   = ", version.minor
>>> print "Git revision = ", version.gitrevision
>>> print "boost version          = ", version.boostversion
>>> print "Patchlevel             = ", version.patchlevel
>>> print "Compilation date       = ", version.date
>>> print "Compilation time       = ", version.time

to print a full version info string:

>>> print version.info()


.. function:: espressopp.Version()

"""

from espressopp import pmi
from espressopp.esutil import cxxinit

import _espressopp
import mpi4py.MPI as MPI


class VersionLocal(_espressopp.Version):
    def __init__(self):

        if pmi._PMIComm and pmi._PMIComm.isActive():
            if pmi._MPIcomm.rank in pmi._PMIComm.getMPIcpugroup():
                cxxinit(self, _espressopp.Version)
            else :
                pass
        else :
            cxxinit(self, _espressopp.Version)

if pmi.isController:
    class Version(metaclass=pmi.Proxy):
        pmiproxydefs = dict(
            cls = 'espressopp.VersionLocal',
            pmiproperty = ['major', 'minor', 'gitrevision', 'boostversion', 'patchlevel', 'date', 'time', 'name'],
            pmicall = ['info']
            )