-
Notifications
You must be signed in to change notification settings - Fork 12
/
autocloud_job.py
354 lines (286 loc) · 10.2 KB
/
autocloud_job.py
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
# -*- coding: utf-8 -*-
import copy
import datetime
import json
import os
import subprocess
import fedfind.release
from retask.queue import Queue
from autocloud.constants import SUCCESS, FAILED, RUNNING
from autocloud.models import init_model, ComposeJobDetails, ComposeDetails
from autocloud.producer import publish_to_fedmsg
import logging
logging.basicConfig(level=logging.DEBUG)
log = logging.getLogger(__name__)
def handle_err(session, data, out, err):
"""
Prints the details and exits.
:param out:
:param err:
:return: None
"""
# Update DB first.
data.status = u'f'
data.output = "%s: %s" % (out, err)
timestamp = datetime.datetime.now()
data.last_updated = timestamp
session.commit()
log.debug("%s: %s", out, err)
def system(cmd):
"""
Runs a shell command, and returns the output, err, returncode
:param cmd: The command to run.
:return: Tuple with (output, err, returncode).
"""
ret = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE, close_fds=True)
out, err = ret.communicate()
returncode = ret.returncode
return out, err, returncode
def refresh_storage_pool():
'''Refreshes libvirt storage pool.
http://kushaldas.in/posts/storage-volume-error-in-libvirt-with-vagrant.html
'''
out, err, retcode = system('virsh pool-list')
lines = out.split('\n')
if len(lines) > 2:
for line in lines[2:]:
words = line.split()
if len(words) == 3:
if words[1] == 'active':
system('virsh pool-refresh {0}'.format(words[0]))
def image_cleanup(image_path):
"""
Delete the image if it is processed or if there is any exception occur
:param basename: Absoulte path for image
"""
if os.path.exists(image_path):
try:
os.remove(image_path)
except OSError as e:
log.error('Error: %s - %s.', e.filename, e.strerror)
def create_dirs():
"""
Creates the runtime dirs
"""
system('mkdir -p /var/run/tunir')
system('mkdir -p /var/run/autocloud')
def create_result_text(out):
"""
:param out: Output text from the command.
"""
result_filename = None
lines = out.splitlines()
for line in lines:
if line.startswith('Result file at:'):
result_filename = line.split(' ')[1]
if not result_filename: # In case no result file.
return "NO RESULT FILE."
result_filename = result_filename.strip()
if os.path.exists(result_filename):
new_content = ''
with open(result_filename) as fobj:
new_content = fobj.read()
job_status_index = out.find('Job status:')
if job_status_index == -1:
return out # No job status in the output.
new_line_index = out[job_status_index:].find('\n')
out = out[:job_status_index + new_line_index]
out = out + '\n\n' + new_content
system('rm -f {0}'.format(result_filename))
return out
return out
def auto_job(task_data):
"""
This fuction queues the job, and then executes the tests,
updates the db as required.
:param taskid: Koji taskid.
:param image_url: URL to download the fedora image.
:return:
"""
# TODO:
# We will have to update the job information on DB, rather
# than creating it. But we will do it afterwards.
compose_image_url = task_data['absolute_path']
compose_id = task_data['compose']['id']
release = task_data['compose']['release']
job_id = task_data['job_id']
image_type = task_data['type']
job_type = 'vm'
# Just to make sure that we have runtime dirs
create_dirs()
session = init_model()
timestamp = datetime.datetime.now()
data = None
try:
data = session.query(ComposeJobDetails).get(str(job_id))
data.status = u'r'
data.last_updated = timestamp
except Exception as err:
log.error("%s" % err)
log.error("%s: %s", compose_id, compose_image_url)
session.commit()
params = {
'compose_url': compose_image_url,
'compose_id': compose_id,
'status': RUNNING,
'job_id': job_id,
'release': release,
'family': data.family.value,
'type': image_type,
'image_name': data.image_name,
}
publish_to_fedmsg(topic='image.running', **params)
# Now we have job queued, let us start the job.
# Step 1: Download the image
image_url = compose_image_url
basename = os.path.basename(image_url)
image_path = '/var/run/autocloud/%s' % basename
log.debug("Going to download {0}".format(image_url))
out, err, ret_code = system('wget %s -O %s' % (image_url, image_path))
if ret_code:
image_cleanup(image_path)
handle_err(session, data, out, err)
log.debug("Return code: %d" % ret_code)
params.update({'status': FAILED})
publish_to_fedmsg(topic='image.failed', **params)
check_status_of_compose_image(compose_id)
return FAILED
# Step 2: Create the conf file with correct image path.
if basename.find('vagrant') == -1:
conf = {"image": "/var/run/autocloud/%s" % basename,
"name": "fedora",
"password": "passw0rd",
"ram": 2048,
"type": "vm",
"user": "fedora"}
else: # We now have a Vagrant job.
conf = {
"name": "fedora",
"type": "vagrant",
"image": "/var/run/autocloud/%s" % basename,
"ram": 2048,
"user": "vagrant",
"port": "22"
}
if basename.find('virtualbox') != -1:
conf['provider'] = 'virtualbox'
job_type = 'vagrant'
# Now let us refresh the storage pool
refresh_storage_pool()
with open('/var/run/autocloud/fedora.json', 'w') as fobj:
fobj.write(json.dumps(conf))
system('/usr/bin/cp -f /etc/autocloud/fedora.txt '
'/var/run/autocloud/fedora.txt')
cmd = 'tunir --job fedora --config-dir /var/run/autocloud/'
# Now run tunir
out, err, ret_code = system(cmd)
if ret_code:
image_cleanup(image_path)
handle_err(session, data, create_result_text(out), err)
log.debug("Return code: %d" % ret_code)
params.update({'status': FAILED})
publish_to_fedmsg(topic='image.failed', **params)
check_status_of_compose_image(compose_id)
return FAILED
else:
image_cleanup(image_path)
# Enabling direct stdout as output of the command
out = create_result_text(out)
if job_type == 'vm':
com_text = out[out.find('/usr/bin/qemu-kvm'):]
else:
com_text = out
data.status = u's'
timestamp = datetime.datetime.now()
data.last_updated = timestamp
data.output = com_text
session.commit()
session.close()
params.update({'status': SUCCESS})
publish_to_fedmsg(topic='image.success', **params)
check_status_of_compose_image(compose_id)
return SUCCESS
def check_status_of_compose_image(compose_id):
session = init_model()
compose_job_objs = session.query(ComposeJobDetails).filter_by(
compose_id=compose_id).all()
compose_obj = session.query(ComposeDetails).filter_by(
compose_id=compose_id).first()
results = {
SUCCESS: 0,
FAILED: 0,
'artifacts': {}
}
for compose_job_obj in compose_job_objs:
status = compose_job_obj.status.code
if status in ('r', 'q'):
# Abort, since there's still jobs not finished
return False
elif status in ('s',):
results[SUCCESS] = results[SUCCESS] + 1
elif status in ('f', 'a'):
results[FAILED] = results[FAILED] + 1
artifact = {
'architecture': compose_job_obj.arch.value,
'family': compose_job_obj.family.value,
'image_url': compose_job_obj.image_url,
'release': compose_job_obj.release,
'subvariant': compose_job_obj.subvariant,
'format': compose_job_obj.image_format,
'type': compose_job_obj.image_type,
'name': compose_job_obj.image_name,
'status': compose_job_obj.status.value
}
results['artifacts'][str(compose_job_obj.id)] = artifact
compose_obj.passed = results[SUCCESS]
compose_obj.failed = results[FAILED]
compose_obj.status = u'c'
session.commit()
compose_id = compose_obj.compose_id
rel = fedfind.release.get_release(cid=compose_id)
release = rel.release
params = {
'id': compose_obj.compose_id,
'respin': compose_obj.respin,
'type': compose_obj.type,
'date': datetime.datetime.strftime(compose_obj.date, '%Y%m%d'),
'results': results,
'release': release,
'status': 'completed',
'compose_job_id': compose_obj.id
}
publish_to_fedmsg(topic='compose.complete', **params)
session.close()
return True
def main():
jobqueue = Queue('jobqueue')
jobqueue.connect()
while True:
task = jobqueue.wait()
task_data = task.data
pos, num_images = task_data['pos']
compose_details = task_data['compose']
if pos == 1:
session = init_model()
compose_id = compose_details['id']
compose_obj = session.query(ComposeDetails).filter_by(
compose_id=compose_id).first()
compose_status = compose_obj.status.code
# Here the check if the compose_status has completed 'c' is for
# failsafe. This condition is never to be hit. This is to avoid
# sending message to fedmsg.
if compose_status in ('r', 'c'):
log.info("Compose %s already running. Skipping sending to \
fedmsg" % compose_id)
else:
compose_obj.status = u'r'
session.commit()
params = copy.deepcopy(compose_details)
params.update({'status': 'running'})
publish_to_fedmsg(topic='compose.running', **params)
session.close()
result = auto_job(task_data)
if __name__ == '__main__':
main()