repolist/scan.go

83 lines
1.5 KiB
Go
Raw Normal View History

2024-02-17 08:39:55 -06:00
package repolist
import (
"fmt"
2024-02-19 19:43:21 -06:00
"strconv"
2024-02-17 08:39:55 -06:00
"strings"
"go.wit.com/log"
)
2024-02-17 14:22:24 -06:00
func (r *RepoList) SetAutoScan(b bool) {
me.autoScan = b
}
2024-02-23 09:02:51 -06:00
func (r *RepoList) RegisterHideFunction(f func(*RepoRow)) {
2024-02-19 19:43:21 -06:00
me.hideFunction = f
}
2024-02-17 14:22:24 -06:00
func (r *RepoList) ScanRepositories() (int, string) {
2024-02-17 08:39:55 -06:00
var i int
2024-02-19 19:43:21 -06:00
var shown int
2024-02-23 14:25:00 -06:00
var total int
2024-02-18 15:09:35 -06:00
t := TimeFunction(func() {
2024-02-17 08:39:55 -06:00
for _, repo := range me.allrepos {
i += 1
2024-02-23 14:25:00 -06:00
changed := repo.NewScan()
total += changed
2024-02-19 19:43:21 -06:00
if me.hideFunction == nil {
// application didn't register a hide function
} else {
me.hideFunction(repo)
}
}
var hidden int
for _, repo := range me.allrepos {
if repo.Hidden() {
hidden += 1
} else {
shown += 1
}
2024-02-17 08:39:55 -06:00
}
})
s := fmt.Sprint(t)
2024-02-19 19:43:21 -06:00
tmp := strconv.Itoa(shown) + " repos shown"
log.Info("Setting shownCount to", tmp)
me.shownCount.SetText(tmp)
2024-02-20 14:45:09 -06:00
me.duration.SetText(s)
2024-02-19 19:43:21 -06:00
2024-02-23 14:25:00 -06:00
log.Info("Scanned", i, "repositories.", total, "changes in", s)
2024-02-17 08:39:55 -06:00
return i, s
}
2024-02-23 14:25:00 -06:00
func (r *RepoRow) NewScan() int {
var changed int = 0
2024-02-17 15:48:56 -06:00
if r.Status == nil {
log.Warn("repo.Status = nil. not initialized for some reason")
2024-02-23 14:25:00 -06:00
return changed
2024-02-17 08:39:55 -06:00
}
// run the repostatus update
2024-02-20 14:45:09 -06:00
r.Status.Update()
2024-02-17 08:39:55 -06:00
// print out whatever changes have happened
2024-02-17 15:48:56 -06:00
if c, ok := r.Status.Changed(); ok {
2024-02-24 11:55:29 -06:00
log.Log(REPOWARN, "something finally changed")
2024-02-17 08:39:55 -06:00
c := strings.TrimSpace(c)
for _, line := range strings.Split(c, "\n") {
2024-02-17 15:48:56 -06:00
log.Info(r.Status.Path(), line)
2024-02-23 14:25:00 -06:00
changed += 1
2024-02-17 08:39:55 -06:00
}
}
2024-02-18 17:56:25 -06:00
// hide or show repos based on the checkboxes
if me.autoHidePerfect {
if r.IsPerfect() {
2024-02-17 08:39:55 -06:00
r.Hide()
} else {
r.Show()
2024-02-17 08:39:55 -06:00
}
}
2024-02-23 14:25:00 -06:00
return changed
2024-02-17 08:39:55 -06:00
}