mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-03 09:21:48 +01:00
add 'del' and 'delfirst' options
This commit is contained in:
parent
0fee2bb165
commit
7124d978d3
@ -211,6 +211,20 @@ class JobQueue():
|
|||||||
self.results[j].append(None) # append a placeholder
|
self.results[j].append(None) # append a placeholder
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
def dellastprofile(self):
|
||||||
|
"""trim one set of data from the results
|
||||||
|
"""
|
||||||
|
for j in self.results_order:
|
||||||
|
self.results[j].pop() # delete last item
|
||||||
|
return True
|
||||||
|
|
||||||
|
def delfirstprofile(self):
|
||||||
|
"""trim one set of data from the results
|
||||||
|
"""
|
||||||
|
for j in self.results_order:
|
||||||
|
self.results[j].pop(0) # delete zeroth item
|
||||||
|
return True
|
||||||
|
|
||||||
def saveprofiles(self):
|
def saveprofiles(self):
|
||||||
"""Save timings for the set of imports just completed
|
"""Save timings for the set of imports just completed
|
||||||
"""
|
"""
|
||||||
@ -323,7 +337,9 @@ def usage():
|
|||||||
print("""Usage is 'python databaseReset.py <command> [runlabel]'
|
print("""Usage is 'python databaseReset.py <command> [runlabel]'
|
||||||
where command is:
|
where command is:
|
||||||
test - testing... imports people and prints profile. Deletes nothing.
|
test - testing... imports people and prints profile. Deletes nothing.
|
||||||
profile - print the profile from previous runs. Import nothing.
|
profile - print the profile from previous runs. Import nothing.
|
||||||
|
- del - deletes last entry
|
||||||
|
- delfirst - deletes first entry
|
||||||
|
|
||||||
reset - normal usage: clear database and reread everything from files - time-consuming
|
reset - normal usage: clear database and reread everything from files - time-consuming
|
||||||
|
|
||||||
@ -403,8 +419,21 @@ if __name__ == "__main__":
|
|||||||
# elif "writecaves" in sys.argv: # untested in 2020 - will overwrite input files!!
|
# elif "writecaves" in sys.argv: # untested in 2020 - will overwrite input files!!
|
||||||
# writeCaves()
|
# writeCaves()
|
||||||
elif "profile" in sys.argv:
|
elif "profile" in sys.argv:
|
||||||
jq.loadprofiles()
|
if runlabel == 'del' :
|
||||||
jq.showprofile()
|
jq.loadprofiles()
|
||||||
|
jq.dellastprofile()
|
||||||
|
jq.dellastprofile() # twice because loadprofiles adds a dummy
|
||||||
|
jq.showprofile()
|
||||||
|
jq.saveprofiles()
|
||||||
|
if runlabel == 'delfirst' :
|
||||||
|
jq.loadprofiles()
|
||||||
|
jq.dellastprofile() # remove the dummy
|
||||||
|
jq.delfirstprofile()
|
||||||
|
jq.showprofile()
|
||||||
|
jq.saveprofiles()
|
||||||
|
else:
|
||||||
|
jq.loadprofiles()
|
||||||
|
jq.showprofile()
|
||||||
exit()
|
exit()
|
||||||
elif "help" in sys.argv:
|
elif "help" in sys.argv:
|
||||||
usage()
|
usage()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user