about summary refs log tree commit diff
path: root/main.go
blob: f61d08d4c91e18680e8f3d880d08de6072287dfc (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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
package main

import (
	"encoding/json"
	"fmt"
	"io/ioutil"
	"log"
	"net/http"
	"net/url"
	"os"
	"strconv"
	"time"

	"git.darknebu.la/GalaxySimulator/structs"
)

var (
	// store a copy of the tree locally
	treeArray      []*structs.Node
	starsProcessed int
	theta          = 0.1
)

// calcNewPos calculates the new position of the star it receives via a POST request
// TODO: Implement it
func calcNewPos(w http.ResponseWriter, r *http.Request) {
	// get the post parameters
	x, _ := strconv.ParseFloat(r.PostFormValue("x"), 64)
	y, _ := strconv.ParseFloat(r.PostFormValue("y"), 64)
	vx, _ := strconv.ParseFloat(r.PostFormValue("vx"), 64)
	vy, _ := strconv.ParseFloat(r.PostFormValue("vy"), 64)
	m, _ := strconv.ParseFloat(r.PostFormValue("m"), 64)

	log.Println("Simulator container calcNewPos got these values: ")
	log.Printf("(x: %f, y: %f, vx: %f, vy: %f, m: %f)\n", x, y, vx, vy, m)
}

// isCached returns true if the tree with the given treeindex is cached and false if not
func isCached(treeindex int64) bool {
	log.Printf("[isCached] Testing if %d is in the local cache\n", treeindex+1)
	log.Printf("[isCached] TreeArray length: %d\n", len(treeArray))

	// if the specified tree does not have any children and does not contain a star in the root node
	if int(treeindex+1) <= len(treeArray) {
		log.Println("[isCached] Yes it is!")
		return true
	} else {
		log.Println("[isCached] Doesn't seem so")
		return false
	}
}

func cache(treeindex int64) {
	log.Println("[ ! ] The tree is not in local cache, requesting it from the database")

	// make a http-post request to the databse requesting the tree
	requesturl := fmt.Sprintf("http://db.nbg1.emile.space/dumptree/%d", treeindex)
	log.Println("[   ] Requesting the tree from the database")
	resp, err := http.Get(requesturl)
	if err != nil {
		panic(err)
	}
	log.Println("[   ] No error occurred!")
	defer resp.Body.Close()

	body, readerr := ioutil.ReadAll(resp.Body)
	if readerr != nil {
		panic(readerr)
	}

	log.Println("[   ] Unmarshaling the tree and storing it the treeArray")
	tree := &structs.Node{}
	jsonUnmarshalErr := json.Unmarshal(body, tree)
	if jsonUnmarshalErr != nil {
		panic(jsonUnmarshalErr)
	}
	log.Println("[   ] No error occurred!")
	treeArray = append(treeArray, tree)
}

// pushMetrics pushes the metrics to the given host
func pushMetrics(host string) {

	// start an infinite loop
	for {

		hostname, _ := os.Hostname()

		// define a post-request and send it to the given host
		requestURL := fmt.Sprintf("%s", host)
		resp, err := http.PostForm(requestURL,
			url.Values{
				"key":   {fmt.Sprintf("%s{hostname=\"%s\"}", "starsProcessed", hostname)},
				"value": {fmt.Sprintf("%d", starsProcessed)},
			},
		)
		if err != nil {
			fmt.Printf("Cound not make a POST request to %s", requestURL)
		}
		log.Printf("[metrics] Updating the metrics on %s", requestURL)
		log.Printf("[metrics] key=starsProcessed{hostname=\"%s\"}&value=%d", hostname, starsProcessed)

		defer resp.Body.Close()

		// sleep for a given amount of time
		time.Sleep(time.Second * 5)
	}
}

// processstars processes stars as long as the sun is shining!
func processstars(url string) {

	// infinitely get stars and calculate the forces acting on them
	for {

		log.Println("[   ] Getting a star from the manager")
		// make a request to the given url and get the stargalaxy
		resp, err := http.Get(url)
		if err != nil {
			fmt.Println("PANIC")
			panic(err)
		}
		defer resp.Body.Close()
		log.Println("[   ] Done")

		// read the response containing a list of all stars in json format
		log.Println("[   ] Reading the content")
		body, err := ioutil.ReadAll(resp.Body)
		log.Println("[   ] Done")

		// if the response body is not a "Bad Gateway", continue.
		// This problem occurs, when the manager hasn't got enough stars
		if string(body) != "Bad Gateway" {
			stargalaxy := &structs.Stargalaxy{}

			// unmarshal the stargalaxy
			log.Println("[   ] Unmarshaling the stargalaxy")
			unmarshalErr := json.Unmarshal(body, stargalaxy)
			if unmarshalErr != nil {
				panic(unmarshalErr)
			}
			log.Println("[   ] Done")
			log.Printf("[Star] (%f, %f)", stargalaxy.Star.C.X, stargalaxy.Star.C.Y)

			// if the galaxy is not cached yet, cache it
			log.Println("[   ] Testing is the galaxy is cached or not")
			if isCached(stargalaxy.Index) == false {
				log.Println("[   ] It is not -> caching")
				cache(stargalaxy.Index)
			}
			log.Println("[   ] Done")

			log.Println("[   ] Calculating the forces acting")
			// calculate the forces acting inbetween all the stars in the galaxy
			star := stargalaxy.Star
			galaxyindex := stargalaxy.Index

			calcallforces(star, galaxyindex)

			log.Println("[   ] Done")

			// insert the "new" star into the next timestep

			log.Println("[   ] Calculating the new position")
			log.Println("[   ] TODO")

			// increase the starProcessed counter
			starsProcessed += 1

			log.Println("[   ] Waiting 10 seconds...")
			// time.Sleep(time.Second * 100)
			log.Println("[   ] Done")
		} else {
			// Sleep a second and try again
			time.Sleep(time.Second * 1)
		}

	}
}

// calcallforces calculates the forces acting on a given star using the given
// treeindex to define which other stars are in the galaxy
func calcallforces(star structs.Star2D, treeindex int64) {

	// iterate over the tree using Barnes-Hut to determine if the the force should be calculated or not
	log.Printf("[   ] Calculating the forces (%v, *): ", star)

	force := treeArray[treeindex].CalcAllForces(star, theta)
	log.Println("[   ] Done Calculating the forces!")
	log.Printf("[FORCE] Force acting on star: %v \t -> %v", star, force)
}

func main() {
	// start a go method pushing the metrics to the manager
	log.Println("[   ] Starting the metric-pusher")
	go pushMetrics("http://manager.nbg1.emile.space/metrics")

	processstars("http://manager.nbg1.emile.space/providestars/0")
}