mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-06 07:19:08 +00:00
89 lines
3 KiB
Python
89 lines
3 KiB
Python
#!/usr/bin/python
|
|
#
|
|
# \file 0_setup.py
|
|
# \brief Run all setup processes
|
|
# \date 2009-02-18 15:28GMT
|
|
# \author Jan Boon (Kaetemi)
|
|
# Python port of game data build pipeline.
|
|
# Run all setup processes
|
|
#
|
|
# NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
|
|
# Copyright (C) 2010 Winch Gate Property Limited
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
import time, sys, os, shutil, subprocess, distutils.dir_util, argparse
|
|
sys.path.append("../configuration")
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--includeprocess', '-ipc', nargs='+')
|
|
parser.add_argument('--excludeprocess', '-epc', nargs='+')
|
|
args = parser.parse_args()
|
|
|
|
if os.path.isfile("log.log"):
|
|
os.remove("log.log")
|
|
log = open("log.log", "w")
|
|
from scripts import *
|
|
from buildsite import *
|
|
from process import *
|
|
from tools import *
|
|
from directories import *
|
|
|
|
#printLog(log, "")
|
|
#printLog(log, "-------")
|
|
#printLog(log, "--- Setup project")
|
|
#printLog(log, "-------")
|
|
#printLog(log, time.strftime("%Y-%m-%d %H:%MGMT", time.gmtime(time.time())))
|
|
#printLog(log, "")
|
|
|
|
#printLog(log, "")
|
|
#printLog(log, "-------")
|
|
#printLog(log, "--- Setup client directories")
|
|
#printLog(log, "-------")
|
|
#printLog(log, time.strftime("%Y-%m-%d %H:%MGMT", time.gmtime(time.time())))
|
|
#printLog(log, "")
|
|
#for dir in ClientSetupDirectories:
|
|
# mkPath(log, InstallDirectory + "/" + dir)
|
|
#printLog(log, "")
|
|
|
|
printLog(log, "")
|
|
printLog(log, "-------")
|
|
printLog(log, "--- Run the setup processes")
|
|
printLog(log, "-------")
|
|
printLog(log, time.strftime("%Y-%m-%d %H:%MGMT", time.gmtime(time.time())))
|
|
printLog(log, "")
|
|
# For each process
|
|
for processName in ProcessToComplete:
|
|
if ((args.includeprocess == None or processName in args.includeprocess) and (args.excludeprocess == None or not processName in args.excludeprocess)):
|
|
printLog(log, "PROCESS " + processName)
|
|
os.chdir(processName)
|
|
try:
|
|
subprocess.call([ "python", "0_setup.py" ])
|
|
except Exception, e:
|
|
printLog(log, "<" + processName + "> " + str(e))
|
|
os.chdir("..")
|
|
try:
|
|
processLog = open(processName + "/log.log", "r")
|
|
processLogData = processLog.read()
|
|
processLog.close()
|
|
log.write(processLogData)
|
|
except Exception, e:
|
|
printLog(log, "<" + processName + "> " + str(e))
|
|
# subprocess.call("idle.bat")
|
|
else:
|
|
printLog(log, "IGNORE PROCESS " + processName)
|
|
printLog(log, "")
|
|
|
|
log.close()
|