2018-02-19 15:25:02 +08:00
|
|
|
package widgets
|
|
|
|
|
2018-02-25 13:35:57 +08:00
|
|
|
// Temp is too customized to inherit from a generic widget so we create a customized one here.
|
|
|
|
// Temp defines its own Buffer method directly.
|
|
|
|
|
2018-02-19 15:25:02 +08:00
|
|
|
import (
|
2018-02-25 13:35:57 +08:00
|
|
|
"fmt"
|
2018-03-04 09:05:52 +08:00
|
|
|
"sort"
|
2018-02-19 15:25:02 +08:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2018-03-30 06:48:43 +08:00
|
|
|
ui "github.com/cjbassi/termui"
|
2018-03-04 09:05:52 +08:00
|
|
|
psHost "github.com/shirou/gopsutil/host"
|
2018-02-19 15:25:02 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type Temp struct {
|
2018-02-25 13:35:57 +08:00
|
|
|
*ui.Block
|
2018-03-04 09:05:52 +08:00
|
|
|
interval time.Duration
|
|
|
|
Data map[string]int
|
|
|
|
Threshold int
|
|
|
|
TempLow ui.Color
|
|
|
|
TempHigh ui.Color
|
2018-02-19 15:25:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewTemp() *Temp {
|
2018-03-28 05:27:23 +08:00
|
|
|
self := &Temp{
|
2018-02-25 13:35:57 +08:00
|
|
|
Block: ui.NewBlock(),
|
|
|
|
interval: time.Second * 5,
|
2018-03-04 09:05:52 +08:00
|
|
|
Data: make(map[string]int),
|
|
|
|
Threshold: 80, // temp at which color should change
|
2018-02-25 13:35:57 +08:00
|
|
|
}
|
2018-03-28 05:27:23 +08:00
|
|
|
self.Label = "Temperatures"
|
2018-02-19 15:25:02 +08:00
|
|
|
|
2018-04-13 11:00:34 +08:00
|
|
|
self.update()
|
|
|
|
|
2018-03-28 05:27:23 +08:00
|
|
|
ticker := time.NewTicker(self.interval)
|
2018-02-19 15:25:02 +08:00
|
|
|
go func() {
|
|
|
|
for range ticker.C {
|
2018-03-28 05:27:23 +08:00
|
|
|
self.update()
|
2018-02-19 15:25:02 +08:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2018-03-28 05:27:23 +08:00
|
|
|
return self
|
2018-02-19 15:25:02 +08:00
|
|
|
}
|
|
|
|
|
2018-03-28 05:27:23 +08:00
|
|
|
func (self *Temp) update() {
|
2018-03-04 09:05:52 +08:00
|
|
|
sensors, _ := psHost.SensorsTemperatures()
|
|
|
|
for _, sensor := range sensors {
|
2018-02-19 15:25:02 +08:00
|
|
|
// only sensors with input in their name are giving us live temp info
|
2018-03-04 09:05:52 +08:00
|
|
|
if strings.Contains(sensor.SensorKey, "input") {
|
2018-02-19 15:25:02 +08:00
|
|
|
// removes '_input' from the end of the sensor name
|
2018-03-04 09:05:52 +08:00
|
|
|
label := sensor.SensorKey[:strings.Index(sensor.SensorKey, "_input")]
|
2018-03-28 05:27:23 +08:00
|
|
|
self.Data[label] = int(sensor.Temperature)
|
2018-02-19 15:25:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-25 13:35:57 +08:00
|
|
|
|
|
|
|
// Buffer implements ui.Bufferer interface.
|
2018-03-28 05:27:23 +08:00
|
|
|
func (self *Temp) Buffer() *ui.Buffer {
|
|
|
|
buf := self.Block.Buffer()
|
2018-02-25 13:35:57 +08:00
|
|
|
|
2018-03-04 09:05:52 +08:00
|
|
|
var keys []string
|
2018-03-28 05:27:23 +08:00
|
|
|
for k := range self.Data {
|
2018-03-04 09:05:52 +08:00
|
|
|
keys = append(keys, k)
|
|
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
|
|
|
|
for y, key := range keys {
|
2018-03-28 05:27:23 +08:00
|
|
|
if y+1 > self.Y {
|
2018-02-25 13:35:57 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2018-03-28 05:27:23 +08:00
|
|
|
fg := self.TempLow
|
|
|
|
if self.Data[key] >= self.Threshold {
|
|
|
|
fg = self.TempHigh
|
2018-02-25 13:35:57 +08:00
|
|
|
}
|
|
|
|
|
2018-03-28 05:27:23 +08:00
|
|
|
s := ui.MaxString(key, (self.X - 4))
|
|
|
|
buf.SetString(1, y+1, s, self.Fg, self.Bg)
|
|
|
|
buf.SetString(self.X-2, y+1, fmt.Sprintf("%dC", self.Data[key]), fg, self.Bg)
|
2018-03-04 09:05:52 +08:00
|
|
|
|
2018-02-25 13:35:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return buf
|
|
|
|
}
|