2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00
troggle/databaseReset.py

531 lines
20 KiB
Python
Raw Normal View History

2020-06-06 22:51:55 +01:00
import sys
2011-07-11 02:10:22 +01:00
import os
import time
import timeit
2020-05-24 13:35:47 +01:00
import json
2011-07-11 02:10:22 +01:00
import settings
os.environ['PYTHONPATH'] = settings.PYTHON_PATH
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings')
2020-05-24 13:35:47 +01:00
2011-07-11 02:10:22 +01:00
from django.core import management
from django.db import connection, close_old_connections, connections
2011-07-11 02:10:22 +01:00
from django.contrib.auth.models import User
from django.http import HttpResponse
from django.core.urlresolvers import reverse
2020-05-24 13:35:47 +01:00
print(" 1 settings on loading databaseReset.py")
from troggle.core.models_caves import Cave, Entrance
2020-06-06 22:51:55 +01:00
import troggle.parsers.caves
#import troggle.settings
import troggle.flatpages.models
2020-05-13 23:11:47 +01:00
import troggle.logbooksdump
2020-06-06 22:51:55 +01:00
import troggle.parsers.people
import troggle.parsers.surveys
import troggle.parsers.logbooks
import troggle.parsers.QMs
import troggle.core.models
import troggle.core.models_survex
import django
2011-07-11 02:10:22 +01:00
2020-05-24 13:35:47 +01:00
# NOTE databaseReset.py is *imported* by views_other.py as it is used in the control panel
# presented there.
2020-05-27 01:04:37 +01:00
if os.geteuid() == 0:
# This protects the server from having the wrong file permissions written on logs and caches
print("This script should be run as expo not root - quitting")
exit()
dbengine = ""
dbname = ""
dbdefault =""
expouser=settings.EXPOUSER
expouserpass=settings.EXPOUSERPASS
2015-07-01 01:26:04 +01:00
expouseremail=settings.EXPOUSER_EMAIL
2011-07-11 02:10:22 +01:00
2020-06-03 21:57:05 +01:00
2020-04-27 23:51:41 +01:00
def reinit_db():
"""Rebuild database from scratch. Deletes the file first if sqlite is used,
otherwise it drops the database and creates it.
Note - initial loading of troggle.sqlite will already have populated the models
in memory (django python models, not the database), so there is already a full load
of stuff known. Deleting the db file does not clear memory.
2020-04-27 23:51:41 +01:00
"""
currentdbname = settings.DATABASES['default']['NAME']
if currentdbname == ':memory:':
# closing connections should wipe the in-memory database
django.db.close_old_connections()
for conn in django.db.connections.all():
print(" ! Closing another connection to db...")
conn.close()
elif django.db.connections.databases['default']['ENGINE'] == 'django.db.backends.sqlite3':
2011-07-11 02:10:22 +01:00
try:
os.remove(currentdbname)
2011-07-11 02:10:22 +01:00
except OSError:
2020-06-07 16:16:35 +01:00
print(" ! OSError on removing: " + currentdbname + " (Is the file open in another app?\n")
raise
2019-02-24 14:29:14 +00:00
else:
cursor = django.db.connection.cursor()
cursor.execute("DROP DATABASE %s" % currentdbname)
cursor.execute("CREATE DATABASE %s" % currentdbname)
cursor.execute("ALTER DATABASE %s CHARACTER SET=utf8" % currentdbname)
cursor.execute("USE %s" % currentdbname)
2011-07-11 02:10:22 +01:00
#Sync user - needed after reload
print(" - Migrating: " + settings.DATABASES['default']['NAME'])
print(django.db.connections.databases['default']['NAME'])
management.call_command('migrate', interactive=False)
print(" - done migration on: " + settings.DATABASES['default']['NAME'])
2020-06-07 16:16:35 +01:00
try:
print(" - Setting up admin user on: " + settings.DATABASES['default']['NAME'])
print(django.db.connections.databases['default']['NAME'])
print(" - user: {} ({:.5}...) <{}> ".format(expouser, expouserpass, expouseremail))
2020-06-07 16:16:35 +01:00
user = User.objects.create_user(expouser, expouseremail, expouserpass)
user.is_staff = True
user.is_superuser = True
user.save()
except:
print(" ! INTEGRITY ERROR user on: " + settings.DATABASES['default']['NAME'])
print(django.db.connections.databases['default']['NAME'])
2020-06-07 16:16:35 +01:00
print(" ! You probably have not got a clean db when you thought you had.\n")
print(" ! Also you are probably NOT running an in-memory db now.\n")
memdumpsql(fn='integrityfail.sql')
django.db.connections.databases['default']['NAME'] = ':memory:'
#raise
def memdumpsql(fn):
djconn = django.db.connection
from dump import _iterdump
with open(fn, 'w') as f:
for line in _iterdump(djconn):
f.write('%s\n' % line.encode("utf8"))
return True
def store_dbsettings():
global dbengine
global dbname
global dbdefault
dbengine = settings.DATABASES['default']['ENGINE']
dbname = settings.DATABASES['default']['NAME']
dbdefault = settings.DATABASES['default']
def restore_dbsettings():
settings.DATABASES['default'] = dbdefault
settings.DATABASES['default']['ENGINE'] = dbengine
settings.DATABASES['default']['NAME'] = dbname
django.db.connections.databases['default'] = dbdefault
django.db.connections.databases['default']['ENGINE'] = dbengine
django.db.connections.databases['default']['NAME'] = dbname
def set_in_memory_dbsettings():
django.db.close_old_connections() # needed if MySQL running?
settings.DATABASES['default'] = {'ENGINE': 'django.db.backends.sqlite3',
'AUTOCOMMIT': True,
'ATOMIC_REQUESTS': False,
'NAME': ':memory:',
'CONN_MAX_AGE': 0,
'TIME_ZONE': 'UTC',
'OPTIONS': {},
'HOST': '',
'USER': '',
'TEST': {'COLLATION': None, 'CHARSET': None, 'NAME': None, 'MIRROR': None},
'PASSWORD': '',
'PORT': ''}
settings.DATABASES['default']['ENGINE'] = 'django.db.backends.sqlite3'
settings.DATABASES['default']['NAME'] = ':memory:'
django.db.connections.databases['default']['ENGINE'] = 'django.db.backends.sqlite3'
django.db.connections.databases['default']['NAME'] = ':memory:'
2011-07-11 02:10:22 +01:00
def import_caves():
print("Importing Caves to ",end="")
print(django.db.connections.databases['default']['NAME'])
2020-05-24 13:35:47 +01:00
troggle.parsers.caves.readcaves()
2011-07-11 02:10:22 +01:00
def import_people():
print("Importing People (folk.csv) to ",end="")
print(django.db.connections.databases['default']['NAME'])
2020-05-24 13:35:47 +01:00
troggle.parsers.people.LoadPersonsExpos()
2011-07-11 02:10:22 +01:00
2020-06-06 22:51:55 +01:00
def import_surveyscans():
print("Importing Survey Scans")
troggle.parsers.surveys.LoadListScans()
2011-07-11 02:10:22 +01:00
def import_logbooks():
2020-04-27 23:51:41 +01:00
print("Importing Logbooks")
2020-05-24 13:35:47 +01:00
troggle.parsers.logbooks.LoadLogbooks()
2011-07-11 02:10:22 +01:00
2020-04-27 23:51:41 +01:00
def import_QMs():
print("Importing QMs (old caves)")
2020-06-06 22:51:55 +01:00
troggle.parsers.QMs.Load_QMs()
2020-06-03 21:57:05 +01:00
2020-04-28 01:18:57 +01:00
def import_survexblks():
2020-06-06 22:51:55 +01:00
# when this import is moved to the top with the rest it all crashes horribly
import troggle.parsers.survex
2020-04-27 23:51:41 +01:00
print("Importing Survex Blocks")
2020-05-24 13:35:47 +01:00
troggle.parsers.survex.LoadAllSurvexBlocks()
2020-04-27 23:51:41 +01:00
def import_survexpos():
2020-04-28 01:18:57 +01:00
print("Importing Survex x/y/z Positions")
2020-05-24 13:35:47 +01:00
troggle.parsers.survex.LoadPos()
2011-07-11 02:10:22 +01:00
2020-04-28 01:18:57 +01:00
def import_surveyimgs():
2020-04-27 23:51:41 +01:00
"""This appears to store data in unused objects. The code is kept
for future re-working to manage progress against notes, plans and elevs.
"""
2020-05-24 13:35:47 +01:00
#import troggle.parsers.surveys
print("NOT Importing survey images")
2020-05-24 13:35:47 +01:00
#troggle.parsers.surveys.parseSurveys(logfile=settings.LOGFILE)
2011-07-11 02:10:22 +01:00
def import_tunnelfiles():
2020-04-27 23:51:41 +01:00
print("Importing Tunnel files")
2020-05-24 13:35:47 +01:00
troggle.parsers.surveys.LoadTunnelFiles()
2011-07-11 02:10:22 +01:00
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2020-05-14 17:21:34 +01:00
# These functions moved to a different file - not used currently.
2020-05-13 23:11:47 +01:00
#import logbooksdump
#def import_auto_logbooks():
#def dumplogbooks():
2020-05-28 02:09:36 +01:00
#def writeCaves():
2020-06-01 00:42:48 +01:00
# Writes out all cave and entrance HTML files to
# folder specified in settings.CAVEDESCRIPTIONS
2020-05-28 02:09:36 +01:00
# for cave in Cave.objects.all():
# cave.writeDataFile()
# for entrance in Entrance.objects.all():
# entrance.writeDataFile()
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2020-04-16 20:36:42 +01:00
class JobQueue():
"""A list of import operations to run. Always reports profile times
2020-04-16 20:36:42 +01:00
in the same order.
"""
2020-06-06 22:51:55 +01:00
def __init__(self,run):
self.runlabel = run
self.queue = [] # tuples of (jobname, jobfunction)
self.results = {}
self.results_order=[
2020-04-27 23:51:41 +01:00
"date","runlabel","reinit", "caves", "people",
2020-06-01 00:42:48 +01:00
"logbooks", "QMs", "scans", "survexblks", "survexpos",
"tunnel", "surveyimgs", "test" ]
for k in self.results_order:
self.results[k]=[]
2020-04-16 20:36:42 +01:00
self.tfile = "import_profile.json"
self.htmlfile = "profile.html" # for HTML results table. Not yet done.
2020-04-16 20:36:42 +01:00
#Adding elements to queue - enqueue
def enq(self,label,func):
self.queue.append((label,func))
return True
2020-04-16 20:36:42 +01:00
#Removing the last element from the queue - dequeue
# def deq(self):
# if len(self.queue)>0:
# return self.queue.pop()
# return ("Queue Empty!")
def loadprofiles(self):
"""Load timings for previous runs from file
"""
2020-04-16 20:36:42 +01:00
if os.path.isfile(self.tfile):
try:
2020-04-16 20:36:42 +01:00
f = open(self.tfile, "r")
data = json.load(f)
for j in data:
self.results[j] = data[j]
except:
2020-05-24 13:35:47 +01:00
print("FAILURE parsing JSON file %s" % (self.tfile))
# Python bug: https://github.com/ShinNoNoir/twitterwebsearch/issues/12
f.close()
2020-04-28 18:26:08 +01:00
for j in self.results_order:
self.results[j].append(None) # append a placeholder
return True
def saveprofiles(self):
with open(self.tfile, 'w') as f:
json.dump(self.results, f)
return True
def runqonce(self):
2020-05-14 17:21:34 +01:00
"""Run all the jobs in the queue provided - once
"""
2020-04-28 18:26:08 +01:00
print("** Running job ", self.runlabel,end=" to ")
print(django.db.connections.databases['default']['NAME'])
2020-04-16 20:36:42 +01:00
jobstart = time.time()
2020-04-28 18:26:08 +01:00
self.results["date"].pop()
2020-04-16 20:36:42 +01:00
self.results["date"].append(jobstart)
2020-04-28 18:26:08 +01:00
self.results["runlabel"].pop()
2020-04-16 20:36:42 +01:00
self.results["runlabel"].append(self.runlabel)
for i in self.queue:
2020-04-27 23:51:41 +01:00
start = time.time()
i[1]() # looks ugly but invokes function passed in the second item in the tuple
duration = time.time()-start
2020-05-24 13:35:47 +01:00
print("\n*- Ended \"", i[0], "\" %.1f seconds" % duration)
2020-04-28 18:26:08 +01:00
self.results[i[0]].pop() # the null item
2020-04-27 23:51:41 +01:00
self.results[i[0]].append(duration)
2020-04-16 20:36:42 +01:00
jobend = time.time()
jobduration = jobend-jobstart
2020-05-24 13:35:47 +01:00
print("** Ended job %s - %.1f seconds total." % (self.runlabel,jobduration))
return True
2020-06-06 22:51:55 +01:00
def append_placeholders(self):
for j in self.results_order:
self.results[j].append(None) # append a placeholder
def run_now_django_tests(self,n):
store_dbsettings()
2020-06-06 22:51:55 +01:00
# this leaves the db set to :memory: whatever it was initially
management.call_command('test', verbosity=n)
django.db.close_old_connections()
restore_dbsettings()
# and whatever I do, it stays that way !
2020-06-06 22:51:55 +01:00
def skip_memory_phase(self):
if not self.runlabel:
return True
else:
if self.runlabel == "" or self.runlabel[0:2] == "F-":
return True
return False
def run(self):
2020-05-14 17:27:51 +01:00
"""First runs all the jobs in the queue against a scratch in-memory db
then re-runs the import against the db specified in settings.py
Default behaviour is to skip the in-memory phase.
When MySQL is the db the in-memory phase crashes as MySQL does not properly
relinquish some kind of db connection (not fixed yet)
"""
self.loadprofiles()
store_dbsettings()
print("-- start ", settings.DATABASES['default']['ENGINE'], settings.DATABASES['default']['NAME'])
print(django.db.connections.databases['default']['NAME'])
2020-06-06 22:51:55 +01:00
2020-05-14 17:21:34 +01:00
if dbname ==":memory:":
# just run, and save the sql file
self.runqonce()
memdumpsql('memdump.sql') # saved contents of scratch db, could be imported later..
self.saveprofiles()
2020-06-06 22:51:55 +01:00
elif self.skip_memory_phase():
2020-05-13 23:11:47 +01:00
self.runqonce()
self.saveprofiles()
else:
# run all the imports through :memory: first
set_in_memory_dbsettings()
2020-06-06 22:51:55 +01:00
print("-- phase 1 ", settings.DATABASES['default']['ENGINE'], settings.DATABASES['default']['NAME'])
2020-05-14 17:21:34 +01:00
# the jobqueue may not start from scratch so we need to initialise the db properly first
2020-05-13 19:57:07 +01:00
# because we are using an empty :memory: database
2020-05-14 17:21:34 +01:00
# But initiating twice crashes it; so be sure to do it once only.
# Damn. migrate() is still calling MySQL somehow **conn_params not sqlite3. So crashes on expo server.
if ("reinit",reinit_db) not in self.queue:
reinit_db()
if ("caves",import_caves) not in self.queue:
2020-05-14 17:21:34 +01:00
import_caves() # sometime extract the initialising code from this and put in reinit...
if ("people",import_people) not in self.queue:
2020-05-14 17:21:34 +01:00
import_people() # sometime extract the initialising code from this and put in reinit...
django.db.close_old_connections() # maybe not needed here
self.runqonce()
memdumpsql('memdump2.sql')
self.showprofile()
# restore the original db and import again
# if we wanted to, we could re-import the SQL generated in the first pass to be
# blazing fast. But for the present just re-import the lot.
restore_dbsettings()
2020-06-06 22:51:55 +01:00
print("-- phase 2 ", settings.DATABASES['default']['ENGINE'], settings.DATABASES['default']['NAME'])
print(django.db.connections.databases['default']['NAME'])
2020-05-13 19:57:07 +01:00
django.db.close_old_connections() # maybe not needed here
for j in self.results_order:
self.results[j].pop() # throw away results from :memory: run
2020-06-06 22:51:55 +01:00
self.append_placeholders()
django.db.close_old_connections()
#django.setup() # should this be needed?
2020-06-06 22:51:55 +01:00
self.runqonce()
self.saveprofiles()
2020-04-16 20:36:42 +01:00
return True
def showprofile(self):
2020-05-14 17:21:34 +01:00
"""Prints out the time it took to run the jobqueue
"""
for k in self.results_order:
if k =="test":
2020-04-27 23:51:41 +01:00
break
2020-04-16 20:36:42 +01:00
elif k =="date":
2020-05-24 13:35:47 +01:00
print(" days ago ", end=' ')
2020-04-27 23:51:41 +01:00
else:
2020-05-24 13:35:47 +01:00
print('%10s (s)' % k, end=' ')
2020-04-27 23:51:41 +01:00
percen=0
r = self.results[k]
for i in range(len(r)):
if k == "runlabel":
if r[i]:
rp = r[i]
else:
rp = " - "
2020-05-24 13:35:47 +01:00
print('%8s' % rp, end=' ')
2020-04-27 23:51:41 +01:00
elif k =="date":
# Calculate dates as days before present
if r[i]:
if i == len(r)-1:
2020-05-24 13:35:47 +01:00
print(" this", end=' ')
2020-04-27 23:51:41 +01:00
else:
# prints one place to the left of where you expect
if r[len(r)-1]:
s = r[i]-r[len(r)-1]
elif r[len(r)-2]:
s = r[i]-r[len(r)-2]
else:
s = 0
days = (s)/(24*60*60)
2020-05-24 13:35:47 +01:00
print('%8.2f' % days, end=' ')
2020-04-27 23:51:41 +01:00
elif r[i]:
2020-05-24 13:35:47 +01:00
print('%8.1f' % r[i], end=' ')
2020-04-27 23:51:41 +01:00
if i == len(r)-1 and r[i-1]:
percen = 100* (r[i] - r[i-1])/r[i-1]
if abs(percen) >0.1:
2020-05-24 13:35:47 +01:00
print('%8.1f%%' % percen, end=' ')
else:
2020-05-24 13:35:47 +01:00
print(" - ", end=' ')
print("")
print("\n")
return True
2011-07-11 02:10:22 +01:00
def usage():
print("""Usage is 'python databaseReset.py <command> [runlabel]'
where command is:
2020-05-20 12:45:10 +01:00
test - testing... imports people and prints profile. Deletes nothing.
profile - print the profile from previous runs. Import nothing.
2020-04-27 23:51:41 +01:00
reset - normal usage: clear database and reread everything from files - time-consuming
caves - read in the caves (must run first after initialisation)
people - read in the people from folk.csv (must run after 'caves')
2020-04-27 23:51:41 +01:00
logbooks - read in the logbooks
QMs - read in the QM csv files (older caves only)
2020-06-01 00:42:48 +01:00
scans - the survey scans in all the wallets (must run before survex)
2020-04-28 18:26:08 +01:00
survex - read in the survex files - all the survex blocks but not the x/y/z positions
survexpos - just the x/y/z Pos out of the survex files (not needed)
2020-04-27 23:51:41 +01:00
tunnel - read in the Tunnel files - which scans the survey scans too
2020-05-20 12:45:10 +01:00
autologbooks - Not used. read in autologbooks (what are these?)
dumplogbooks - Not used. write out autologbooks (not working?)
surveyimgs - Not used. read in scans by-expo, must run after "people".
and [runlabel] is an optional string identifying this run of the script
in the stored profiling data 'import-profile.json'
2020-05-13 23:11:47 +01:00
if [runlabel] is absent or begins with "F-" then it will skip the :memory: pass
2020-04-27 23:51:41 +01:00
caves and logbooks must be run on an empty db before the others as they
set up db tables used by the others.
2020-06-01 00:42:48 +01:00
the commands are first run on an in-memory empty database before being run on
the actual persistent database. This is very fast and checks for import errors.
the initial in-memory phase is on an empty db, so always runs caves & people for this phase
""")
2011-07-11 02:10:22 +01:00
if __name__ == "__main__":
2020-04-14 20:46:45 +01:00
if os.geteuid() == 0:
print("Do not run as root or using sudo - file permissions for cache files and logs will break")
print("Aborting run.")
exit()
2020-04-27 23:51:41 +01:00
if len(sys.argv)>2:
runlabel = sys.argv[len(sys.argv)-1]
else:
runlabel=None
2020-06-03 21:57:05 +01:00
store_dbsettings()
set_in_memory_dbsettings()
print(" - django.setup - next")
try:
django.setup()
except:
print(" ! COMPLICATED FAILURE. Does not occur with a valid 'troggle.sqlite' database in place.")
raise
print(" - django.setup - done")
jq = JobQueue(runlabel)
2020-04-27 23:51:41 +01:00
if len(sys.argv)==1:
usage()
exit()
elif "test" in sys.argv:
2020-04-16 20:36:42 +01:00
jq.enq("caves",import_caves)
jq.enq("people",import_people)
#jq.run_now_django_tests(2)
elif "caves" in sys.argv:
jq.enq("caves",import_caves)
2020-04-14 20:46:45 +01:00
elif "logbooks" in sys.argv:
jq.enq("logbooks",import_logbooks)
elif "people" in sys.argv:
2020-04-27 23:51:41 +01:00
jq.enq("people",import_people)
2011-07-11 02:10:22 +01:00
elif "QMs" in sys.argv:
jq.enq("QMs",import_QMs)
2011-07-11 02:10:22 +01:00
elif "reset" in sys.argv:
2020-04-27 23:51:41 +01:00
jq.enq("reinit",reinit_db)
jq.enq("caves",import_caves)
jq.enq("people",import_people)
jq.enq("scans",import_surveyscans)
jq.enq("logbooks",import_logbooks)
jq.enq("QMs",import_QMs)
2020-04-28 01:18:57 +01:00
jq.enq("survexblks",import_survexblks)
jq.enq("survexpos",import_survexpos)
jq.enq("tunnel",import_tunnelfiles)
2020-04-14 20:46:45 +01:00
elif "scans" in sys.argv:
jq.enq("scans",import_surveyscans)
2011-07-11 02:10:22 +01:00
elif "survex" in sys.argv:
2020-04-28 01:18:57 +01:00
jq.enq("survexblks",import_survexblks)
elif "survexpos" in sys.argv:
2020-04-27 23:51:41 +01:00
jq.enq("survexpos",import_survexpos)
2020-04-14 20:46:45 +01:00
elif "tunnel" in sys.argv:
jq.enq("tunnel",import_tunnelfiles)
2020-05-20 12:45:10 +01:00
elif "surveyimgs" in sys.argv:
jq.enq("surveyimgs",import_surveyimgs) # imports into tables which are never read
2020-05-14 17:21:34 +01:00
elif "autologbooks" in sys.argv: # untested in 2020
2020-04-14 20:46:45 +01:00
import_auto_logbooks()
2020-05-14 17:21:34 +01:00
elif "dumplogbooks" in sys.argv: # untested in 2020
2020-04-14 20:46:45 +01:00
dumplogbooks()
2020-06-01 00:42:48 +01:00
# elif "writecaves" in sys.argv: # untested in 2020 - will overwrite input files!!
# writeCaves()
2020-05-20 12:18:12 +01:00
elif "profile" in sys.argv:
2020-05-24 13:35:47 +01:00
jq.loadprofiles()
2020-05-20 12:18:12 +01:00
jq.showprofile()
2020-05-24 13:35:47 +01:00
exit()
2020-05-20 12:45:10 +01:00
elif "help" in sys.argv:
usage()
exit()
2020-02-21 14:00:33 +00:00
else:
usage()
print("%s not recognised as a command." % sys.argv[1])
2020-04-27 23:51:41 +01:00
exit()
#jq.run_now_django_tests(1)
jq.run()
2020-04-16 20:36:42 +01:00
jq.showprofile()