Chunked worldbuild
Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
parent
3b50f946a5
commit
82e33add29
3 changed files with 253 additions and 2 deletions
102
scripts/build-chunk.py
Executable file
102
scripts/build-chunk.py
Executable file
|
@ -0,0 +1,102 @@
|
|||
#! /usr/bin/python3
|
||||
# Copyright (C) 2018-2019 Merspieler, merspieler _at_ airmail.cc
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU 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
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
import os
|
||||
import sys
|
||||
import socket
|
||||
import re
|
||||
|
||||
host = socket.gethostname()
|
||||
port = 12345
|
||||
prefix = ""
|
||||
|
||||
argc = len(sys.argv)
|
||||
i = 1
|
||||
while i < argc:
|
||||
if sys.argv[i] == "--port":
|
||||
i += 1
|
||||
port = sys.argv[i]
|
||||
elif sys.argv[i] == "--host":
|
||||
i += 1
|
||||
host = sys.argv[i]
|
||||
elif sys.argv[i] == "-p" or sys.argv[i] == "--prefix":
|
||||
i += 1
|
||||
prefix = sys.argv[i]
|
||||
elif sys.argv[i] == "-h" or sys.argv[i] == "--help":
|
||||
print("usage: build_chunk.py [OPTIONS]")
|
||||
print("Runs a single chunk build. Mainly handles status logging")
|
||||
print("")
|
||||
print(" -p, --prefix Database prefix to use")
|
||||
print(" --host Logger host")
|
||||
print(" --port Logger port")
|
||||
print(" -h, --help Shows this help and exit")
|
||||
|
||||
def send_status(name, status):
|
||||
try:
|
||||
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
sock.connect((host, port))
|
||||
sock.send(name + " " + status)
|
||||
sock.close()
|
||||
except IOError:
|
||||
print("Unable to send status. Aborting...")
|
||||
sys.exit(1)
|
||||
|
||||
send_status(name, "started")
|
||||
|
||||
os.system("mkdir -p projects/worldbuild-" + name)
|
||||
|
||||
os.system("cp projects/worldbuild/params.ini projects/worldbuild-" + name + "/")
|
||||
|
||||
os.system("sed -i 's/DB_NAME.*/DB_NAME = \"" + prefix + name + "\"/' projects/worldbuild-" + name + "/params.ini")
|
||||
|
||||
if name == "n-pole":
|
||||
bounds = "bounds=*-180_80_180_90"
|
||||
elif name == "s-pole":
|
||||
bounds = "bounds=*-180_-90_180_-80"
|
||||
else:
|
||||
match = re.match(r"([ew])(\d{3})([ns])(\d{2})", name)
|
||||
if match == None:
|
||||
print("ERROR: Invalid tile name")
|
||||
sys.exit(1)
|
||||
else:
|
||||
ew = match.group(1)
|
||||
ew_val = int(match.group(2))
|
||||
ns = match.group(3)
|
||||
ns_val = int(match.group(4))
|
||||
|
||||
if ew == "w":
|
||||
ew_val *= -1
|
||||
if ns == "s":
|
||||
ns_val *= -1
|
||||
|
||||
if ew_val < 0:
|
||||
bounds = "bounds=*"
|
||||
else:
|
||||
bounds = "bounds="
|
||||
|
||||
bounds += str(ew_val) + "_" + str(ns_val) + "_" + str(ew_val + 10) + "_" + str(ns_val + 10)
|
||||
|
||||
os.system("echo '" + bounds + "' > projects/worldbuild-" + name + "/settings")
|
||||
|
||||
os.system("./build " + name)
|
||||
|
||||
if os.path.isfile("projects/worldbuild-" + name + "/osm2city-exceptions.log"):
|
||||
os.system("mv projects/worldbuild-" + name + "/osm2city-exceptions.log projects/worldbuild/output/error/" + name + ".exceptions.log")
|
||||
|
||||
os.system("rm -rf projects/worldbuild-" + name)
|
||||
|
||||
send_status(name, "done")
|
149
scripts/wb-progress-logger.py
Executable file
149
scripts/wb-progress-logger.py
Executable file
|
@ -0,0 +1,149 @@
|
|||
#! /usr/bin/python3
|
||||
# Copyright (C) 2018-2019 Merspieler, merspieler _at_ airmail.cc
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU 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
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
import socket
|
||||
import sys
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
|
||||
host = socket.gethostname()
|
||||
port = 12345
|
||||
verbose = False
|
||||
sfile = "projects/worldbuild/status"
|
||||
|
||||
argc = len(sys.argv)
|
||||
i = 1
|
||||
while i < argc:
|
||||
if sys.argv[i] == "--port":
|
||||
i += 1
|
||||
port = int(sys.argv[i])
|
||||
elif sys.argv[i] == "--host":
|
||||
i += 1
|
||||
host = sys.argv[i]
|
||||
elif sys.argv[i] == "-v":
|
||||
verbose = True
|
||||
elif sys.argv[i] == "-f" or sys.argv[i] == "--file":
|
||||
i += 1
|
||||
sfile = sys.argv[i]
|
||||
elif sys.argv[i] == "-h" or sys.argv[i] == "--help":
|
||||
print("usage: wb-progress-logger.py [OPTIONS]")
|
||||
print("Logs progress of the worldbuild when run")
|
||||
print("with database strategies 'chunk' and 'mono'")
|
||||
print("")
|
||||
print("OPTIONS")
|
||||
# print(" -f, --file Status file to use")
|
||||
print(" -v, --verbose Verbose printouts")
|
||||
print(" , --host hostname or interface to bind to")
|
||||
print(" , --port Port to bind to")
|
||||
print(" -h, --help Shows this help and exit")
|
||||
else:
|
||||
print("Unknown option " + sys.argv[i])
|
||||
sys.exit(1)
|
||||
i += 1
|
||||
|
||||
def norm(num, length):
|
||||
num = str(num)
|
||||
while len(num) < length:
|
||||
num = "0" + num
|
||||
return num
|
||||
|
||||
if os.path.isfile(sfile):
|
||||
try:
|
||||
with open(sfile) as json_data:
|
||||
state = json.load(json_data)
|
||||
except ValueError:
|
||||
print("ERROR: Invalid status file")
|
||||
sys.exit(1)
|
||||
else:
|
||||
state = {}
|
||||
|
||||
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
sock.bind((host, port))
|
||||
|
||||
sock.listen(5)
|
||||
print("Up and running...")
|
||||
try:
|
||||
while True:
|
||||
c, addr = sock.accept()
|
||||
msg = c.recv(128)
|
||||
c.close()
|
||||
name, status = msg.decode().split()
|
||||
if verbose:
|
||||
print(name + " set status to " + status)
|
||||
|
||||
if status == "started" or status == "done":
|
||||
if name == "n-pole" or name == "s-pole":
|
||||
state[name] = status
|
||||
else:
|
||||
match = re.match(r"([ew])(\d{3})([ns])(\d{2})", name)
|
||||
if match == None:
|
||||
print("WARNING: Recived status " + status + " from invalid tile '" + name + "'")
|
||||
else:
|
||||
ew = match.group(1)
|
||||
ew_val = int(match.group(2))
|
||||
ns = match.group(3)
|
||||
ns_val = int(match.group(4))
|
||||
|
||||
ew_val_major = int(ew_val / 10) * 10
|
||||
if ew == "w":
|
||||
if ew_val_major != ew_val:
|
||||
ew_val_major += 10
|
||||
|
||||
ns_val_major = int(ns_val / 10) * 10
|
||||
if ns == "s":
|
||||
if ns_val_major != ns_val:
|
||||
ns_val_major += 10
|
||||
|
||||
name_major = ew + norm(ew_val_major, 3) + ns + norm(ns_val_major, 2)
|
||||
if not name_major in state:
|
||||
state[name_major] = {}
|
||||
if not name in state[name_major]:
|
||||
state[name_major][name] = {}
|
||||
state[name_major][name]["status"] = status
|
||||
if not "status" in state[name_major]:
|
||||
state[name_major]["status"] = "progress"
|
||||
if status == "started":
|
||||
state[name_major]["started"] = 1
|
||||
state[name_major]["done"] = 0
|
||||
else:
|
||||
state[name_major]["started"] = 0
|
||||
state[name_major]["done"] = 1
|
||||
else:
|
||||
state[name_major][status] += 1
|
||||
if status == "done":
|
||||
state[name_major]["started"] -= 1
|
||||
if state[name_major]["done"] == 100:
|
||||
state[name_major]["status"] = "done"
|
||||
|
||||
try:
|
||||
with open(sfile, 'w') as f:
|
||||
json.dump(state, f, indent=4)
|
||||
except IOError:
|
||||
print("WARNING: Failed to write to file")
|
||||
else:
|
||||
print("WARNING: Invalid status '" + status + "' recived from " + name)
|
||||
|
||||
except KeyboardInterrupt:
|
||||
try:
|
||||
with open(sfile, 'w') as f:
|
||||
json.dump(state, f, indent=4)
|
||||
except IOError:
|
||||
print("WARNING: Failed to write to file")
|
||||
sock.close()
|
||||
print("Exiting...")
|
||||
sys.exit(0)
|
|
@ -132,7 +132,6 @@ while i < argc:
|
|||
print(" - demand: Uses database 'worldbuild' and imports tiles on demand")
|
||||
print(" clears db before next tile. Default behaviour")
|
||||
print(" - chunk: Expects one database per chunk")
|
||||
print(" NOT YET IMPLEMENTED")
|
||||
print(" - mono: Expexcting database 'worldbuild' containing world wide data")
|
||||
print(" NOT YET IMPLEMENTED")
|
||||
print(" -P, --database-prefix When db startegy is chunk, prefix tile names with <prefix>")
|
||||
|
@ -337,7 +336,8 @@ elif db_strategy == "chunk":
|
|||
jj += 1
|
||||
ii += 1
|
||||
|
||||
os.system("echo '" + tile_list + "' | parallel --eta -j " + str(threads) + " ./scripts/build_chunck.py {} " + str(db_prefix))
|
||||
db_prefix = "-p " + db_prefix
|
||||
os.system("echo '" + tile_list + "' | parallel --eta -j " + str(threads) + " ./scripts/build-chunck.py {} " + str(db_prefix))
|
||||
elif db_startegy == "mono":
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue