Properly clean up temporary capture files at API exit

This commit is contained in:
Joel Collins 2018-11-21 10:45:45 +00:00
parent dce59f3b88
commit d3226731d6
3 changed files with 21 additions and 6 deletions

View file

@ -25,6 +25,7 @@ from openflexure_microscope import Microscope
from openflexure_microscope.camera.pi import StreamingCamera
from openflexure_stage import OpenFlexureStage
import atexit
import logging, sys
logging.basicConfig(stream=sys.stderr, level=logging.DEBUG)
@ -350,6 +351,7 @@ class CaptureListAPI(MicroscopeView):
:status 200: capture created
"""
state = parse_payload(request)
logging.info(state)
# TODO: Roll all of these ugly if statements into a method for getting payload elements
if 'filename' in state:
@ -569,6 +571,12 @@ app.add_url_rule(
uri('/capture/<capture_id>/download/<filename>'),
view_func=CaptureDownloadAPI.as_view('capture_download', microscope=api_microscope))
# Automatically clean up microscope at exit
def cleanup():
global api_microscope
api_microscope.close()
atexit.register(cleanup)
if __name__ == "__main__":
app.run(host='0.0.0.0', port="5000", threaded=True, debug=True, use_reloader=False)