From 5062b71318363582b2cba77b156039d51a98f238 Mon Sep 17 00:00:00 2001 From: Julian Kornberger Date: Sun, 29 Jan 2017 20:46:06 +0100 Subject: [PATCH] Clean up timestamp usage --- meshviewer/meshviewer.go | 8 ++++---- models/nodes.go | 22 ++++++++-------------- 2 files changed, 12 insertions(+), 18 deletions(-) diff --git a/meshviewer/meshviewer.go b/meshviewer/meshviewer.go index b721efa..35fcfb7 100644 --- a/meshviewer/meshviewer.go +++ b/meshviewer/meshviewer.go @@ -25,16 +25,16 @@ type Flags struct { // i.e. https://github.com/ffnord/meshviewer/tree/master type NodesV1 struct { Version int `json:"version"` - Timestamp jsontime.Time `json:"timestamp"` - List map[string]*Node `json:"nodes"` // the current nodemap, indexed by node ID + Timestamp jsontime.Time `json:"timestamp"` // Timestamp of the generation + List map[string]*Node `json:"nodes"` // the current nodemap, indexed by node ID } // NodesV2 struct, to support new version of meshviewer (which are in legacy develop branch or newer) // i.e. https://github.com/ffnord/meshviewer/tree/dev or https://github.com/ffrgb/meshviewer/tree/develop type NodesV2 struct { Version int `json:"version"` - Timestamp jsontime.Time `json:"timestamp"` - List []*Node `json:"nodes"` // the current nodemap, as array + Timestamp jsontime.Time `json:"timestamp"` // Timestamp of the generation + List []*Node `json:"nodes"` // the current nodemap, as array } // Statistics a meshviewer spezifisch struct, diffrent from respondd diff --git a/models/nodes.go b/models/nodes.go index 3190132..fa43be9 100644 --- a/models/nodes.go +++ b/models/nodes.go @@ -14,10 +14,8 @@ import ( // Nodes struct: cache DB of Node's structs type Nodes struct { - Version int `json:"version"` - Timestamp jsontime.Time `json:"timestamp"` - List map[string]*Node `json:"nodes"` // the current nodemap, indexed by node ID - config *Config + List map[string]*Node `json:"nodes"` // the current nodemap, indexed by node ID + config *Config sync.RWMutex } @@ -31,11 +29,7 @@ func NewNodes(config *Config) *Nodes { if config.Nodes.StatePath != "" { nodes.load() } - /** - * Version '-1' because the nodes.json would not be defined, - * it would be change with the change of the respondd application on gluon - */ - nodes.Version = -1 + return nodes } @@ -92,7 +86,7 @@ func (nodes *Nodes) GetNodesV1() *meshviewer.NodesV1 { meshviewerNodes := &meshviewer.NodesV1{ Version: 1, List: make(map[string]*meshviewer.Node), - Timestamp: nodes.Timestamp, + Timestamp: jsontime.Now(), } for nodeID := range nodes.List { @@ -118,7 +112,7 @@ func (nodes *Nodes) GetNodesV1() *meshviewer.NodesV1 { func (nodes *Nodes) GetNodesV2() *meshviewer.NodesV2 { meshviewerNodes := &meshviewer.NodesV2{ Version: 2, - Timestamp: nodes.Timestamp, + Timestamp: jsontime.Now(), } for nodeID := range nodes.List { @@ -150,17 +144,17 @@ func (nodes *Nodes) worker() { // Expires nodes and set nodes offline func (nodes *Nodes) expire() { - nodes.Timestamp = jsontime.Now() + now := jsontime.Now() // Nodes last seen before expireTime will be removed pruneAfter := nodes.config.Nodes.PruneAfter.Duration if pruneAfter == 0 { pruneAfter = time.Hour * 24 * 7 // our default } - expireTime := nodes.Timestamp.Add(-pruneAfter) + expireTime := now.Add(-pruneAfter) // Nodes last seen before offlineTime are changed to 'offline' - offlineTime := nodes.Timestamp.Add(-time.Minute * 10) + offlineTime := now.Add(-time.Minute * 10) // Locking foo nodes.Lock()