blob: 52455fbf52112e2ec3af86e34f68e8f81acefcbc (
plain)
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
|
##############################################################################
# Copyright (c) 2016 Huawei Technologies Co.,Ltd 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
##############################################################################
import os
import errno
import uuid
from api import ApiResource
from api.database.v1.handlers import TasksHandler
from yardstick.common import constants as consts
from yardstick.common.utils import result_handler
class V1TaskLog(ApiResource):
def get(self, task_id):
try:
uuid.UUID(task_id)
except ValueError:
return result_handler(consts.API_ERROR, 'invalid task_id')
task_handler = TasksHandler()
try:
task = task_handler.get_task_by_taskid(task_id)
except ValueError:
return result_handler(consts.API_ERROR, 'invalid task_id')
index = int(self._get_args().get('index', 0))
try:
with open(os.path.join(consts.TASK_LOG_DIR, '{}.log'.format(task_id))) as f:
f.seek(index)
data = f.readlines()
index = f.tell()
except OSError as e:
if e.errno == errno.ENOENT:
return result_handler(consts.API_ERROR, 'log file does not exist')
return result_handler(consts.API_ERROR, 'error with log file')
return_data = {
'index': index,
'data': data
}
return result_handler(task.status, return_data)
|