mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
Move file deletion to model methods. add restart job button.
This commit is contained in:
parent
e20a6a31d9
commit
f86f3f4fd5
@ -1,9 +1,5 @@
|
||||
from time import sleep
|
||||
from .. import db, logger
|
||||
from ..decorators import background
|
||||
from ..models import Job
|
||||
import os
|
||||
import shutil
|
||||
|
||||
|
||||
@background
|
||||
@ -12,20 +8,7 @@ def delete_job(job_id, *args, **kwargs):
|
||||
with app.app_context():
|
||||
job = Job.query.get(job_id)
|
||||
if job is None:
|
||||
return
|
||||
if job.status not in ['complete', 'failed']:
|
||||
job.status = 'canceling'
|
||||
db.session.commit()
|
||||
while job.status != 'canceled':
|
||||
# In case the daemon handled a job in any way
|
||||
if job.status != 'canceling':
|
||||
job.status = 'canceling'
|
||||
db.session.commit()
|
||||
sleep(1)
|
||||
db.session.refresh(job)
|
||||
path = os.path.join(app.config['NOPAQUE_STORAGE'], str(job.user_id),
|
||||
'jobs', str(job.id))
|
||||
shutil.rmtree(path, ignore_errors=True)
|
||||
raise Exception('Could not find job with id {}'.format(job_id))
|
||||
job.delete()
|
||||
|
||||
|
||||
@ -35,16 +18,5 @@ def restart_job(job_id, *args, **kwargs):
|
||||
with app.app_context():
|
||||
job = Job.query.get(job_id)
|
||||
if job is None:
|
||||
logger.warning('Job not found')
|
||||
return
|
||||
if job.status != 'failed':
|
||||
logger.warning('Job not failed')
|
||||
return
|
||||
logger.warning('Restarted')
|
||||
job_dir = os.path.join(app.config['NOPAQUE_STORAGE'],
|
||||
str(job.user_id),
|
||||
'jobs',
|
||||
str(job.id))
|
||||
shutil.rmtree(os.path.join(job_dir, 'output'), ignore_errors=True)
|
||||
shutil.rmtree(os.path.join(job_dir, 'pyflow.data'), ignore_errors=True)
|
||||
raise Exception('Could not find job with id {}'.format(job_id))
|
||||
job.restart()
|
||||
|
@ -56,7 +56,7 @@ def download_job_input(job_id, job_input_id):
|
||||
def restart(job_id):
|
||||
job = Job.query.get_or_404(job_id)
|
||||
if job.status != 'failed':
|
||||
flash('Job can not be restarted!', 'job')
|
||||
flash('Could not restart job: status is not "failed"', 'error')
|
||||
else:
|
||||
tasks.restart_job(job_id)
|
||||
flash('Job has been restarted!', 'job')
|
||||
|
@ -2,9 +2,12 @@ from datetime import datetime
|
||||
from flask import current_app
|
||||
from flask_login import UserMixin, AnonymousUserMixin
|
||||
from itsdangerous import BadSignature, TimedJSONWebSignatureSerializer
|
||||
from time import sleep
|
||||
from werkzeug.security import generate_password_hash, check_password_hash
|
||||
from werkzeug.utils import secure_filename
|
||||
from . import db, login_manager
|
||||
import os
|
||||
import shutil
|
||||
|
||||
|
||||
class Permission:
|
||||
@ -364,7 +367,21 @@ class Job(db.Model):
|
||||
'''
|
||||
Delete the job and its inputs and results from the database.
|
||||
'''
|
||||
|
||||
if self.status not in ['complete', 'failed']:
|
||||
self.status = 'canceling'
|
||||
db.session.commit()
|
||||
while self.status != 'canceled':
|
||||
# In case the daemon handled a job in any way
|
||||
if self.status != 'canceling':
|
||||
self.status = 'canceling'
|
||||
db.session.commit()
|
||||
sleep(1)
|
||||
db.session.refresh(self)
|
||||
job_dir = os.path.join(current_app.config['NOPAQUE_STORAGE'],
|
||||
str(self.user_id),
|
||||
'jobs',
|
||||
str(self.id))
|
||||
shutil.rmtree(job_dir, ignore_errors=True)
|
||||
db.session.delete(self)
|
||||
db.session.commit()
|
||||
|
||||
@ -374,7 +391,13 @@ class Job(db.Model):
|
||||
'''
|
||||
|
||||
if self.status != 'failed':
|
||||
return
|
||||
raise Exception('Could not restart job: status is not "failed"')
|
||||
job_dir = os.path.join(current_app.config['NOPAQUE_STORAGE'],
|
||||
str(self.user_id),
|
||||
'jobs',
|
||||
str(self.id))
|
||||
shutil.rmtree(os.path.join(job_dir, 'output'), ignore_errors=True)
|
||||
shutil.rmtree(os.path.join(job_dir, 'pyflow.data'), ignore_errors=True)
|
||||
self.end_date = None
|
||||
self.status = 'submitted'
|
||||
db.session.commit()
|
||||
|
@ -71,7 +71,10 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action right-align">
|
||||
<a href="#" class="btn disabled waves-effect waves-light"><i class="material-icons left">settings</i>Export Parameters</a>
|
||||
{% if current_user.is_administrator() and job.status == 'failed' %}
|
||||
<a href="{{ url_for('jobs.restart', job_id=job.id) }}" class="btn waves-effect waves-light"><i class="material-icons left">repeat</i>Restart</a>
|
||||
{% endif %}
|
||||
<!-- <a href="#" class="btn disabled waves-effect waves-light"><i class="material-icons left">settings</i>Export Parameters</a> -->
|
||||
<a data-target="delete-job-modal" class="waves-effect waves-light btn red modal-trigger"><i class="material-icons left">delete</i>Delete</a>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user