-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
143 lines (129 loc) · 4.96 KB
/
main.go
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
package main
import (
"fmt"
"go-incentive-simulation/config"
"go-incentive-simulation/model/parts/types"
"go-incentive-simulation/model/parts/workers"
"go-incentive-simulation/model/state"
"math"
"sync"
"time"
)
func main() {
start := time.Now()
config.InitConfigs()
network := fmt.Sprintf("./data/nodes_data_%d_%d.txt", config.GetBinSize(), config.GetNetworkSize())
globalState := state.MakeInitialState(network)
iterations := config.GetIterations()
numTotalGoRoutines := config.GetNumGoroutines()
numRoutingGoroutines := config.GetNumRoutingGoroutines()
wgMain := &sync.WaitGroup{}
wgOutput := &sync.WaitGroup{}
requestChan := make(chan types.Request, numRoutingGoroutines)
outputChan := make(chan types.OutputStruct, 100000)
routeChan := make(chan types.RouteData, 100000)
stateChan := make(chan types.StateSubset, 100000)
pauseChan := make(chan bool, numRoutingGoroutines)
continueChan := make(chan bool, numRoutingGoroutines)
if config.IsWriteRoutesToFile() {
wgOutput.Add(1)
go workers.RouteFlushWorker(routeChan, wgOutput)
}
if config.IsWriteStatesToFile() {
wgOutput.Add(1)
go workers.StateFlushWorker(stateChan, wgOutput)
}
go workers.RequestWorker(pauseChan, continueChan, requestChan, &globalState, wgMain)
wgMain.Add(1)
if config.IsOutputEnabled() {
go workers.OutputWorker(outputChan, wgOutput)
wgOutput.Add(1)
}
for i := 0; i < numRoutingGoroutines; i++ {
wgMain.Add(1)
go workers.RoutingWorker(pauseChan, continueChan, requestChan, outputChan, routeChan, stateChan, &globalState, wgMain)
}
wgMain.Wait()
close(outputChan)
close(stateChan)
close(routeChan)
wgOutput.Wait()
fmt.Println("")
fmt.Println("end of main: ")
elapsed := time.Since(start)
fmt.Println("Time taken:", elapsed)
fmt.Println("Number of Iterations: ", iterations)
fmt.Println("Number of Total Goroutines: ", numTotalGoRoutines)
fmt.Println("Number of Routing Goroutines: ", numRoutingGoroutines)
// allReq, thresholdFails, requestsToBucketZero, rejectedBucketZero, rejectedFirstHop := ReadRoutes("routes.json")
// fmt.Println("allReq: ", allReq)
// fmt.Println("thresholdFails: ", thresholdFails)
// fmt.Println("requestsToBucketZero: ", requestsToBucketZero)
// fmt.Println("rejectedBucketZero: ", rejectedBucketZero)
// fmt.Println("rejectedFirstHop: ", rejectedFirstHop)
PrintState(globalState)
// TODO: Add this to another function in another file?
// buf, err := ioutil.ReadFile("states.bin")
// if err != nil {
// panic(err)
// }
// stateSubsets := &protoGenerated.StateSubsets{}
// err = proto.Unmarshal(buf, stateSubsets)
// if err != nil {
// panic(err)
// }
// // Access the subset field
// count := 0
// for _, subset := range stateSubsets.Subset {
// count++
// if count > 10 {
// break
// }
// fmt.Printf("OriginatorIndex: %d\n", subset.OriginatorIndex)
// fmt.Printf("PendingMap: %d\n", subset.PendingMap)
// fmt.Printf("RerouteMap: %d\n", subset.RerouteMap)
// fmt.Printf("CacheStruct: %d\n", subset.CacheStruct)
// fmt.Printf("SuccessfulFound: %d\n", subset.SuccessfulFound)
// fmt.Printf("FailedRequestsThreshold: %d\n", subset.FailedRequestsThreshold)
// fmt.Printf("FailedRequestsAccess: %d\n", subset.FailedRequestsAccess)
// fmt.Printf("TimeStep: %d\n", subset.TimeStep)
// }
// // read the binary protobuf message from the file
// buf, err := ioutil.ReadFile("routes.bin")
// if err != nil {
// panic(err)
// }
// // unmarshal the binary protobuf message into a RouteData struct
// routeData := &protoGenerated.RouteData{}
// err = proto.Unmarshal(buf, routeData)
// if err != nil {
// panic(err)
// }
// // print the RouteData struct
// fmt.Printf("TimeStep: %d\n", routeData.GetTimeStep())
// count := 0
// routedata := routeData.GetRoutes()
// fmt.Println("length", len(routedata))
// for _, route := range routeData.GetRoutes() {
// if count == 10 {
// break
// }
// fmt.Printf("Route: %v\n", route.GetWaypoints())
// fmt.Printf("Length: %d\n", route.GetLength())
// count++
// }
}
func PrintState(state types.State) {
total := float64(state.SuccessfulFound + state.FailedRequestsThreshold + state.FailedRequestsAccess)
fmt.Println("SuccessfulFound: ", state.SuccessfulFound, "-->", math.Round(float64(state.SuccessfulFound)/total*1000000)/10000, "%")
fmt.Println("ThresholdFail: ", state.FailedRequestsThreshold, "-->", math.Round(float64(state.FailedRequestsThreshold)/total*1000000)/10000, "%")
fmt.Println("AccessFail: ", state.FailedRequestsAccess, "-->", math.Round(float64(state.FailedRequestsAccess)/total*1000000)/10000, "%")
fmt.Println("TimeStep: ", state.TimeStep)
fmt.Println("OriginatorIndex: ", state.OriginatorIndex)
fmt.Println("CacheHits:", state.CacheHits)
fmt.Println("UniqueRetryCounter: ", state.UniqueRetryCounter)
fmt.Println("UniqueWaitingCounter: ", state.UniqueWaitingCounter)
//fmt.Println("PendingMap: ", state.PendingStruct.PendingMap, state.PendingStruct.Counter)
//fmt.Println("RerouteMap: ", state.RerouteStruct.RerouteMap)
//fmt.Println("RouteLists: ", state.RouteLists)
}