2022-07-30 15:24:21 +00:00
|
|
|
"""
|
|
|
|
Jobs controller. It handles the jobs that are created by the user.
|
|
|
|
This is a singleton class holding the jobs list.
|
|
|
|
Jobs can be added and removed.
|
|
|
|
A single job can be updated.
|
|
|
|
A job is a dictionary with the following keys:
|
|
|
|
- id: unique identifier of the job
|
|
|
|
- name: name of the job
|
|
|
|
- description: description of the job
|
|
|
|
- status: status of the job
|
|
|
|
- created_at: date of creation of the job
|
|
|
|
- updated_at: date of last update of the job
|
|
|
|
- finished_at: date of finish of the job
|
|
|
|
- error: error message if the job failed
|
|
|
|
- result: result of the job
|
|
|
|
"""
|
|
|
|
import typing
|
|
|
|
import datetime
|
2022-08-15 18:37:02 +00:00
|
|
|
from uuid import UUID
|
2022-08-02 19:50:16 +00:00
|
|
|
import asyncio
|
2022-07-30 15:24:21 +00:00
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import time
|
|
|
|
import uuid
|
|
|
|
from enum import Enum
|
|
|
|
|
2022-08-15 18:37:02 +00:00
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
from selfprivacy_api.utils import ReadUserData, UserDataFiles, WriteUserData
|
|
|
|
|
2022-07-30 15:24:21 +00:00
|
|
|
|
|
|
|
class JobStatus(Enum):
|
|
|
|
"""
|
|
|
|
Status of a job.
|
|
|
|
"""
|
|
|
|
|
|
|
|
CREATED = "CREATED"
|
|
|
|
RUNNING = "RUNNING"
|
|
|
|
FINISHED = "FINISHED"
|
|
|
|
ERROR = "ERROR"
|
|
|
|
|
|
|
|
|
2022-08-15 18:37:02 +00:00
|
|
|
class Job(BaseModel):
|
2022-07-30 15:24:21 +00:00
|
|
|
"""
|
|
|
|
Job class.
|
|
|
|
"""
|
|
|
|
|
2022-08-15 19:12:50 +00:00
|
|
|
uid: str = uuid.uuid4().urn
|
2022-08-15 18:37:02 +00:00
|
|
|
name: str
|
|
|
|
description: str
|
|
|
|
status: JobStatus
|
|
|
|
status_text: typing.Optional[str]
|
|
|
|
progress: typing.Optional[int]
|
|
|
|
created_at: datetime.datetime
|
|
|
|
updated_at: datetime.datetime
|
|
|
|
finished_at: typing.Optional[datetime.datetime]
|
|
|
|
error: typing.Optional[str]
|
|
|
|
result: typing.Optional[str]
|
2022-07-30 15:24:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Jobs:
|
|
|
|
"""
|
|
|
|
Jobs class.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__instance = None
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_instance():
|
|
|
|
"""
|
|
|
|
Singleton method.
|
|
|
|
"""
|
|
|
|
if Jobs.__instance is None:
|
|
|
|
Jobs()
|
2022-08-02 20:30:03 +00:00
|
|
|
if Jobs.__instance is None:
|
|
|
|
raise Exception("Couldn't init Jobs singleton!")
|
|
|
|
return Jobs.__instance
|
2022-08-15 18:37:02 +00:00
|
|
|
return Jobs.__instance
|
2022-07-30 15:24:21 +00:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""
|
|
|
|
Initialize the jobs list.
|
|
|
|
"""
|
|
|
|
if Jobs.__instance is not None:
|
|
|
|
raise Exception("This class is a singleton!")
|
|
|
|
else:
|
|
|
|
Jobs.__instance = self
|
2022-08-02 19:50:16 +00:00
|
|
|
|
2022-08-15 18:37:02 +00:00
|
|
|
def reset(self) -> None:
|
2022-08-02 19:50:16 +00:00
|
|
|
"""
|
2022-08-15 18:37:02 +00:00
|
|
|
Reset the jobs list.
|
2022-08-02 19:50:16 +00:00
|
|
|
"""
|
2022-08-15 18:37:02 +00:00
|
|
|
with WriteUserData(UserDataFiles.JOBS) as user_data:
|
|
|
|
user_data = []
|
2022-07-30 15:24:21 +00:00
|
|
|
|
|
|
|
def add(
|
2022-08-10 23:36:36 +00:00
|
|
|
self,
|
|
|
|
name: str,
|
|
|
|
description: str,
|
|
|
|
status: JobStatus = JobStatus.CREATED,
|
|
|
|
status_text: str = "",
|
|
|
|
progress: int = 0,
|
2022-07-30 15:24:21 +00:00
|
|
|
) -> Job:
|
|
|
|
"""
|
|
|
|
Add a job to the jobs list.
|
|
|
|
"""
|
|
|
|
job = Job(
|
|
|
|
name=name,
|
|
|
|
description=description,
|
|
|
|
status=status,
|
2022-08-02 19:50:16 +00:00
|
|
|
status_text=status_text,
|
|
|
|
progress=progress,
|
2022-07-30 15:24:21 +00:00
|
|
|
created_at=datetime.datetime.now(),
|
|
|
|
updated_at=datetime.datetime.now(),
|
|
|
|
finished_at=None,
|
|
|
|
error=None,
|
|
|
|
result=None,
|
|
|
|
)
|
2022-08-15 18:37:02 +00:00
|
|
|
with WriteUserData(UserDataFiles.JOBS) as user_data:
|
|
|
|
try:
|
|
|
|
user_data.append(job.dict())
|
|
|
|
except json.decoder.JSONDecodeError:
|
|
|
|
user_data = []
|
|
|
|
user_data.append(job.dict())
|
2022-07-30 15:24:21 +00:00
|
|
|
return job
|
|
|
|
|
|
|
|
def remove(self, job: Job) -> None:
|
|
|
|
"""
|
|
|
|
Remove a job from the jobs list.
|
|
|
|
"""
|
2022-08-15 18:37:02 +00:00
|
|
|
with WriteUserData(UserDataFiles.JOBS) as user_data:
|
|
|
|
user_data = [x for x in user_data if x["uid"] != job.uid]
|
2022-07-30 15:24:21 +00:00
|
|
|
|
|
|
|
def update(
|
|
|
|
self,
|
|
|
|
job: Job,
|
|
|
|
status: JobStatus,
|
2022-08-02 19:50:16 +00:00
|
|
|
status_text: typing.Optional[str] = None,
|
|
|
|
progress: typing.Optional[int] = None,
|
|
|
|
name: typing.Optional[str] = None,
|
|
|
|
description: typing.Optional[str] = None,
|
|
|
|
error: typing.Optional[str] = None,
|
|
|
|
result: typing.Optional[str] = None,
|
2022-07-30 15:24:21 +00:00
|
|
|
) -> Job:
|
|
|
|
"""
|
|
|
|
Update a job in the jobs list.
|
|
|
|
"""
|
|
|
|
if name is not None:
|
|
|
|
job.name = name
|
|
|
|
if description is not None:
|
|
|
|
job.description = description
|
2022-08-02 19:50:16 +00:00
|
|
|
if status_text is not None:
|
|
|
|
job.status_text = status_text
|
|
|
|
if progress is not None:
|
|
|
|
job.progress = progress
|
2022-07-30 15:24:21 +00:00
|
|
|
job.status = status
|
|
|
|
job.updated_at = datetime.datetime.now()
|
|
|
|
job.error = error
|
|
|
|
job.result = result
|
2022-08-15 18:37:02 +00:00
|
|
|
if status in (JobStatus.FINISHED, JobStatus.ERROR):
|
2022-08-02 19:50:16 +00:00
|
|
|
job.finished_at = datetime.datetime.now()
|
|
|
|
|
2022-08-15 18:37:02 +00:00
|
|
|
with WriteUserData(UserDataFiles.JOBS) as user_data:
|
|
|
|
user_data = [x for x in user_data if x["uid"] != job.uid]
|
|
|
|
user_data.append(job.dict())
|
2022-08-02 19:50:16 +00:00
|
|
|
|
2022-07-30 15:24:21 +00:00
|
|
|
return job
|
|
|
|
|
|
|
|
def get_job(self, id: str) -> typing.Optional[Job]:
|
|
|
|
"""
|
|
|
|
Get a job from the jobs list.
|
|
|
|
"""
|
2022-08-15 18:37:02 +00:00
|
|
|
with ReadUserData(UserDataFiles.JOBS) as user_data:
|
|
|
|
for job in user_data:
|
|
|
|
if job["uid"] == id:
|
|
|
|
return Job(**job)
|
2022-07-30 15:24:21 +00:00
|
|
|
return None
|
|
|
|
|
2022-08-02 19:50:16 +00:00
|
|
|
def get_jobs(self) -> typing.List[Job]:
|
2022-07-30 15:24:21 +00:00
|
|
|
"""
|
|
|
|
Get the jobs list.
|
|
|
|
"""
|
2022-08-15 18:37:02 +00:00
|
|
|
with ReadUserData(UserDataFiles.JOBS) as user_data:
|
|
|
|
try:
|
|
|
|
return [Job(**job) for job in user_data]
|
|
|
|
except json.decoder.JSONDecodeError:
|
|
|
|
return []
|