1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
##############################################################################
# Copyright (c) 2016 ZTE Corp and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
from datetime import datetime
import uuid
jobs = {}
def create_job(args):
if len(filter(lambda x: jobs[x]['state'] == 'processing', jobs.keys())) > 0:
return None
else:
job = {'job_id': str(uuid.uuid4()),
'installer_type': args["installer_type"],
'installer_ip': args["installer_ip"],
'pod_name': args["pod_name"],
'suite_name': args["suite_name"],
'max-minutes': args["max-minutes"],
'type': args["type"],
'start-time': str(datetime.now()),
'end-time': None,
'state': 'processing',
'state_detail': [],
'result': []}
jobs[job['job_id']] = job
return job['job_id']
def delete_job(job_id):
if job_id in jobs.keys():
jobs[job_id]['end_time'] = str(datetime.now())
jobs[job_id]['state'] = 'terminated'
return True
else:
return False
def get_job_info(job_id):
if job_id in jobs.keys():
return jobs[job_id]
else:
return None
def finish_job(job_id, state):
jobs[job_id]['end-time'] = str(datetime.now())
jobs[job_id]['state'] = state
def update_job_state_detail(job_id, state_detail):
jobs[job_id][state_detail] = state_detail
def update_job_result(job_id, result):
jobs[job_id][result] = result
def is_job_timeout(job_id):
period = datetime.now() - datetime.strptime(jobs[job_id]['start_time'],
"%Y-%m-%d %H:%M:%S.%f")
return True if jobs[job_id]['max-minutes'] * 60 < period.total_seconds()\
else False
|