summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/helper-scripts/dpi/maketable.py
blob: f8b7bdc01240f616e720cf0d8b9a7bc157aeb731 (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
#!/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 sys
from config import *
from csvreader import *
from sets import Set
from csvwriter import *

class ResultEntry:
    def __init__(self):
        self.boundary = None;
        self.cores = {}

    def setBoundary(self, val):
        self.boundary = val;

    def addCoreResult(self, core, val):
        self.cores[core] = val

    def getCoreResult(self, core):
        if (core in self.cores):
            return self.cores[core];
        return None;

    def getBoundary(self):
        return self.boundary;

    def getCores(self):
        return self.cores

    def getMsr(self):
        return self.msr;

class DictEntry:
    def __init__(self, key):
        self.dictionary = {}
        self.entries = []
        self.key = key;

config = Config();
config.parse(sys.argv[0], sys.argv[1:])

err = config.getErrorMakeTable();

if (err is not None):
    print err
    exit(-1);

if (config._debug):
    print "Performance data: " + config.getInputFileName2()
    print "Boundaries: " + config.getInputFileName()

allData = {}

infileFields = []
infileFields += [("msr", "int")]
infileFields += [("conn", "int")]
infileFields += [("ss", "Decimal")]
infileFields += [("bw", "Decimal")]

boundariesFile = CsvReader(infileFields)
boundariesFile.open(config.getInputFileName());
boundaries = boundariesFile.readAll();

cores = Set()

orderedResults = []
finalResults = {}

for a in boundaries:
    key = a["conn"]
    if (key not in finalResults):
        newDict = DictEntry(key)
        finalResults[key] = newDict
        orderedResults.append(newDict)

for a in boundaries:
    table = finalResults[a["conn"]]
    key = a["msr"]
    value = ResultEntry()
    value.msr = a["msr"]
    value.conn = a["conn"]
    value.boundary = a["bw"]
    table.dictionary[key] = value
    table.entries.append(value)

infileFields2 = []
infileFields2 += [("cores", "int")]
infileFields2 += [("msr", "int")]
infileFields2 += [("conn", "int")]
infileFields2 += [("ss", "Decimal")]
infileFields2 += [("down", "Decimal")]

resultsFile = CsvReader(infileFields2)
resultsFile.open(config.getInputFileName2())

for a in resultsFile.readAll():
    table = finalResults[a["conn"]]
    key = a["msr"]
    table.dictionary[key].addCoreResult(a["cores"], a["down"])
    cores.add(a["cores"]);


outputFile = CsvWriter()

outputFile.open(config._output_file_name)

title = ["setup rate", "maximum"]
for e in sorted(cores):
    title += [str(e)]

for a in orderedResults:
    outputFile.write(["connections = " + str(a.key)])
    outputFile.write(title)

    for e in a.entries:
        line = [str(e.getMsr())]
        line += [str(e.getBoundary())]
        for c in sorted(cores):
            if (e.getCoreResult(c) is not None):
                line += [str(e.getCoreResult(c))]
            else:
                line += [""]
        outputFile.write(line)