about summary refs log tree commit diff
path: root/main.go
blob: 0d759728226d77c656997c140ce38b1ee0868b2a (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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package main

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

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

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

// isCached returns true if the tree with the given treeindex is cached and false if not
func isCached(treeindex int64) bool {
	// 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) {
		return true
	} else {
		return false
	}
}

// cache caches the tree with the given index
func cache(treeindex int64) {
	currentlyCaching = true

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

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

	tree := &structs.Node{}
	jsonUnmarshalErr := json.Unmarshal(body, tree)
	if jsonUnmarshalErr != nil {
		panic(jsonUnmarshalErr)
	}

	// if the treeArray is not long enough, fill it
	for int(treeindex) > len(treeArray) {
		emptyNode := structs.NewNode(structs.NewBoundingBox(structs.NewVec2(0, 0), 10))
		treeArray = append(treeArray, emptyNode)
	}

	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)
		}

		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, core int) {

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

		log.Println("------------------------------------------")

		// make a request to the given url and get the stargalaxy
		resp, err := http.Get(url)
		if err != nil {
			panic(err)
		}
		defer resp.Body.Close()

		// read the response containing a list of all stars in json format
		body, err := ioutil.ReadAll(resp.Body)

		// 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
			unmarshalErr := json.Unmarshal(body, stargalaxy)
			if unmarshalErr != nil {
				panic(unmarshalErr)
			}

			// if the galaxy is not cached yet, cache it
			if isCached(stargalaxy.Index) == false || currentlyCaching == false {
				log.Println("[Caching]")
				cache(stargalaxy.Index)
				log.Println("[Done Caching!]")
			}

			// calculate the forces acting inbetween all the stars in the galaxy
			star := stargalaxy.Star
			galaxyindex := stargalaxy.Index

			log.Printf("[+++] %v\n", star)

			force := calcallforces(star, galaxyindex)

			// calculate the new position
			star.CalcNewPos(force, 1e15)

			log.Printf("[+++] %v\n", star)

			// insert the "new" star into the next timestep
			insertStar(star, galaxyindex+1)

			// increase the starProcessed counter
			starsProcessed += 1
			log.Printf("[%d][%d] Processed as star!\n", core, starsProcessed)

			// time.Sleep(time.Second * 100)
		} else {
			fmt.Println("Could not get a star from the manager!")
			// Sleep a second and try again
			time.Sleep(time.Second * 1)
		}

	}
}

// insertStar inserts the given star into the tree with the given index
func insertStar(star structs.Star2D, galaxyindex int64) {
	log.Println("[ i ] Inserting the star into the galaxy")

	// if the galaxy does not exist yet, create it
	requrl := "http://db.nbg1.emile.space/nrofgalaxies"
	resp, err := http.Get(requrl)
	if err != nil {
		panic(err)
	}
	defer resp.Body.Close()

	body, err := ioutil.ReadAll(resp.Body)
	currentAmounfOfGalaxies, _ := strconv.ParseInt(string(body), 10, 64)

	log.Printf("[ i ] Current amount of galaxies: %d\n", currentAmounfOfGalaxies)

	// if there is no galaxy to insert the star into, create it
	if currentAmounfOfGalaxies <= galaxyindex {
		log.Println("[ i ] There is no galaxy to insert into -> creating one")

		// create the new galaxy using a post request
		requestURL := "http://db.nbg1.emile.space/new"
		resp, err := http.PostForm(requestURL,
			url.Values{
				"w": {fmt.Sprintf("%d", 1000000000)},
			},
		)
		if err != nil {
			fmt.Printf("Cound not make a POST request to %s", requestURL)
			body, _ := ioutil.ReadAll(resp.Body)
			fmt.Printf(string(body))
		}
		defer resp.Body.Close()

		log.Println("[ i ] Done creating the new galaxy")
	}

	// insert the star into the galaxy

	log.Printf("[ i ] Inserting the star into galaxy nr. %d\n", galaxyindex)

	// create the new galaxy using a post request
	requestURL := fmt.Sprintf("http://db.nbg1.emile.space/insert/%d", galaxyindex)
	resppost, errpost := http.PostForm(requestURL,
		url.Values{
			"x":  {fmt.Sprintf("%f", star.C.X)},
			"y":  {fmt.Sprintf("%f", star.C.Y)},
			"vx": {fmt.Sprintf("%f", star.V.X)},
			"vy": {fmt.Sprintf("%f", star.V.Y)},
			"m":  {fmt.Sprintf("%f", star.M)},
		},
	)
	if errpost != nil {
		panic(errpost)
		// handle error
	}
	defer resppost.Body.Close()

	log.Printf("[<<<] \t %v", string(requestURL))
	log.Printf("[<<<] \t %v", string(body))

	log.Println("[ i ] Done inserting the star")
}

// 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) structs.Vec2 {
	fmt.Printf("star: %v", star)
	fmt.Printf("treeindex: %d", treeindex)
	fmt.Printf("len(treeArray): %d", len(treeArray))
	force := treeArray[treeindex].CalcAllForces(star, theta)
	return 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")

	numCPU := runtime.NumCPU()

	log.Printf("Starting %d go threads", numCPU)

	// for i := 0; i < numCPU-1; i++ {
	// 	go processstars("http://manager.nbg1.emile.space/providestars/0", i)
	// }
	processstars("http://manager.nbg1.emile.space/providestars/0", 7)
}