summaryrefslogtreecommitdiffstats
path: root/qtip/loader/base.py
blob: a0e5d0315c60ed18e53b44299e5d656d867c9983 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
##############################################################################
# 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 collections import defaultdict
from itertools import chain
from os import listdir
from os import path
import yaml

from qtip.base.error import InvalidFormat, NotFound
from qtip.base.constant import BaseProp


ROOT_DIR = path.join(path.dirname(__file__), path.pardir, path.pardir,
                     'benchmarks')


class BaseLoader(object):
    """Abstract class of QTIP benchmark loader"""
    RELATIVE_PATH = '.'
    _paths = [ROOT_DIR]

    def __init__(self, name, paths=None):
        self._file = name
        self._abspath = self._find(name, paths=paths)
        content = defaultdict(lambda: None)

        try:
            content.update(yaml.safe_load(file(self._abspath)))
        except yaml.YAMLError:
            # TODO(yujunz) log yaml error
            raise InvalidFormat(self._abspath)

        self.name = content[BaseProp.NAME] or path.splitext(name)[0]
        self.content = content

    def _find(self, name, paths=None):
        """find a benchmark in searching paths"""
        paths = self._paths if paths is None else paths
        for p in paths:
            abspath = path.join(p, self.RELATIVE_PATH, name)
            if path.exists(abspath):
                return abspath
        raise NotFound(name, paths)

    @classmethod
    def list_all(cls, paths=None):
        """list all available benchmarks"""
        paths = cls._paths if paths is None else paths
        names = chain.from_iterable([listdir(path.join(p, cls.RELATIVE_PATH))
                                     for p in paths])
        for name in names:
            item = cls(name, paths=paths)
            yield {
                BaseProp.NAME: name,
                BaseProp.ABSPATH: item._abspath,
                BaseProp.CONTENT: item.content}