summaryrefslogtreecommitdiff
path: root/src/main.go
blob: d64533e0fd8a4866618bf3ed5c4ef541f29a50d8 (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
// vim: shiftwidth=4 tabstop=4 noexpandtab

package main

import (
	"log"
	"time"
	"os"
	"io/ioutil"
	"encoding/json"
)

const (
	CONFIG_FILE = "/etc/birdscan/config.json"
)

type config struct {
	WebConfig webConfig `json:"webserver"`
}

func main() {
	log.SetFlags(0)  // disable timestamp because systemd takes care of that
	log.Println("Starting birdscan")
	cfg := readConfig()
	go runServer(&cfg.WebConfig)
	for {
		time.Sleep(1 * time.Second)
	}
}

func readConfig() config {

	log.Printf("Reading config file %s", CONFIG_FILE)
	var retval config

	// open the config file
	configFile, err := os.Open(CONFIG_FILE)
	defer configFile.Close()
	if err != nil {
		log.Fatalf("Could not open configuration file %s", CONFIG_FILE)
	}

	// read byte content
	byteData, err := ioutil.ReadAll(configFile)
	if err != nil {
		log.Fatalf("Could not read configuration file %s", CONFIG_FILE)
	}

	// parse content to config structs
	err = json.Unmarshal(byteData, &retval)
	if err != nil {
		log.Fatalf("Could not parse configuration file %s", CONFIG_FILE)
	}

	return retval
}