blob: 11ad378ac5b238fc77fa63c39c1ca2e649280c0e [file] [log] [blame]
Jiri Simsad7616c92015-03-24 23:44:30 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Robin Thellendac59e972014-08-19 18:26:11 -07005package stats
6
7import (
8 "sync"
9 "time"
10)
11
12// NewFloat creates a new Float StatsObject with the given name and
13// returns a pointer to it.
14func NewFloat(name string) *Float {
15 lock.Lock()
16 defer lock.Unlock()
17
18 node := findNodeLocked(name, true)
19 f := Float{value: 0}
20 node.object = &f
21 return &f
22}
23
24// Float implements the StatsObject interface.
25type Float struct {
26 mu sync.RWMutex
27 lastUpdate time.Time
28 value float64
29}
30
31// Set sets the value of the object.
32func (f *Float) Set(value float64) {
33 f.mu.Lock()
34 defer f.mu.Unlock()
35 f.lastUpdate = time.Now()
36 f.value = value
37}
38
39// Incr increments the value of the object.
40func (f *Float) Incr(delta float64) {
41 f.mu.Lock()
42 defer f.mu.Unlock()
43 f.value += delta
44 f.lastUpdate = time.Now()
45}
46
47// LastUpdate returns the time at which the object was last updated.
Robin Thellende6dcc5d2014-09-17 15:48:00 -070048func (f *Float) LastUpdate() time.Time {
Robin Thellendac59e972014-08-19 18:26:11 -070049 f.mu.RLock()
50 defer f.mu.RUnlock()
51 return f.lastUpdate
52}
53
54// Value returns the current value of the object.
Robin Thellende6dcc5d2014-09-17 15:48:00 -070055func (f *Float) Value() interface{} {
Robin Thellendac59e972014-08-19 18:26:11 -070056 f.mu.RLock()
57 defer f.mu.RUnlock()
58 return f.value
59}