aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/contexts/node.py
blob: c3d6521192b52694b744b89d7282f6d1449054d3 (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
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
##############################################################################
# Copyright (c) 2015 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 sys
import yaml
import logging

from yardstick.benchmark.contexts.base import Context

LOG = logging.getLogger(__name__)


class NodeContext(Context):
    '''Class that handle nodes info'''

    __context_type__ = "Node"

    def __init__(self):
        self.name = None
        self.file_path = None
        self.nodes = []
        self.controllers = []
        self.computes = []
        self.baremetals = []
        super(self.__class__, self).__init__()

    def init(self, attrs):
        '''initializes itself from the supplied arguments'''
        self.name = attrs["name"]
        self.file_path = attrs.get("file", "/etc/yardstick/nodes/pod.yaml")

        LOG.info("Parsing pod file: %s", self.file_path)

        try:
            with open(self.file_path) as stream:
                cfg = yaml.load(stream)
        except IOError as ioerror:
            sys.exit(ioerror)

        self.nodes.extend(cfg["nodes"])
        self.controllers.extend([node for node in cfg["nodes"]
                                if node["role"] == "Controller"])
        self.computes.extend([node for node in cfg["nodes"]
                             if node["role"] == "Compute"])
        self.baremetals.extend([node for node in cfg["nodes"]
                               if node["role"] == "Baremetal"])
        LOG.debug("Nodes: %r", self.nodes)
        LOG.debug("Controllers: %r", self.controllers)
        LOG.debug("Computes: %r", self.computes)
        LOG.debug("BareMetals: %r", self.baremetals)

    def deploy(self):
        '''don't need to deploy'''
        pass

    def undeploy(self):
        '''don't need to undeploy'''
        pass

    def _get_server(self, attr_name):
        '''lookup server info by name from context
        attr_name: a name for a server listed in nodes config file
        '''
        if type(attr_name) is dict:
            return None

        if self.name != attr_name.split(".")[1]:
            return None
        node_name = attr_name.split(".")[0]
        nodes = [n for n in self.nodes
                 if n["name"] == node_name]
        if len(nodes) == 0:
            return None
        elif len(nodes) > 1:
            LOG.error("Duplicate nodes!!!")
            LOG.error("Nodes: %r" % nodes)
            sys.exit(-1)

        # A clone is created in order to avoid affecting the
        # original one.
        node = dict(nodes[0])
        node["name"] = attr_name
        return node