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
|
from __future__ import generators
import config.base
import os
class Configure(config.base.Configure):
def __init__(self, framework):
config.base.Configure.__init__(self, framework)
self.headerPrefix = ''
self.substPrefix = ''
self.isprefix = False
self.dir = ''
return
def __str1__(self):
if self.isprefix:
return ' Prefix: ' + self.dir + '\n'
else:
return ' Prefix: <inplace installation>\n'
def setupHelp(self, help):
import nargs
help.addArgument('PETSc', '-with-clean=<bool>', nargs.ArgBool(None, 0, 'Delete prior build files including externalpackages'))
return
def setupDependencies(self, framework):
config.base.Configure.setupDependencies(self, framework)
self.petscdir = framework.require('PETSc.options.petscdir', self)
self.arch = framework.require('PETSc.options.arch', self)
return
def setInstallDir(self):
'''Set installDir to either prefix or if that is not set to PETSC_DIR/PETSC_ARCH'''
self.installSudo = ''
if self.framework.argDB['prefix']:
self.isprefix = True
self.dir = os.path.abspath(os.path.expanduser(self.framework.argDB['prefix']))
self.petscDir = self.dir
self.petscArch = ''
try:
os.makedirs(os.path.join(self.dir,'PETScTestDirectory'))
os.rmdir(os.path.join(self.dir,'PETScTestDirectory'))
except Exception as e:
self.logPrint('Error trying to test write permissions on directory '+str(e))
self.installSudo = 'sudo '
else:
self.dir = os.path.abspath(os.path.join(self.petscdir.dir, self.arch.arch))
self.petscDir = self.petscdir.dir
self.petscArch = self.arch.arch
self.addMakeMacro('PREFIXDIR',self.dir)
self.confDir = os.path.abspath(os.path.join(self.petscdir.dir, self.arch.arch))
def configureInstallDir(self):
'''Makes installDir subdirectories if it does not exist for both prefix install location and PETSc work install location'''
dir = os.path.abspath(os.path.join(self.petscdir.dir, self.arch.arch))
if not os.path.exists(dir):
os.makedirs(dir)
for i in ['include','lib','bin',os.path.join('lib','petsc','conf')]:
newdir = os.path.join(dir,i)
if not os.path.exists(newdir):
os.makedirs(newdir)
if os.path.isfile(self.framework.argDB.saveFilename):
os.remove(self.framework.argDB.saveFilename)
confdir = os.path.join(dir,'lib','petsc','conf')
self.framework.argDB.saveFilename = os.path.abspath(os.path.join(confdir, 'RDict.db'))
self.logPrint('Changed persistence directory to '+confdir)
return
def cleanConfDir(self):
'''Remove all the files from configuration directory for this PETSC_ARCH, from --with-clean option'''
import shutil
if self.framework.argDB['with-clean'] and os.path.isdir(self.confDir):
self.logPrintWarning('"with-clean" is specified. Removing all build files from '+ self.confDir)
shutil.rmtree(self.confDir)
return
def saveReconfigure(self):
'''Save the configure options in a script in PETSC_ARCH/lib/petsc/conf so the same configure may be easily re-run'''
self.reconfigure_file = os.path.join(self.dir,'lib','petsc','conf','reconfigure-'+self.arch.arch+'.py')
self.save_reconfigure_file = None
if self.framework.argDB['with-clean'] and os.path.exists(self.reconfigure_file):
self.save_reconfigure_file = '.save.reconfigure-'+self.arch.arch+'.py'
try:
if os.path.exists(self.save_reconfigure_file): os.unlink(self.save_reconfigure_file)
os.rename(self.reconfigure_file,self.save_reconfigure_file)
except Exception as e:
self.save_reconfigure_file = None
self.logPrint('error in saveReconfigure(): '+ str(e))
return
def restoreReconfigure(self):
'''If --with-clean was requested but restoring the reconfigure file was requested then restore it'''
if self.framework.argDB['with-clean'] and self.save_reconfigure_file:
try:
os.rename(self.save_reconfigure_file,self.reconfigure_file)
except Exception as e:
self.logPrint('error in restoreReconfigure(): '+ str(e))
return
def configure(self):
self.executeTest(self.setInstallDir)
self.executeTest(self.saveReconfigure)
self.executeTest(self.cleanConfDir)
self.executeTest(self.configureInstallDir)
self.executeTest(self.restoreReconfigure)
return
|