DAMASK_EICMD/lib/damask/environment.py

62 lines
2.1 KiB
Python
Raw Normal View History

# $Id$
import os,sys,string,re,subprocess,shlex
2011-12-14 01:32:26 +05:30
class Environment():
__slots__ = [ \
'rootRelation',
'pathInfo',
2011-12-14 01:32:26 +05:30
]
def __init__(self,rootRelation = '.'):
2014-01-17 02:59:39 +05:30
self.rootRelation = rootRelation
self.options = {}
self.get_options()
2011-12-14 01:32:26 +05:30
def relPath(self,relative = '.'):
return os.path.join(self.rootDir(),relative)
def rootDir(self):
2011-12-14 01:32:26 +05:30
damask_root = os.getenv('DAMASK_ROOT')
if damask_root == '' or damask_root == None: # env not set
if sys.argv[0] == '': # no caller path
cwd = os.getcwd()
else:
2014-01-17 02:59:39 +05:30
cwd = sys.argv[0] if os.path.isdir(sys.argv[0]) else os.path.dirname(sys.argv[0])
damask_root = os.path.normpath(os.path.join(os.path.realpath(cwd),self.rootRelation))
2011-12-14 01:32:26 +05:30
return damask_root
def binDir(self):
2011-12-14 01:32:26 +05:30
damask_bin = os.getenv('DAMASK_BIN')
2014-01-17 02:59:39 +05:30
if damask_bin == '' or damask_bin == None: damask_bin = self.relPath('bin/')
2011-12-14 01:32:26 +05:30
return damask_bin
def get_options(self):
2014-01-17 02:59:39 +05:30
with open(self.relPath('installation/options')) as file:
for line in file:
l = line.strip()
if not (l.startswith('#') or l == ''):
items = l.split('=') + ['','']
if items[1] != '': # nothing specified
self.options[items[0].upper()] = items[1]
2014-01-17 02:59:39 +05:30
def isAvailable(self,software,Nneeded =-1):
licensesNeeded = {'abaqus' :5,
'standard':5,
'explicit':5}
2014-01-17 02:59:39 +05:30
if Nneeded == -1: Nneeded = licensesNeeded[software]
cmd = """ ssh mulicense2 "/Stat_Flexlm | grep 'Users of %s: ' | cut -d' ' -f7,13" """%software
process = subprocess.Popen(shlex.split(cmd),stdout = subprocess.PIPE,stderr = subprocess.PIPE)
licenses = map(int, process.stdout.readline().split())
try:
2014-01-17 02:59:39 +05:30
if licenses[0]-licenses[1] >= Nneeded:
return 0
else:
2014-01-17 02:59:39 +05:30
print(licenses[1] + Nneeded - licenses[0], 'missing licenses for %s'%software)
return licenses[1] + Nneeded - licenses[0]
except IndexError:
print('Could not retrieve license information for %s'%software)
return 127