aboutsummaryrefslogtreecommitdiffstats
path: root/api/utils/thread.py
blob: 20bd07a1280a475d2f6b9619cf6bbd9d4df6609e (plain)
1
2
3
4
5
6
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /*
##############################################################################
# Copyright (c) 2017 Huawei Technologies Co.,Ltd.
#
# 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 threading
import os
import logging

from oslo_serialization import jsonutils

from yardstick.common import constants as consts

LOG = logging.getLogger(__name__)
LOG.setLevel(logging.DEBUG)


class TaskThread(threading.Thread):

    def __init__(self, target, args, handler):
        super(TaskThread, self).__init__(target=target, args=args)
        self.target = target
        self.args = args
        self.handler = handler

    def run(self):
        if self.handler.__class__.__name__.lower().startswith('v2'):
            self.handler.update_attr(self.args.task_id, {'status': consts.TASK_NOT_DONE})
        else:
            update_data = {'task_id': self.args.task_id, 'status': consts.TASK_NOT_DONE}
            self.handler.insert(update_data)

        LOG.info('Starting run task')
        try:
            data = self.target(self.args)
        except Exception as e:
            LOG.exception('Task Failed')
            update_data = {'status': consts.TASK_FAILED, 'error': str(e)}
            self.handler.update_attr(self.args.task_id, update_data)
        else:
            LOG.info('Task Finished')
            LOG.debug('Result: %s', data)

            if self.handler.__class__.__name__.lower().startswith('v2'):
                new_data = {'status': consts.TASK_DONE, 'result': jsonutils.dumps(data['result'])}
                self.handler.update_attr(self.args.task_id, new_data)
                os.remove(self.args.inputfile[0])
            else:
                data['result'] = jsonutils.dumps(data.get('result', {}))
                self.handler.update_attr(self.args.task_id, data)