summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/common/trex_types.py
blob: 7c3f04c57b9480d9a64f8456aad1a6f7bd72443c (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
from collections import namedtuple
from common.text_opts import *

RpcCmdData = namedtuple('RpcCmdData', ['method', 'params'])

class RpcResponseStatus(namedtuple('RpcResponseStatus', ['success', 'id', 'msg'])):
        __slots__ = ()
        def __str__(self):
            return "{id:^3} - {msg} ({stat})".format(id=self.id,
                                                  msg=self.msg,
                                                  stat="success" if self.success else "fail")

# simple class to represent complex return value
class RC():

    def __init__ (self, rc = None, data = None):
        self.rc_list = []

        if (rc != None) and (data != None):
            tuple_rc = namedtuple('RC', ['rc', 'data'])
            self.rc_list.append(tuple_rc(rc, data))

    def add (self, rc):
        self.rc_list += rc.rc_list

    def good (self):
        return all([x.rc for x in self.rc_list])

    def bad (self):
        return not self.good()

    def data (self):
        d = [x.data if x.rc else "" for x in self.rc_list]
        return (d if len(d) > 1 else d[0])

    def err (self):
        e = [x.data if not x.rc else "" for x in self.rc_list]
        return (e if len(e) > 1 else e[0])

    def annotate (self, desc = None, show_status = True):
        if desc:
            print format_text('\n{:<60}'.format(desc), 'bold'),
        else:
            print ""

        if self.bad():
            # print all the errors
            print ""
            for x in self.rc_list:
                if not x.rc:
                    print format_text("\n{0}".format(x.data), 'bold')

            print ""
            if show_status:
                print format_text("[FAILED]\n", 'red', 'bold')


        else:
            if show_status:
                print format_text("[SUCCESS]\n", 'green', 'bold')


def RC_OK(data = ""):
    return RC(True, data)
def RC_ERR (err):
    return RC(False, err)