|
|
@ -24,7 +24,7 @@
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
import time, sys, os, shutil, subprocess, distutils.dir_util, multiprocessing
|
|
|
|
import time, sys, os, shutil, subprocess, distutils.dir_util
|
|
|
|
sys.path.append("../../configuration")
|
|
|
|
sys.path.append("../../configuration")
|
|
|
|
|
|
|
|
|
|
|
|
if os.path.isfile("log.log"):
|
|
|
|
if os.path.isfile("log.log"):
|
|
|
@ -226,20 +226,15 @@ else:
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
printLog(log, "SKIP " + lr1)
|
|
|
|
printLog(log, "SKIP " + lr1)
|
|
|
|
while len(zonesToBuild) > 0:
|
|
|
|
while len(zonesToBuild) > 0:
|
|
|
|
procs = []
|
|
|
|
processCommand = [ ExecTimeout, str(RbankBuildTesselTimeout), BuildRbank, "-c", "-P", "-g" ]
|
|
|
|
for i in range(0, multiprocessing.cpu_count()):
|
|
|
|
processCommand.extend(zonesToBuild[:min(len(zonesToBuild), 64)])
|
|
|
|
processCommand = [ ExecTimeout, str(RbankBuildTesselTimeout), BuildRbank, "-c", "-P", "-g" ]
|
|
|
|
if len(zonesToBuild) > 64:
|
|
|
|
processCommand.extend(zonesToBuild[:min(len(zonesToBuild), 64)])
|
|
|
|
zonesToBuild = zonesToBuild[64:]
|
|
|
|
if len(zonesToBuild) > 64:
|
|
|
|
else:
|
|
|
|
zonesToBuild = zonesToBuild[64:]
|
|
|
|
zonesToBuild = []
|
|
|
|
else:
|
|
|
|
print processCommand
|
|
|
|
zonesToBuild = []
|
|
|
|
callParallelProcess(processCommand)
|
|
|
|
print processCommand
|
|
|
|
flushParallelProcesses()
|
|
|
|
print len(processCommand)
|
|
|
|
|
|
|
|
proc = subprocess.Popen(processCommand)
|
|
|
|
|
|
|
|
procs.append(proc)
|
|
|
|
|
|
|
|
for proc in procs:
|
|
|
|
|
|
|
|
proc.wait()
|
|
|
|
|
|
|
|
printLog(log, "")
|
|
|
|
printLog(log, "")
|
|
|
|
|
|
|
|
|
|
|
|
printLog(log, ">>> Detect modifications to rebuild lr <<<")
|
|
|
|
printLog(log, ">>> Detect modifications to rebuild lr <<<")
|
|
|
|