ctop/sort.go

106 lines
2.4 KiB
Go
Raw Normal View History

2016-12-30 03:22:25 +00:00
package main
import (
2017-02-19 23:23:17 +00:00
"fmt"
"regexp"
2017-02-07 03:33:09 +00:00
"github.com/bcicen/ctop/config"
2016-12-30 03:22:25 +00:00
)
2017-01-12 19:24:12 +00:00
type sortMethod func(c1, c2 *Container) bool
var stateMap = map[string]int{
"running": 3,
"paused": 2,
"exited": 1,
"created": 0,
"": 0,
}
2017-03-03 07:57:26 +00:00
var idSorter = func(c1, c2 *Container) bool { return c1.Id < c2.Id }
var nameSorter = func(c1, c2 *Container) bool { return c1.GetMeta("name") < c2.GetMeta("name") }
2017-02-23 01:32:35 +00:00
2017-01-12 19:24:12 +00:00
var Sorters = map[string]sortMethod{
2017-02-23 01:32:35 +00:00
"id": idSorter,
"name": nameSorter,
"cpu": func(c1, c2 *Container) bool {
// Use secondary sort method if equal values
2017-03-03 07:57:26 +00:00
if c1.CPUUtil == c2.CPUUtil {
2017-02-23 01:32:35 +00:00
return nameSorter(c1, c2)
}
2017-03-03 07:57:26 +00:00
return c1.CPUUtil > c2.CPUUtil
2017-02-23 01:32:35 +00:00
},
"mem": func(c1, c2 *Container) bool {
// Use secondary sort method if equal values
2017-03-03 07:57:26 +00:00
if c1.MemUsage == c2.MemUsage {
2017-02-23 01:32:35 +00:00
return nameSorter(c1, c2)
}
2017-03-03 07:57:26 +00:00
return c1.MemUsage > c2.MemUsage
2017-02-23 01:32:35 +00:00
},
"mem %": func(c1, c2 *Container) bool {
// Use secondary sort method if equal values
2017-03-03 07:57:26 +00:00
if c1.MemPercent == c2.MemPercent {
2017-02-23 01:32:35 +00:00
return nameSorter(c1, c2)
}
2017-03-03 07:57:26 +00:00
return c1.MemPercent > c2.MemPercent
2017-02-23 01:32:35 +00:00
},
"net": func(c1, c2 *Container) bool {
sum1 := sumNet(c1)
sum2 := sumNet(c2)
// Use secondary sort method if equal values
2017-02-23 01:32:35 +00:00
if sum1 == sum2 {
return nameSorter(c1, c2)
}
return sum1 > sum2
2017-02-23 01:32:35 +00:00
},
2017-02-22 05:20:37 +00:00
"state": func(c1, c2 *Container) bool {
// Use secondary sort method if equal values
c1state := c1.GetMeta("state")
c2state := c2.GetMeta("state")
if c1state == c2state {
return nameSorter(c1, c2)
}
return stateMap[c1state] > stateMap[c2state]
2017-02-22 05:20:37 +00:00
},
2017-01-12 19:24:12 +00:00
}
func SortFields() (fields []string) {
2017-01-12 19:24:12 +00:00
for k := range Sorters {
fields = append(fields, k)
2017-01-03 17:37:09 +00:00
}
return fields
2017-01-03 17:37:09 +00:00
}
2017-01-12 19:24:12 +00:00
type Containers []*Container
2016-12-30 22:17:46 +00:00
2017-01-12 19:24:12 +00:00
func (a Containers) Len() int { return len(a) }
func (a Containers) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a Containers) Less(i, j int) bool {
f := Sorters[config.GetVal("sortField")]
if config.GetSwitchVal("sortReversed") {
2017-01-12 19:48:29 +00:00
return f(a[j], a[i])
}
2017-01-12 19:24:12 +00:00
return f(a[i], a[j])
}
2017-01-10 21:56:49 +00:00
2017-02-19 23:23:17 +00:00
func (a Containers) Filter() (filtered []*Container) {
filter := config.GetVal("filterStr")
re := regexp.MustCompile(fmt.Sprintf(".*%s", filter))
for _, c := range a {
// Apply name filter
if re.FindAllString(c.GetMeta("name"), 1) == nil {
2017-02-19 23:23:17 +00:00
continue
}
// Apply state filter
if !config.GetSwitchVal("allContainers") && c.GetMeta("state") != "running" {
2017-02-19 23:23:17 +00:00
continue
}
filtered = append(filtered, c)
}
return filtered
}
2017-03-03 07:57:26 +00:00
func sumNet(c *Container) int64 { return c.NetRx + c.NetTx }