summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/helper-scripts/dpi/config.py
blob: ee3f04c696eaf3be490bf378d9afc4ba583900cf (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#!/bin/env python

##
## Copyright (c) 2010-2017 Intel Corporation
##
## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License.
## You may obtain a copy of the License at
##
##     http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
##

import getopt
import sys
from systemconfig import *

class Config:
    _debug = False;
    _test_systems = [];
    _output_file_name = None;
    _input_file_name = None
    _input_file_name2 = None
    _max_port_rate = 0.85
    _sut = None
    _accuracy = 2;
    _threshold = 0.95
    _once = None
    _skipTime = 10
    _testLength = 120
    _dpiCoreList = range(1, 5)
    _checkConditions = False;
    _interCheckDuration = float(1)

    def getInputFileName(self):
        return self._input_file_name

    def getInputFileName2(self):
        return self._input_file_name2

    def toString(self):
        ret = ""
        ret += "Test systems: \n"
        for ts in self._test_systems:
            ret += ts.toString();

        if (self._sut is not None):
            ret += "SUT: \n"
            ret += self._sut.toString();

        ret += "Output file name: " + str(self._output_file_name) + "\n"
        ret += "Max port rate: " + str(self._max_port_rate) + "\n"
        ret += "Accuracy: " + str(self._accuracy) + " digits after point"
        return ret

    def getErrorTestOne(self):
        if (len(self._test_systems) == 0):
            return "Missing test systems";
        if (self._output_file_name is None):
            return "No output file or input file defined";
        return None

    def getErrorTestTwo(self):
        if (self._input_file_name is None):
            return "Input file is missing"
        if (self._input_file_name == self._output_file_name):
            return "Input file and output file are the same"
        return self.getErrorTestOne();

    def getErrorMakeTable(self):
        if (self._input_file_name is None):
            return "Missing input file"
        if (self._input_file_name2 is None):
            return "Missing file with performance resuilts"
        if (self._output_file_name is None):
            return "No output file or input file defined";
        if (self._input_file_name2 == self._input_file_name):
            return "Input file used multiple times"
        if (self._input_file_name == self._output_file_name):
            return "output file is the same as the input file"
        if (self._input_file_name2 == self._output_file_name):
            return "output file is the same as the input file 2"

        return None

    def usageAndExit(self, argv0):
        print "Usage: " + str(argv0)
        print "-t    Add a test system, syntax: " + SystemConfig.expectedSyntax()
        print "-s    Add SUT, syntax: " + SystemConfig.expectedSyntax()
        print "-o    Ouput file name"
        print "-a    Accuracy, number of digits after point"
        print "-i    Input file"
        print "-j    File with performance results"
        print "-m    Maximum per port rate, by default 0.85 (85%)"
        print "-d    Enable debugging"
        print "-w    Fraction of connections to reach, by default is 0.95 (95%)"
        print "-h    Show help"
        print "-q    Run a single test iteration, syntax of argument "
        print "-b    Skip time, by default 10 sec"
        print "-l    Test length, by default 120 sec"
        print "-n    Maximum number of DPI cores to test"
        print "-k    Period between checking conditions, 1 second by default"
        print "-c    Check conditions during 10 second period after convergence"
        print "      is msr,conn,ss (i.e. -q 4000,100000,38.91)"
        exit(-1);

    def parse(self, programName, args):
        try:
            opts, args = getopt.getopt(args, "t:s:o:a:i:q:m:dhw:j:b:l:n:k:c")
        except getopt.GetoptError as err:
            print str(err)
            return;
        for option, arg in opts:
            if(option == "-t"):
                for ts in arg.split(","):
                    syntaxErr = SystemConfig.checkSyntax(ts)
                    if (syntaxErr != ""):
                        print syntaxErr
                        exit(-1);
                    self._test_systems.append(SystemConfig(ts));
            elif(option == "-s"):
                syntaxErr = SystemConfig.checkSyntax(ts)
                if (syntaxErr != ""):
                    print syntaxErr
                    exit(-1);
                self._sut = SystemConfig(arg);
            elif(option == "-w"):
                self._threshold = float(arg)
            elif(option == "-o"):
                self._output_file_name = arg;
            elif(option == '-a'):
                self._accuracy = int(arg);
            elif(option == "-i"):
                self._input_file_name = arg;
            elif(option == "-j"):
                self._input_file_name2 = arg;
            elif(option == "-q"):
                self._once = arg.split(",")
            elif(option == "-c"):
                self._checkConditions = True;
            elif(option == "-m"):
                self._max_port_rate = float(arg);
            elif(option == "-k"):
                self._interCheckDuration = float(arg);
            elif(option == "-d"):
                self._debug = True
            elif(option == '-h'):
                self.usageAndExit(programName)
            elif(option == '-b'):
                self._skipTime = int(arg)
            elif(option == '-l'):
                self._testLength = int(arg)
            elif(option == '-n'):
                self._dpiCoreList = self.strToList(arg)
            else:
                self.usageAndExit(programName);

    def strToList(self, arg):
        elements = [];
        tokens = arg.split(",");

        for a in tokens:
            if (a.count('-') == 0):
                elements.append(int(a))
            elif (a.count('-') == 1):
                beg = int(a.split('-')[0]);
                end = int(a.split('-')[1]);
                if (beg > end):
                    raise Exception("Invalid list input format")
                elements += range(beg, end + 1);
            else:
                raise Exception("Invalid list input format")
        return elements;