2016-07-18 23:05:35 +05:30
|
|
|
#!/usr/bin/env python2.7
|
2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
2014-01-11 18:16:30 +05:30
|
|
|
|
|
|
|
# Makes postprocessing routines acessible from everywhere.
|
2014-04-29 20:13:04 +05:30
|
|
|
import os,sys
|
2016-07-14 18:39:25 +05:30
|
|
|
import damask
|
2014-01-11 18:16:30 +05:30
|
|
|
|
2016-07-14 18:39:25 +05:30
|
|
|
damaskEnv = damask.Environment()
|
2014-01-24 19:17:46 +05:30
|
|
|
baseDir = damaskEnv.relPath('processing/')
|
2016-07-14 18:39:25 +05:30
|
|
|
binDir = damaskEnv.options['DAMASK_BIN']
|
2014-02-28 13:17:11 +05:30
|
|
|
|
|
|
|
if not os.path.isdir(binDir):
|
|
|
|
os.mkdir(binDir)
|
2014-01-11 18:16:30 +05:30
|
|
|
|
|
|
|
#define ToDo list
|
2014-04-11 00:55:23 +05:30
|
|
|
processing_subDirs = ['pre','post','misc',]
|
2016-04-25 00:06:23 +05:30
|
|
|
processing_extensions = ['.py','.sh',]
|
2014-01-11 18:16:30 +05:30
|
|
|
|
2014-04-11 00:55:23 +05:30
|
|
|
for subDir in processing_subDirs:
|
|
|
|
theDir = os.path.abspath(os.path.join(baseDir,subDir))
|
2014-01-11 18:16:30 +05:30
|
|
|
|
2014-04-11 00:55:23 +05:30
|
|
|
for theFile in os.listdir(theDir):
|
2016-04-25 00:38:05 +05:30
|
|
|
if os.path.splitext(theFile)[1] in processing_extensions: # only consider files with proper extensions
|
2014-01-11 18:16:30 +05:30
|
|
|
|
2014-04-11 00:55:23 +05:30
|
|
|
src = os.path.abspath(os.path.join(theDir,theFile))
|
|
|
|
sym_link = os.path.abspath(os.path.join(binDir,os.path.splitext(theFile)[0]))
|
|
|
|
|
|
|
|
if os.path.lexists(sym_link):
|
|
|
|
os.remove(sym_link)
|
2014-04-29 20:13:04 +05:30
|
|
|
sys.stdout.write(sym_link)
|
2014-04-11 00:55:23 +05:30
|
|
|
else:
|
2016-07-18 22:49:51 +05:30
|
|
|
sys.stdout.write(damask.util.emph(sym_link))
|
2014-01-11 18:16:30 +05:30
|
|
|
|
2014-04-11 00:55:23 +05:30
|
|
|
os.symlink(src,sym_link)
|
2014-04-29 20:13:04 +05:30
|
|
|
sys.stdout.write(' -> '+src+'\n')
|