yanic/models/nodes.go

104 lines
2.0 KiB
Go
Raw Normal View History

package models
2015-12-29 14:05:47 +01:00
import (
"encoding/json"
"io/ioutil"
"log"
"os"
"sync"
"time"
2016-03-12 03:23:12 +01:00
2016-03-15 23:26:30 +01:00
"github.com/FreifunkBremen/respond-collector/data"
2015-12-29 14:05:47 +01:00
)
2016-03-07 01:37:38 +01:00
// Node struct
2015-12-29 14:05:47 +01:00
type Node struct {
Firstseen time.Time `json:"firstseen"`
Lastseen time.Time `json:"lastseen"`
Statistics *data.Statistics `json:"statistics"`
Nodeinfo *data.NodeInfo `json:"nodeinfo"`
Neighbours *data.Neighbours `json:"-"`
2015-12-29 14:05:47 +01:00
}
2016-03-07 01:37:38 +01:00
type NodeElement struct {
NodeId string
}
// Nodes struct: cache DB of Node's structs
2015-12-29 14:05:47 +01:00
type Nodes struct {
Version int `json:"version"`
Timestamp time.Time `json:"timestamp"`
2016-03-07 01:37:38 +01:00
List map[string]*Node `json:"nodes"` // the current nodemap, indexed by node ID
2015-12-29 14:05:47 +01:00
sync.Mutex
}
2016-03-07 01:37:38 +01:00
// NewNodes create Nodes structs (cache DB)
2015-12-29 14:05:47 +01:00
func NewNodes() *Nodes {
nodes := &Nodes{
Version: 2,
2015-12-29 14:05:47 +01:00
List: make(map[string]*Node),
}
return nodes
}
2016-03-07 01:37:38 +01:00
// Get a Node by nodeid
2016-02-25 21:24:54 +01:00
func (nodes *Nodes) Get(nodeID string) *Node {
2015-12-29 14:05:47 +01:00
now := time.Now()
nodes.Lock()
2016-02-25 21:24:54 +01:00
node, _ := nodes.List[nodeID]
2015-12-29 14:05:47 +01:00
if node == nil {
node = &Node{
2016-03-12 03:23:12 +01:00
Firstseen: now,
Nodeinfo: &data.NodeInfo{},
Statistics: &data.Statistics{},
Neighbours: &data.Neighbours{},
2015-12-29 14:05:47 +01:00
}
2016-02-25 21:24:54 +01:00
nodes.List[nodeID] = node
2015-12-29 14:05:47 +01:00
}
nodes.Unlock()
node.Lastseen = now
return node
}
2016-03-07 01:37:38 +01:00
// Saves the cached DB to json file periodically
2016-03-07 12:05:53 +01:00
func (nodes *Nodes) Saver(config *Config) {
c := time.Tick(time.Second * time.Duration(config.Nodes.SaveInterval))
2015-12-29 14:05:47 +01:00
for range c {
2016-03-07 02:29:31 +01:00
log.Println("saving", len(nodes.List), "nodes")
nodes.Timestamp = time.Now()
nodes.Lock()
2016-03-07 12:05:53 +01:00
if path := config.Nodes.NodesPath; path != "" {
save(nodes, path)
}
if path := config.Nodes.GraphsPath; path != "" {
save(nodes.BuildGraph(config.Nodes.VpnAddresses), path)
}
2016-03-07 02:29:31 +01:00
nodes.Unlock()
2015-12-29 14:05:47 +01:00
}
}
2016-03-07 02:29:31 +01:00
func save(input interface{}, outputFile string) {
data, err := json.Marshal(input)
2015-12-29 14:05:47 +01:00
if err != nil {
2016-02-19 11:30:42 +01:00
log.Panic(err)
2016-02-19 11:13:30 +01:00
}
2015-12-29 14:05:47 +01:00
tmpFile := outputFile + ".tmp"
2016-02-19 11:30:42 +01:00
err = ioutil.WriteFile(tmpFile, data, 0644)
if err != nil {
2016-02-19 11:30:42 +01:00
log.Panic(err)
}
err = os.Rename(tmpFile, outputFile)
if err != nil {
2016-02-19 11:30:42 +01:00
log.Panic(err)
}
2015-12-29 14:05:47 +01:00
}