/usr/share/pyshared/mvpa2/base/info.py is in python-mvpa2 2.2.0-4ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See COPYING file distributed along with the PyMVPA package for the
# copyright and license terms.
#
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
"""Provide system and PyMVPA information useful while reporting bugs
"""
__docformat__ = 'restructuredtext'
import time, sys, os, subprocess
import platform as pl
from tempfile import mkstemp
from StringIO import StringIO
import mvpa2
from mvpa2.base import externals, cfg
from mvpa2.base.dochelpers import borrowkwargs
def _t2s(t):
res = []
for e in t:
if isinstance(e, tuple):
es = _t2s(e)
if es != '':
res += ['(%s)' % es]
elif e != '':
res += [e]
return '/'.join(res)
__all__ = ['wtf', 'get_pymvpa_gitversion']
def get_pymvpa_gitversion():
"""PyMVPA version as reported by git.
Returns
-------
None or str
Version of PyMVPA according to git.
"""
gitpath = os.path.join(os.path.dirname(mvpa2.__file__), os.path.pardir)
gitpathgit = os.path.join(gitpath, '.git')
if not os.path.exists(gitpathgit):
return None
ver = None
try:
(tmpd, tmpn) = mkstemp('mvpa', 'git')
retcode = subprocess.call(['git',
'--git-dir=%s' % gitpathgit,
'--work-tree=%s' % gitpath,
'describe', '--abbrev=4', 'HEAD'
],
stdout=tmpd,
stderr=subprocess.STDOUT)
outline = open(tmpn, 'r').readlines()[0].strip()
if outline.startswith('upstream/'):
ver = outline.replace('upstream/', '')
finally:
os.remove(tmpn)
return ver
class WTF(object):
"""Convenience class to contain information about PyMVPA and OS
TODO: refactor to actually not contain just string representation
but rather a dictionary (of dictionaries)
"""
__knownitems__ = set(('process', 'runtime',
'externals', 'system', 'sources'))
def __init__(self, include=None, exclude=None):
"""
Parameters
----------
include : list of str
By default, all known (listed in `__knownitems__`) are reported.
If only a limited set is needed to be reported -- specify it here.
exclude : list of str
If you want to exclude any item from being reported.
"""
self._info = ''
if include is None:
report_items = self.__knownitems__.copy()
else:
# check first
if not self.__knownitems__.issuperset(include):
raise ValueError, \
"Items %s provided in exclude are not known to WTF." \
" Known are %s" % \
(str(set(include).difference(self.__knownitems__)),
self.__knownitems__)
report_items = set(include)
if exclude is not None:
# check if all are known
if not self.__knownitems__.issuperset(exclude):
raise ValueError, \
"Items %s provided in exclude are not known to WTF." \
" Known are %s" % \
(str(set(exclude).difference(self.__knownitems__)),
self.__knownitems__)
report_items = report_items.difference(exclude)
self._report_items = report_items
self._acquire()
def _acquire_sources(self, out):
out.write("PyMVPA:\n")
out.write(" Version: %s\n" % mvpa2.__version__)
out.write(" Hash: %s\n" % mvpa2.__hash__)
out.write(" Path: %s\n" % mvpa2.__file__)
# Try to obtain git information if available
out.write(" Version control (GIT):\n")
try:
gitpath = os.path.join(os.path.dirname(mvpa2.__file__), os.path.pardir)
gitpathgit = os.path.join(gitpath, '.git')
if os.path.exists(gitpathgit):
for scmd, cmd in [
('Status', ['status']),
('Reference', 'show-ref -h HEAD'.split(' ')),
('Difference from last release %s' % mvpa2.__version__,
['diff', '--shortstat', 'upstream/%s...' % mvpa2.__version__])]:
try:
(tmpd, tmpn) = mkstemp('mvpa', 'git')
retcode = subprocess.call(['git',
'--git-dir=%s' % gitpathgit,
'--work-tree=%s' % gitpath] + cmd,
stdout=tmpd,
stderr=subprocess.STDOUT)
finally:
outlines = open(tmpn, 'r').readlines()
if len(outlines):
out.write(' %s:\n %s' % (scmd, ' '.join(outlines)))
os.remove(tmpn)
#except Exception, e:
# pass
else:
raise RuntimeError, "%s is not under GIT" % gitpath
except Exception, e:
out.write(' GIT information could not be obtained due "%s"\n' % e)
def _acquire_system(self, out):
out.write('SYSTEM:\n')
out.write(' OS: %s\n' %
' '.join([os.name,
pl.system(),
pl.release(),
pl.version()]).rstrip())
out.write(' Distribution: %s\n' %
' '.join([_t2s(pl.dist()),
_t2s(pl.mac_ver()),
_t2s(pl.win32_ver())]).rstrip())
def _acquire_externals(self, out):
# Test and list all dependencies:
sdeps = {True: [], False: [], 'Error': []}
for dep in sorted(externals._KNOWN):
try:
sdeps[externals.exists(dep, force=False)] += [dep]
except:
sdeps['Error'] += [dep]
out.write('EXTERNALS:\n')
out.write(' Present: %s\n' % ', '.join(sdeps[True]))
out.write(' Absent: %s\n' % ', '.join(sdeps[False]))
if len(sdeps['Error']):
out.write(' Errors in determining: %s\n' % ', '.join(sdeps['Error']))
SV = ('.__version__', ) # standard versioning
out.write(' Versions of critical externals:\n')
# First the ones known to externals,
# TODO: make all of them set in externals.versions
for k, v in externals.versions.iteritems():
out.write(' %-12s: %s\n' % (k, str(v)))
for e, mname, fs in (
('ctypes', None, SV),
('matplotlib', None, SV),
('lxml', None, ('.etree.__version__',)),
('nifti', None, SV),
('numpy', None, SV),
('openopt', 'openopt', SV),
('openopt', 'scikits.openopt', ('.openopt.__version__',)),
('pywt', None, SV),
#('rpy', None, ('.rpy_version',)),
('shogun', None, ('.Classifier.Version_get_version_release()',)),
):
try:
if not externals.exists(e):
continue #sver = 'not present'
else:
if mname is None:
mname = e
m = __import__(mname)
svers = [eval('m%s' % (f,)) for f in fs]
sver = ' '.join(svers)
except Exception, exc:
sver = 'failed to query due to "%s"' % str(exc)
out.write(' %-12s: %s\n' % (e, sver))
try:
if externals.exists('matplotlib'):
import matplotlib
out.write(' Matplotlib backend: %s\n'
% matplotlib.get_backend())
except Exception, exc:
out.write(' Failed to determine backend of matplotlib due to "%s"'
% str(exc))
def _acquire_runtime(self, out):
out.write("RUNTIME:\n")
out.write(" PyMVPA Environment Variables:\n")
out.write(' ' + ' '.join(
['%-20s: "%s"\n' % (str(k), str(v))
for k, v in os.environ.iteritems()
if (k.startswith('MVPA') or k.startswith('PYTHON'))]))
out.write(" PyMVPA Runtime Configuration:\n")
out.write(' ' + str(cfg).replace('\n', '\n ').rstrip() + '\n')
def _acquire_process(self, out):
try:
procstat = open('/proc/%d/status' % os.getpid()).readlines()
out.write(' Process Information:\n')
out.write(' ' + ' '.join(procstat))
except:
pass
def _acquire(self):
"""
TODO: refactor and redo ;)
"""
out = StringIO()
out.write("Current date: %s\n" % time.strftime("%Y-%m-%d %H:%M"))
# Little silly communicator/
if 'sources' in self._report_items:
self._acquire_sources(out)
if 'system' in self._report_items:
self._acquire_system(out)
if 'externals' in self._report_items:
self._acquire_externals(out)
if 'runtime' in self._report_items:
self._acquire_runtime(out)
if 'process' in self._report_items:
self._acquire_process(out)
self._info = out.getvalue()
def __repr__(self):
if self._info is None:
self._acquire()
return self._info
__str__ = __repr__
@borrowkwargs(WTF, '__init__')
def wtf(filename=None, **kwargs):
"""Report summary about PyMVPA and the system
Parameters
----------
filename : None or str
If provided, information will be stored in a file, not printed
to the screen
**kwargs
Passed to initialize `WTF` instance
"""
info = WTF(**kwargs)
if filename is not None:
_ = open(filename, 'w').write(str(info))
else:
return info
if __name__ == '__main__':
print wtf()
|