|
@@ -3,23 +3,21 @@ package main
|
|
|
import (
|
|
|
"context"
|
|
|
"fmt"
|
|
|
+ "os"
|
|
|
"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"
|
|
|
)
|
|
@@ -27,9 +25,10 @@ import (
|
|
|
func filterUpdateList(list []db.Upgrade, filter upgrade.Filter) []db.Upgrade {
|
|
|
tmp := list[:0]
|
|
|
|
|
|
- for _, pkg := range list {
|
|
|
- if filter(pkg) {
|
|
|
- tmp = append(tmp, pkg)
|
|
|
+ for i := range list {
|
|
|
+ up := &list[i]
|
|
|
+ if filter(up) {
|
|
|
+ tmp = append(tmp, *up)
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -37,7 +36,7 @@ func filterUpdateList(list []db.Upgrade, filter upgrade.Filter) []db.Upgrade {
|
|
|
}
|
|
|
|
|
|
// upList returns lists of packages to upgrade from each source.
|
|
|
-func upList(ctx context.Context, aurCache settings.AURCache,
|
|
|
+func upList(ctx context.Context,
|
|
|
warnings *query.AURWarnings, dbExecutor db.Executor, enableDowngrade bool,
|
|
|
filter upgrade.Filter,
|
|
|
) (aurUp, repoUp upgrade.UpSlice, err error) {
|
|
@@ -45,10 +44,10 @@ func upList(ctx context.Context, aurCache settings.AURCache,
|
|
|
remoteNames := dbExecutor.InstalledRemotePackageNames()
|
|
|
|
|
|
var (
|
|
|
- wg sync.WaitGroup
|
|
|
- develUp upgrade.UpSlice
|
|
|
- repoSlice []db.Upgrade
|
|
|
- errs multierror.MultiError
|
|
|
+ wg sync.WaitGroup
|
|
|
+ develUp upgrade.UpSlice
|
|
|
+ syncUpgrades map[string]db.SyncUpgrade
|
|
|
+ errs multierror.MultiError
|
|
|
)
|
|
|
|
|
|
aurdata := make(map[string]*aur.Pkg)
|
|
@@ -64,7 +63,7 @@ func upList(ctx context.Context, aurCache settings.AURCache,
|
|
|
wg.Add(1)
|
|
|
|
|
|
go func() {
|
|
|
- repoSlice, err = dbExecutor.RepoUpgrades(enableDowngrade)
|
|
|
+ syncUpgrades, err = dbExecutor.SyncUpgrades(enableDowngrade)
|
|
|
errs.Add(err)
|
|
|
wg.Done()
|
|
|
}()
|
|
@@ -74,11 +73,7 @@ func upList(ctx context.Context, aurCache settings.AURCache,
|
|
|
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)
|
|
|
- }
|
|
|
+ _aurdata, err = query.AURInfo(ctx, config.Runtime.AURClient, remoteNames, warnings, config.RequestSplitN)
|
|
|
|
|
|
errs.Add(err)
|
|
|
|
|
@@ -129,7 +124,25 @@ func upList(ctx context.Context, aurCache settings.AURCache,
|
|
|
aurUp = develUp
|
|
|
aurUp.Repos = []string{"aur", "devel"}
|
|
|
|
|
|
- repoUp = upgrade.UpSlice{Up: repoSlice, Repos: dbExecutor.Repos()}
|
|
|
+ repoUp = upgrade.UpSlice{
|
|
|
+ Up: make([]db.Upgrade, 0, len(syncUpgrades)),
|
|
|
+ Repos: dbExecutor.Repos(),
|
|
|
+ }
|
|
|
+ for _, up := range syncUpgrades {
|
|
|
+ dbUp := db.Upgrade{
|
|
|
+ Name: up.Package.Name(),
|
|
|
+ RemoteVersion: up.Package.Version(),
|
|
|
+ Repository: up.Package.DB().Name(),
|
|
|
+ Base: up.Package.Base(),
|
|
|
+ LocalVersion: up.LocalVersion,
|
|
|
+ Reason: up.Reason,
|
|
|
+ }
|
|
|
+ if filter != nil && !filter(&dbUp) {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
+ repoUp.Up = append(repoUp.Up, dbUp)
|
|
|
+ }
|
|
|
|
|
|
aurUp.Up = filterUpdateList(aurUp.Up, filter)
|
|
|
repoUp.Up = filterUpdateList(repoUp.Up, filter)
|
|
@@ -195,11 +208,11 @@ func upgradePkgsMenu(aurUp, repoUp upgrade.UpSlice) (stringset.StringSet, []stri
|
|
|
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()
|
|
|
+ allUp.Print(config.Runtime.Logger)
|
|
|
|
|
|
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)
|
|
|
+ numbers, err := text.GetInput(os.Stdin, config.AnswerUpgrade, settings.NoConfirm)
|
|
|
if err != nil {
|
|
|
return nil, nil, err
|
|
|
}
|
|
@@ -251,8 +264,8 @@ func sysupgradeTargets(ctx context.Context, dbExecutor db.Executor,
|
|
|
) (stringset.StringSet, []string, error) {
|
|
|
warnings := query.NewWarnings()
|
|
|
|
|
|
- aurUp, repoUp, err := upList(ctx, nil, warnings, dbExecutor, enableDowngrade,
|
|
|
- func(upgrade.Upgrade) bool { return true })
|
|
|
+ aurUp, repoUp, err := upList(ctx, warnings, dbExecutor, enableDowngrade,
|
|
|
+ func(*upgrade.Upgrade) bool { return true })
|
|
|
if err != nil {
|
|
|
return nil, nil, err
|
|
|
}
|
|
@@ -261,85 +274,3 @@ func sysupgradeTargets(ctx context.Context, dbExecutor db.Executor,
|
|
|
|
|
|
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
|
|
|
-}
|