yanic/models/nodes.go

236 lines
5.6 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"
2016-03-20 17:10:39 +01:00
"github.com/FreifunkBremen/respond-collector/jsontime"
2016-05-29 21:41:58 +02:00
"github.com/FreifunkBremen/respond-collector/meshviewer"
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 {
2016-05-29 21:41:58 +02:00
Firstseen jsontime.Time `json:"firstseen"`
Lastseen jsontime.Time `json:"lastseen"`
Flags *meshviewer.Flags `json:"flags,omitempty"`
Statistics *data.Statistics `json:"statistics"`
Nodeinfo *data.NodeInfo `json:"nodeinfo"`
Neighbours *data.Neighbours `json:"-"`
2016-03-07 01:37:38 +01:00
}
// Nodes struct: cache DB of Node's structs
2015-12-29 14:05:47 +01:00
type Nodes struct {
Version int `json:"version"`
2016-03-20 17:10:39 +01:00
Timestamp jsontime.Time `json:"timestamp"`
2016-03-07 01:37:38 +01:00
List map[string]*Node `json:"nodes"` // the current nodemap, indexed by node ID
2016-03-20 18:30:44 +01:00
config *Config
2016-06-16 18:50:43 +02:00
sync.RWMutex
2015-12-29 14:05:47 +01:00
}
2016-03-20 18:30:44 +01:00
// NewNodes create Nodes structs
func NewNodes(config *Config) *Nodes {
2015-12-29 14:05:47 +01:00
nodes := &Nodes{
2016-03-20 18:30:44 +01:00
List: make(map[string]*Node),
config: config,
2015-12-29 14:05:47 +01:00
}
2016-03-20 18:30:44 +01:00
if config.Nodes.NodesPath != "" {
nodes.load()
}
go nodes.worker()
2016-06-16 18:03:45 +02:00
nodes.Version = 2
2015-12-29 14:05:47 +01:00
return nodes
}
2016-03-20 16:25:33 +01:00
// Update a Node
2016-07-14 01:19:03 +02:00
func (nodes *Nodes) Update(nodeID string, res *data.ResponseData) *Node {
2016-03-20 17:10:39 +01:00
now := jsontime.Now()
2015-12-29 14:05:47 +01:00
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-20 16:25:33 +01:00
Firstseen: now,
2016-05-29 21:41:58 +02:00
Flags: &meshviewer.Flags{
Online: true,
Gateway: false,
},
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
2016-05-29 21:41:58 +02:00
if node.Flags != nil {
2016-05-23 14:20:58 +02:00
node.Flags.Online = true
}
2016-03-20 16:25:33 +01:00
// Update neighbours
if val := res.Neighbours; val != nil {
node.Neighbours = val
}
// Update nodeinfo
if val := res.NodeInfo; val != nil {
node.Nodeinfo = val
node.Flags.Gateway = val.VPN
2016-03-20 16:25:33 +01:00
}
// Update statistics
if val := res.Statistics; val != nil {
2016-07-14 01:19:03 +02:00
// Update channel utilization if previous statistics are present
if node.Statistics != nil && node.Statistics.Wireless != nil && val.Wireless != nil {
val.Wireless.SetUtilization(node.Statistics.Wireless)
}
2016-05-29 21:41:58 +02:00
node.Statistics = val
}
2016-07-14 01:19:03 +02:00
return node
2016-05-29 21:41:58 +02:00
}
2016-06-16 18:50:43 +02:00
// GetNodesMini get meshviewer valide JSON
2016-06-16 18:03:45 +02:00
func (nodes *Nodes) GetNodesMini() *meshviewer.Nodes {
2016-05-29 21:41:58 +02:00
meshviewerNodes := &meshviewer.Nodes{
2016-06-16 18:03:45 +02:00
Version: 1,
2016-05-29 21:41:58 +02:00
List: make(map[string]*meshviewer.Node),
Timestamp: nodes.Timestamp,
}
2016-06-16 18:50:43 +02:00
for nodeID := range nodes.List {
2016-05-29 21:41:58 +02:00
2016-06-16 18:50:43 +02:00
node, _ := meshviewerNodes.List[nodeID]
nodeOrigin := nodes.List[nodeID]
2016-05-29 21:41:58 +02:00
if node == nil {
node = &meshviewer.Node{
2016-06-16 18:50:43 +02:00
Firstseen: nodeOrigin.Firstseen,
Lastseen: nodeOrigin.Lastseen,
Flags: nodeOrigin.Flags,
Nodeinfo: nodeOrigin.Nodeinfo,
2016-05-29 21:41:58 +02:00
}
meshviewerNodes.List[nodeID] = node
}
2016-06-16 18:50:43 +02:00
2016-07-13 16:50:59 +02:00
// Calculate Total
total := nodeOrigin.Statistics.Clients.Total
if total == 0 {
total = nodeOrigin.Statistics.Clients.Wifi24 + nodeOrigin.Statistics.Clients.Wifi5
}
2016-05-29 21:41:58 +02:00
node.Statistics = &meshviewer.Statistics{
2016-06-16 18:50:43 +02:00
NodeId: nodeOrigin.Statistics.NodeId,
Gateway: nodeOrigin.Statistics.Gateway,
RootFsUsage: nodeOrigin.Statistics.RootFsUsage,
LoadAverage: nodeOrigin.Statistics.LoadAverage,
Memory: nodeOrigin.Statistics.Memory,
Uptime: nodeOrigin.Statistics.Uptime,
Idletime: nodeOrigin.Statistics.Idletime,
Processes: nodeOrigin.Statistics.Processes,
MeshVpn: nodeOrigin.Statistics.MeshVpn,
Traffic: nodeOrigin.Statistics.Traffic,
2016-07-13 16:50:59 +02:00
Clients: total,
}
2016-03-20 16:25:33 +01:00
}
2016-05-29 21:41:58 +02:00
return meshviewerNodes
2015-12-29 14:05:47 +01:00
}
2016-03-20 18:30:44 +01:00
// Periodically saves the cached DB to json file
func (nodes *Nodes) worker() {
2016-05-21 13:11:29 +02:00
c := time.Tick(time.Second * time.Duration(nodes.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")
2016-03-20 18:30:44 +01:00
nodes.Timestamp = jsontime.Now()
2016-03-07 02:29:31 +01:00
nodes.Lock()
2016-05-29 21:41:58 +02:00
//
// set node as offline (without statistics)
2016-05-29 21:41:58 +02:00
for _, node := range nodes.List {
2016-07-14 14:13:26 +02:00
if node.Statistics != nil && nodes.Timestamp.After(node.Lastseen.Add(time.Second*time.Duration(10*nodes.config.Respondd.CollectInterval))) {
if node.Flags != nil {
node.Flags.Online = false
}
}
}
2016-03-20 18:30:44 +01:00
// serialize nodes
2016-06-16 18:03:45 +02:00
save(nodes, nodes.config.Nodes.NodesPath)
save(nodes.GetNodesMini(), nodes.config.Nodes.NodesMiniPath)
2016-03-20 18:30:44 +01:00
if path := nodes.config.Nodes.GraphsPath; path != "" {
2016-03-23 16:22:12 +01:00
save(nodes.BuildGraph(), path)
2016-03-07 12:05:53 +01:00
}
2016-03-20 18:30:44 +01:00
2016-03-07 02:29:31 +01:00
nodes.Unlock()
2015-12-29 14:05:47 +01:00
}
}
2016-07-22 22:16:01 +02:00
func (nodes *Nodes) GetStats() map[string]interface{} {
var nodesCount uint32
var clientsCount uint32
var clientsWifiCount uint32
var clientsWifi24Count uint32
var clientsWifi5Count uint32
nodes.Lock()
for _, node := range nodes.List {
if node.Flags.Online {
nodesCount += 1
if stats := node.Statistics; stats != nil {
clientsCount += stats.Clients.Total
clientsWifi24Count += stats.Clients.Wifi24
clientsWifi5Count += stats.Clients.Wifi5
clientsWifiCount += stats.Clients.Wifi
}
}
}
nodes.Unlock()
return map[string]interface{}{
"nodes": nodesCount,
"clients.total": clientsCount,
"clients.wifi": clientsWifiCount,
"clients.wifi24": clientsWifi24Count,
"clients.wifi5": clientsWifi5Count,
}
}
2016-03-20 18:30:44 +01:00
func (nodes *Nodes) load() {
path := nodes.config.Nodes.NodesPath
log.Println("loading", path)
2016-05-29 21:41:58 +02:00
if filedata, err := ioutil.ReadFile(path); err == nil {
2016-06-16 18:50:43 +02:00
if err = json.Unmarshal(filedata, nodes); err == nil {
2016-03-20 18:30:44 +01:00
log.Println("loaded", len(nodes.List), "nodes")
} else {
log.Println("failed to unmarshal nodes:", err)
}
} else {
log.Println("failed loading cached nodes:", err)
}
}
2016-03-07 02:29:31 +01:00
func save(input interface{}, outputFile string) {
data, err := json.Marshal(input)
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-03-20 18:30:44 +01:00
if err := ioutil.WriteFile(tmpFile, data, 0644); err != nil {
2016-02-19 11:30:42 +01:00
log.Panic(err)
}
2016-03-20 18:30:44 +01:00
if err := os.Rename(tmpFile, outputFile); err != nil {
2016-02-19 11:30:42 +01:00
log.Panic(err)
}
2015-12-29 14:05:47 +01:00
}