2017-02-08 13:41:56 +01:00
|
|
|
import os
|
|
|
|
import Queue
|
|
|
|
import threading
|
|
|
|
import time
|
|
|
|
|
|
|
|
from debug import logger
|
|
|
|
from helper_sql import sqlQuery, sqlStoredProcedure
|
|
|
|
from helper_threading import StoppableThread
|
2017-02-09 11:53:33 +01:00
|
|
|
from knownnodes import saveKnownNodes
|
2017-02-08 13:41:56 +01:00
|
|
|
from inventory import Inventory
|
2017-02-22 09:05:05 +01:00
|
|
|
from queues import addressGeneratorQueue, objectProcessorQueue, UISignalQueue, workerQueue
|
2017-02-08 13:41:56 +01:00
|
|
|
import shared
|
|
|
|
import state
|
|
|
|
|
|
|
|
def doCleanShutdown():
|
|
|
|
state.shutdown = 1 #Used to tell proof of work worker threads and the objectProcessorThread to exit.
|
|
|
|
objectProcessorQueue.put(('checkShutdownVariable', 'no data'))
|
|
|
|
for thread in threading.enumerate():
|
|
|
|
if thread.isAlive() and isinstance(thread, StoppableThread):
|
|
|
|
thread.stopThread()
|
|
|
|
|
|
|
|
UISignalQueue.put(('updateStatusBar','Saving the knownNodes list of peers to disk...'))
|
2017-02-09 11:53:33 +01:00
|
|
|
logger.info('Saving knownNodes list of peers to disk')
|
|
|
|
saveKnownNodes()
|
|
|
|
logger.info('Done saving knownNodes list of peers to disk')
|
2017-02-08 13:41:56 +01:00
|
|
|
UISignalQueue.put(('updateStatusBar','Done saving the knownNodes list of peers to disk.'))
|
|
|
|
logger.info('Flushing inventory in memory out to disk...')
|
|
|
|
UISignalQueue.put((
|
|
|
|
'updateStatusBar',
|
|
|
|
'Flushing inventory in memory out to disk. This should normally only take a second...'))
|
|
|
|
Inventory().flush()
|
|
|
|
|
|
|
|
# Verify that the objectProcessor has finished exiting. It should have incremented the
|
|
|
|
# shutdown variable from 1 to 2. This must finish before we command the sqlThread to exit.
|
|
|
|
while state.shutdown == 1:
|
|
|
|
time.sleep(.1)
|
|
|
|
|
|
|
|
# This one last useless query will guarantee that the previous flush committed and that the
|
|
|
|
# objectProcessorThread committed before we close the program.
|
|
|
|
sqlQuery('SELECT address FROM subscriptions')
|
|
|
|
logger.info('Finished flushing inventory.')
|
|
|
|
sqlStoredProcedure('exit')
|
|
|
|
|
|
|
|
# Wait long enough to guarantee that any running proof of work worker threads will check the
|
|
|
|
# shutdown variable and exit. If the main thread closes before they do then they won't stop.
|
|
|
|
time.sleep(.25)
|
|
|
|
|
|
|
|
for thread in threading.enumerate():
|
2017-10-19 09:03:36 +02:00
|
|
|
if thread is not threading.currentThread() and isinstance(thread, StoppableThread):
|
2017-02-08 13:41:56 +01:00
|
|
|
logger.debug("Waiting for thread %s", thread.name)
|
|
|
|
thread.join()
|
|
|
|
|
|
|
|
# flush queued
|
|
|
|
for queue in (workerQueue, UISignalQueue, addressGeneratorQueue, objectProcessorQueue):
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
queue.get(False)
|
|
|
|
queue.task_done()
|
|
|
|
except Queue.Empty:
|
|
|
|
break
|
|
|
|
|
2017-10-01 17:39:35 +02:00
|
|
|
if shared.thisapp.daemon:
|
2017-02-08 13:41:56 +01:00
|
|
|
logger.info('Clean shutdown complete.')
|
|
|
|
shared.thisapp.cleanup()
|
|
|
|
os._exit(0)
|
|
|
|
else:
|
|
|
|
logger.info('Core shutdown complete.')
|
|
|
|
for thread in threading.enumerate():
|
|
|
|
logger.debug("Thread %s still running", thread.name)
|