mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
200 lines
4.7 KiB
Go
200 lines
4.7 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
"sync"
|
|
|
|
alpm "github.com/Jguer/go-alpm/v2"
|
|
"github.com/leonelquinteros/gotext"
|
|
rpc "github.com/mikkeloscar/aur"
|
|
|
|
"github.com/Jguer/yay/v10/pkg/db"
|
|
"github.com/Jguer/yay/v10/pkg/intrange"
|
|
"github.com/Jguer/yay/v10/pkg/multierror"
|
|
"github.com/Jguer/yay/v10/pkg/query"
|
|
"github.com/Jguer/yay/v10/pkg/settings"
|
|
"github.com/Jguer/yay/v10/pkg/stringset"
|
|
"github.com/Jguer/yay/v10/pkg/text"
|
|
"github.com/Jguer/yay/v10/pkg/upgrade"
|
|
)
|
|
|
|
// upList returns lists of packages to upgrade from each source.
|
|
func upList(warnings *query.AURWarnings, dbExecutor db.Executor, enableDowngrade bool) (aurUp, repoUp upgrade.UpSlice, err error) {
|
|
remote, remoteNames := query.GetRemotePackages(dbExecutor)
|
|
|
|
var wg sync.WaitGroup
|
|
var develUp upgrade.UpSlice
|
|
var errs multierror.MultiError
|
|
|
|
aurdata := make(map[string]*rpc.Pkg)
|
|
|
|
for _, pkg := range remote {
|
|
if pkg.ShouldIgnore() {
|
|
warnings.Ignore.Set(pkg.Name())
|
|
}
|
|
}
|
|
|
|
if config.Runtime.Mode == settings.ModeAny || config.Runtime.Mode == settings.ModeRepo {
|
|
text.OperationInfoln(gotext.Get("Searching databases for updates..."))
|
|
wg.Add(1)
|
|
go func() {
|
|
repoUp, err = dbExecutor.RepoUpgrades(enableDowngrade)
|
|
errs.Add(err)
|
|
wg.Done()
|
|
}()
|
|
}
|
|
|
|
if config.Runtime.Mode == settings.ModeAny || config.Runtime.Mode == settings.ModeAUR {
|
|
text.OperationInfoln(gotext.Get("Searching AUR for updates..."))
|
|
|
|
var _aurdata []*rpc.Pkg
|
|
_aurdata, err = query.AURInfo(remoteNames, warnings, config.RequestSplitN)
|
|
errs.Add(err)
|
|
if err == nil {
|
|
for _, pkg := range _aurdata {
|
|
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(remote, aurdata, config.Runtime.VCSStore)
|
|
wg.Done()
|
|
}()
|
|
}
|
|
}
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
printLocalNewerThanAUR(remote, aurdata)
|
|
|
|
if develUp != nil {
|
|
names := make(stringset.StringSet)
|
|
for _, up := range develUp {
|
|
names.Set(up.Name)
|
|
}
|
|
for _, up := range aurUp {
|
|
if !names.Get(up.Name) {
|
|
develUp = append(develUp, up)
|
|
}
|
|
}
|
|
|
|
aurUp = develUp
|
|
}
|
|
|
|
return aurUp, repoUp, errs.Return()
|
|
}
|
|
|
|
func printLocalNewerThanAUR(
|
|
remote []alpm.IPackage, aurdata map[string]*rpc.Pkg) {
|
|
for _, pkg := range remote {
|
|
aurPkg, ok := aurdata[pkg.Name()]
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
left, right := upgrade.GetVersionDiff(pkg.Version(), aurPkg.Version)
|
|
|
|
if !isDevelPackage(pkg) && alpm.VerCmp(pkg.Version(), aurPkg.Version) > 0 {
|
|
text.Warnln(gotext.Get("%s: local (%s) is newer than AUR (%s)",
|
|
text.Cyan(pkg.Name()),
|
|
left, right,
|
|
))
|
|
}
|
|
}
|
|
}
|
|
|
|
func isDevelName(name string) bool {
|
|
for _, suffix := range []string{"git", "svn", "hg", "bzr", "nightly"} {
|
|
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())
|
|
}
|
|
|
|
// upgradePkgs handles updating the cache and installing updates.
|
|
func upgradePkgs(aurUp, repoUp upgrade.UpSlice) (ignore, aurNames stringset.StringSet, err error) {
|
|
ignore = make(stringset.StringSet)
|
|
aurNames = make(stringset.StringSet)
|
|
|
|
allUpLen := len(repoUp) + len(aurUp)
|
|
if allUpLen == 0 {
|
|
return ignore, aurNames, nil
|
|
}
|
|
|
|
if !config.UpgradeMenu {
|
|
for _, pkg := range aurUp {
|
|
aurNames.Set(pkg.Name)
|
|
}
|
|
|
|
return ignore, aurNames, nil
|
|
}
|
|
|
|
sort.Sort(repoUp)
|
|
sort.Sort(aurUp)
|
|
allUp := append(repoUp, aurUp...)
|
|
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 := getInput(config.AnswerUpgrade)
|
|
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 {
|
|
if isInclude && otherInclude.Get(pkg.Repository) {
|
|
ignore.Set(pkg.Name)
|
|
}
|
|
|
|
if isInclude && !include.Get(len(repoUp)-i+len(aurUp)) {
|
|
continue
|
|
}
|
|
|
|
if !isInclude && (exclude.Get(len(repoUp)-i+len(aurUp)) || otherExclude.Get(pkg.Repository)) {
|
|
continue
|
|
}
|
|
|
|
ignore.Set(pkg.Name)
|
|
}
|
|
|
|
for i, pkg := range aurUp {
|
|
if isInclude && otherInclude.Get(pkg.Repository) {
|
|
continue
|
|
}
|
|
|
|
if isInclude && !include.Get(len(aurUp)-i) {
|
|
aurNames.Set(pkg.Name)
|
|
}
|
|
|
|
if !isInclude && (exclude.Get(len(aurUp)-i) || otherExclude.Get(pkg.Repository)) {
|
|
aurNames.Set(pkg.Name)
|
|
}
|
|
}
|
|
|
|
return ignore, aurNames, err
|
|
}
|