summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/controller/env_build/env_build.py
blob: 85ad5d29ccedf8d9434381fae048c6075bdb68d7 (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
"""
Created on 2015-8-27

@author: y00228926
"""
import logging

from vstf.controller.fabricant import Fabricant
from vstf.rpc_frame_work.rpc_producer import Server
from vstf.controller.env_build.cfg_intent_parse import IntentParser

LOG = logging.getLogger(__name__)


class EnvBuildApi(object):
    def __init__(self, conn, config_file):
        LOG.info("welcome to EnvBuilder")
        self.conn = conn
        intent_parser = IntentParser(config_file)
        self.cfg_intent = intent_parser.parse_cfg_file()

    def build(self):
        LOG.info("start build")
        for host_cfg in self.cfg_intent['env-build']:
            rpc = Fabricant(host_cfg['ip'], self.conn)
            rpc.build_env(timeout=1800, cfg_intent=host_cfg)
        return True

    def clean(self):
        for host_cfg in self.cfg_intent['env-build']:
            rpc = Fabricant(host_cfg['ip'], self.conn)
            rpc.clean_env(timeout=120)
        return True

    def get_hosts(self):
        result = []
        for host_cfg in self.cfg_intent['env-build']:
            host = {
                'name': host_cfg['ip'],
                'nic': "82599ES 10-Gigabit"
            }
            result.append(host)
        return result


class TransmitterBuild(object):
    def __init__(self, conn, config_file):
        LOG.info("welcome to TransmitterBuild")
        self.conn = conn
        self._cfg_intent = config_file["transmitter-build"]

    def build(self):
        LOG.info("start build")
        for cfg in self.cfg_intent:
            rpc = Fabricant(cfg['ip'], self.conn)
            cfg.setdefault("scheme", 'transmitter')
            rpc.build_env(timeout=1800, cfg_intent=cfg)
        return True

    def clean(self):
        for cfg in self.cfg_intent:
            rpc = Fabricant(cfg['ip'], self.conn)
            rpc.clean_env(timeout=10)
        return True


if __name__ == "__main__":
    import argparse

    parser = argparse.ArgumentParser()
    parser.add_argument('--rpc_server', help='rabbitmq server for deliver messages.')
    parser.add_argument('--config', help='config file to parse')
    args = parser.parse_args()
    logging.basicConfig(level=logging.INFO)
    conn = Server(args.rpc_server)
    tn = EnvBuildApi(conn, args.config)
    tn.build()