2018-02-19 15:25:02 +08:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
2018-02-25 13:35:57 +08:00
|
|
|
"fmt"
|
2019-01-01 08:55:50 +08:00
|
|
|
"image"
|
2018-03-04 09:05:52 +08:00
|
|
|
"sort"
|
2019-01-20 12:34:19 +08:00
|
|
|
"sync"
|
2018-02-19 15:25:02 +08:00
|
|
|
"time"
|
|
|
|
|
2019-03-08 15:15:41 +08:00
|
|
|
ui "github.com/gizak/termui/v3"
|
2019-03-01 08:29:52 +08:00
|
|
|
|
|
|
|
"github.com/cjbassi/gotop/src/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TempScale int
|
|
|
|
|
|
|
|
const (
|
|
|
|
Celcius TempScale = 0
|
|
|
|
Fahrenheit = 1
|
2018-02-19 15:25:02 +08:00
|
|
|
)
|
|
|
|
|
2019-03-01 08:29:52 +08:00
|
|
|
type TempWidget struct {
|
|
|
|
*ui.Block // inherits from Block instead of a premade Widget
|
|
|
|
updateInterval time.Duration
|
|
|
|
Data map[string]int
|
|
|
|
TempThreshold int
|
|
|
|
TempLowColor ui.Color
|
|
|
|
TempHighColor ui.Color
|
|
|
|
TempScale TempScale
|
2018-02-19 15:25:02 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 08:29:52 +08:00
|
|
|
func NewTempWidget(renderLock *sync.RWMutex, tempScale TempScale) *TempWidget {
|
|
|
|
self := &TempWidget{
|
|
|
|
Block: ui.NewBlock(),
|
|
|
|
updateInterval: time.Second * 5,
|
|
|
|
Data: make(map[string]int),
|
|
|
|
TempThreshold: 80,
|
|
|
|
TempScale: tempScale,
|
2018-02-25 13:35:57 +08:00
|
|
|
}
|
2019-01-01 08:55:50 +08:00
|
|
|
self.Title = " Temperatures "
|
2018-02-19 15:25:02 +08:00
|
|
|
|
2019-03-01 08:29:52 +08:00
|
|
|
if tempScale == Fahrenheit {
|
|
|
|
self.TempThreshold = utils.CelsiusToFahrenheit(self.TempThreshold)
|
2018-11-14 01:29:09 +08:00
|
|
|
}
|
|
|
|
|
2018-04-13 11:00:34 +08:00
|
|
|
self.update()
|
|
|
|
|
2018-02-19 15:25:02 +08:00
|
|
|
go func() {
|
2019-03-01 08:29:52 +08:00
|
|
|
for range time.NewTicker(self.updateInterval).C {
|
2019-01-20 12:34:19 +08:00
|
|
|
renderLock.RLock()
|
2018-03-28 05:27:23 +08:00
|
|
|
self.update()
|
2019-01-20 12:34:19 +08:00
|
|
|
renderLock.RUnlock()
|
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
|
|
|
}
|
|
|
|
|
2019-03-01 08:29:52 +08:00
|
|
|
// Custom Draw method instead of inheriting from a generic Widget.
|
|
|
|
func (self *TempWidget) Draw(buf *ui.Buffer) {
|
2019-01-01 08:55:50 +08:00
|
|
|
self.Block.Draw(buf)
|
2018-02-25 13:35:57 +08:00
|
|
|
|
2018-03-04 09:05:52 +08:00
|
|
|
var keys []string
|
2018-05-11 11:32:23 +08:00
|
|
|
for key := range self.Data {
|
|
|
|
keys = append(keys, key)
|
2018-03-04 09:05:52 +08:00
|
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
|
|
|
|
for y, key := range keys {
|
2019-01-01 08:55:50 +08:00
|
|
|
if y+1 > self.Inner.Dy() {
|
2018-02-25 13:35:57 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2019-03-01 08:29:52 +08:00
|
|
|
var fg ui.Color
|
|
|
|
if self.Data[key] < self.TempThreshold {
|
|
|
|
fg = self.TempLowColor
|
|
|
|
} else {
|
|
|
|
fg = self.TempHighColor
|
2018-02-25 13:35:57 +08:00
|
|
|
}
|
|
|
|
|
2019-01-01 08:55:50 +08:00
|
|
|
s := ui.TrimString(key, (self.Inner.Dx() - 4))
|
|
|
|
buf.SetString(s,
|
|
|
|
ui.Theme.Default,
|
2019-01-15 11:47:44 +08:00
|
|
|
image.Pt(self.Inner.Min.X, self.Inner.Min.Y+y),
|
2019-01-01 08:55:50 +08:00
|
|
|
)
|
2019-03-01 08:29:52 +08:00
|
|
|
|
|
|
|
switch self.TempScale {
|
|
|
|
case Fahrenheit:
|
2019-01-01 08:55:50 +08:00
|
|
|
buf.SetString(
|
|
|
|
fmt.Sprintf("%3dF", self.Data[key]),
|
2019-01-24 13:23:35 +08:00
|
|
|
ui.NewStyle(fg),
|
2019-01-27 06:01:20 +08:00
|
|
|
image.Pt(self.Inner.Max.X-4, self.Inner.Min.Y+y),
|
2019-01-01 08:55:50 +08:00
|
|
|
)
|
2019-03-01 08:29:52 +08:00
|
|
|
case Celcius:
|
2019-01-01 08:55:50 +08:00
|
|
|
buf.SetString(
|
|
|
|
fmt.Sprintf("%3dC", self.Data[key]),
|
2019-01-24 13:23:35 +08:00
|
|
|
ui.NewStyle(fg),
|
2019-01-15 11:47:44 +08:00
|
|
|
image.Pt(self.Inner.Max.X-4, self.Inner.Min.Y+y),
|
2019-01-01 08:55:50 +08:00
|
|
|
)
|
2018-11-14 01:29:09 +08:00
|
|
|
}
|
2018-02-25 13:35:57 +08:00
|
|
|
}
|
|
|
|
}
|