123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- package main
- import (
- "context"
- "fmt"
- "sort"
- "strings"
- "sync"
- "github.com/Jguer/yay/v11/pkg/db"
- "github.com/Jguer/yay/v11/pkg/dep"
- "github.com/Jguer/yay/v11/pkg/intrange"
- "github.com/Jguer/yay/v11/pkg/multierror"
- "github.com/Jguer/yay/v11/pkg/query"
- "github.com/Jguer/yay/v11/pkg/settings"
- "github.com/Jguer/yay/v11/pkg/stringset"
- "github.com/Jguer/yay/v11/pkg/text"
- "github.com/Jguer/yay/v11/pkg/topo"
- "github.com/Jguer/yay/v11/pkg/upgrade"
- aur "github.com/Jguer/aur"
- "github.com/Jguer/aur/metadata"
- alpm "github.com/Jguer/go-alpm/v2"
- "github.com/leonelquinteros/gotext"
- )
- func filterUpdateList(list []db.Upgrade, filter upgrade.Filter) []db.Upgrade {
- tmp := list[:0]
- for _, pkg := range list {
- if filter(pkg) {
- tmp = append(tmp, pkg)
- }
- }
- return tmp
- }
- // upList returns lists of packages to upgrade from each source.
- func upList(ctx context.Context, aurCache settings.AURCache,
- warnings *query.AURWarnings, dbExecutor db.Executor, enableDowngrade bool,
- filter upgrade.Filter,
- ) (aurUp, repoUp upgrade.UpSlice, err error) {
- remote := dbExecutor.InstalledRemotePackages()
- remoteNames := dbExecutor.InstalledRemotePackageNames()
- var (
- wg sync.WaitGroup
- develUp upgrade.UpSlice
- repoSlice []db.Upgrade
- errs multierror.MultiError
- )
- aurdata := make(map[string]*aur.Pkg)
- for _, pkg := range remote {
- if pkg.ShouldIgnore() {
- warnings.Ignore.Set(pkg.Name())
- }
- }
- if config.Runtime.Mode.AtLeastRepo() {
- text.OperationInfoln(gotext.Get("Searching databases for updates..."))
- wg.Add(1)
- go func() {
- repoSlice, err = dbExecutor.RepoUpgrades(enableDowngrade)
- errs.Add(err)
- wg.Done()
- }()
- }
- if config.Runtime.Mode.AtLeastAUR() {
- text.OperationInfoln(gotext.Get("Searching AUR for updates..."))
- var _aurdata []aur.Pkg
- if aurCache != nil {
- _aurdata, err = aurCache.Get(ctx, &metadata.AURQuery{Needles: remoteNames, By: aur.Name})
- } else {
- _aurdata, err = query.AURInfo(ctx, config.Runtime.AURClient, remoteNames, warnings, config.RequestSplitN)
- }
- errs.Add(err)
- if err == nil {
- for i := range _aurdata {
- pkg := &_aurdata[i]
- aurdata[pkg.Name] = pkg
- }
- wg.Add(1)
- go func() {
- aurUp = upgrade.UpAUR(remote, aurdata, config.TimeUpdate)
- wg.Done()
- }()
- if config.Devel {
- text.OperationInfoln(gotext.Get("Checking development packages..."))
- wg.Add(1)
- go func() {
- develUp = upgrade.UpDevel(ctx, remote, aurdata, config.Runtime.VCSStore)
- config.Runtime.VCSStore.CleanOrphans(remote)
- wg.Done()
- }()
- }
- }
- }
- wg.Wait()
- printLocalNewerThanAUR(remote, aurdata)
- names := make(stringset.StringSet)
- for _, up := range develUp.Up {
- names.Set(up.Name)
- }
- for _, up := range aurUp.Up {
- if !names.Get(up.Name) {
- develUp.Up = append(develUp.Up, up)
- }
- }
- aurUp = develUp
- aurUp.Repos = []string{"aur", "devel"}
- repoUp = upgrade.UpSlice{Up: repoSlice, Repos: dbExecutor.Repos()}
- aurUp.Up = filterUpdateList(aurUp.Up, filter)
- repoUp.Up = filterUpdateList(repoUp.Up, filter)
- return aurUp, repoUp, errs.Return()
- }
- func printLocalNewerThanAUR(
- remote map[string]alpm.IPackage, aurdata map[string]*aur.Pkg,
- ) {
- for name, pkg := range remote {
- aurPkg, ok := aurdata[name]
- if !ok {
- continue
- }
- left, right := upgrade.GetVersionDiff(pkg.Version(), aurPkg.Version)
- if !isDevelPackage(pkg) && db.VerCmp(pkg.Version(), aurPkg.Version) > 0 {
- text.Warnln(gotext.Get("%s: local (%s) is newer than AUR (%s)",
- text.Cyan(name),
- left, right,
- ))
- }
- }
- }
- func isDevelName(name string) bool {
- for _, suffix := range []string{"git", "svn", "hg", "bzr", "nightly", "insiders-bin"} {
- if strings.HasSuffix(name, "-"+suffix) {
- return true
- }
- }
- return strings.Contains(name, "-always-")
- }
- func isDevelPackage(pkg alpm.IPackage) bool {
- return isDevelName(pkg.Name()) || isDevelName(pkg.Base())
- }
- // upgradePkgsMenu handles updating the cache and installing updates.
- func upgradePkgsMenu(aurUp, repoUp upgrade.UpSlice) (stringset.StringSet, []string, error) {
- ignore := make(stringset.StringSet)
- targets := []string{}
- allUpLen := len(repoUp.Up) + len(aurUp.Up)
- if allUpLen == 0 {
- return ignore, nil, nil
- }
- if !config.UpgradeMenu {
- for _, pkg := range aurUp.Up {
- targets = append(targets, pkg.Repository+"/"+pkg.Name)
- }
- return ignore, targets, nil
- }
- sort.Sort(repoUp)
- sort.Sort(aurUp)
- allUp := upgrade.UpSlice{Up: append(repoUp.Up, aurUp.Up...), Repos: append(repoUp.Repos, aurUp.Repos...)}
- fmt.Printf("%s"+text.Bold(" %d ")+"%s\n", text.Bold(text.Cyan("::")), allUpLen, text.Bold(gotext.Get("Packages to upgrade.")))
- allUp.Print()
- text.Infoln(gotext.Get("Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"))
- numbers, err := text.GetInput(config.AnswerUpgrade, settings.NoConfirm)
- if err != nil {
- return nil, nil, err
- }
- // upgrade menu asks you which packages to NOT upgrade so in this case
- // include and exclude are kind of swapped
- include, exclude, otherInclude, otherExclude := intrange.ParseNumberMenu(numbers)
- isInclude := len(exclude) == 0 && len(otherExclude) == 0
- for i, pkg := range repoUp.Up {
- if isInclude && otherInclude.Get(pkg.Repository) {
- ignore.Set(pkg.Name)
- }
- if isInclude && !include.Get(len(repoUp.Up)-i+len(aurUp.Up)) {
- targets = append(targets, pkg.Repository+"/"+pkg.Name)
- continue
- }
- if !isInclude && (exclude.Get(len(repoUp.Up)-i+len(aurUp.Up)) || otherExclude.Get(pkg.Repository)) {
- targets = append(targets, pkg.Repository+"/"+pkg.Name)
- continue
- }
- ignore.Set(pkg.Name)
- }
- for i, pkg := range aurUp.Up {
- if isInclude && otherInclude.Get(pkg.Repository) {
- continue
- }
- if isInclude && !include.Get(len(aurUp.Up)-i) {
- targets = append(targets, "aur/"+pkg.Name)
- }
- if !isInclude && (exclude.Get(len(aurUp.Up)-i) || otherExclude.Get(pkg.Repository)) {
- targets = append(targets, "aur/"+pkg.Name)
- }
- }
- return ignore, targets, err
- }
- // Targets for sys upgrade.
- func sysupgradeTargets(ctx context.Context, dbExecutor db.Executor,
- enableDowngrade bool,
- ) (stringset.StringSet, []string, error) {
- warnings := query.NewWarnings()
- aurUp, repoUp, err := upList(ctx, nil, warnings, dbExecutor, enableDowngrade,
- func(upgrade.Upgrade) bool { return true })
- if err != nil {
- return nil, nil, err
- }
- warnings.Print()
- return upgradePkgsMenu(aurUp, repoUp)
- }
- // Targets for sys upgrade.
- func sysupgradeTargetsV2(ctx context.Context,
- aurCache settings.AURCache,
- dbExecutor db.Executor,
- graph *topo.Graph[string, *dep.InstallInfo],
- enableDowngrade bool,
- ) (*topo.Graph[string, *dep.InstallInfo], stringset.StringSet, error) {
- warnings := query.NewWarnings()
- aurUp, repoUp, err := upList(ctx, aurCache, warnings, dbExecutor, enableDowngrade,
- func(upgrade.Upgrade) bool { return true })
- if err != nil {
- return graph, nil, err
- }
- warnings.Print()
- ignore := make(stringset.StringSet)
- allUpLen := len(repoUp.Up) + len(aurUp.Up)
- if allUpLen == 0 {
- return graph, ignore, nil
- }
- sort.Sort(repoUp)
- sort.Sort(aurUp)
- allUp := upgrade.UpSlice{Up: append(repoUp.Up, aurUp.Up...), Repos: append(repoUp.Repos, aurUp.Repos...)}
- fmt.Printf("%s"+text.Bold(" %d ")+"%s\n", text.Bold(text.Cyan("::")), allUpLen, text.Bold(gotext.Get("Packages to upgrade.")))
- allUp.Print()
- text.Infoln(gotext.Get("Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"))
- numbers, err := text.GetInput(config.AnswerUpgrade, settings.NoConfirm)
- if err != nil {
- return nil, nil, err
- }
- // upgrade menu asks you which packages to NOT upgrade so in this case
- // include and exclude are kind of swapped
- include, exclude, otherInclude, otherExclude := intrange.ParseNumberMenu(numbers)
- isInclude := len(exclude) == 0 && len(otherExclude) == 0
- for i := range repoUp.Up {
- pkg := &repoUp.Up[i]
- if isInclude && otherInclude.Get(pkg.Repository) {
- ignore.Set(pkg.Name)
- }
- if isInclude && !include.Get(len(repoUp.Up)-i+len(aurUp.Up)) {
- dep.AddUpgradeToGraph(pkg, graph)
- continue
- }
- if !isInclude && (exclude.Get(len(repoUp.Up)-i+len(aurUp.Up)) || otherExclude.Get(pkg.Repository)) {
- dep.AddUpgradeToGraph(pkg, graph)
- continue
- }
- ignore.Set(pkg.Name)
- }
- for i := range aurUp.Up {
- pkg := &aurUp.Up[i]
- if isInclude && otherInclude.Get(pkg.Repository) {
- continue
- }
- if isInclude && !include.Get(len(aurUp.Up)-i) {
- dep.AddUpgradeToGraph(pkg, graph)
- }
- if !isInclude && (exclude.Get(len(aurUp.Up)-i) || otherExclude.Get(pkg.Repository)) {
- dep.AddUpgradeToGraph(pkg, graph)
- }
- }
- return graph, ignore, err
- }
|