123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- package main
- import (
- "fmt"
- "os"
- "strings"
- "sync"
- alpm "github.com/Jguer/go-alpm"
- "github.com/Jguer/yay/v9/pkg/stringset"
- )
- func (dp *depPool) checkInnerConflict(name string, conflict string, conflicts stringset.MapStringSet) {
- for _, pkg := range dp.Aur {
- if pkg.Name == name {
- continue
- }
- if satisfiesAur(conflict, pkg) {
- conflicts.Add(name, pkg.Name)
- }
- }
- for _, pkg := range dp.Repo {
- if pkg.Name() == name {
- continue
- }
- if satisfiesRepo(conflict, pkg) {
- conflicts.Add(name, pkg.Name())
- }
- }
- }
- func (dp *depPool) checkForwardConflict(name string, conflict string, conflicts stringset.MapStringSet) {
- _ = dp.LocalDB.PkgCache().ForEach(func(pkg alpm.Package) error {
- if pkg.Name() == name || dp.hasPackage(pkg.Name()) {
- return nil
- }
- if satisfiesRepo(conflict, &pkg) {
- n := pkg.Name()
- if n != conflict {
- n += " (" + conflict + ")"
- }
- conflicts.Add(name, n)
- }
- return nil
- })
- }
- func (dp *depPool) checkReverseConflict(name string, conflict string, conflicts stringset.MapStringSet) {
- for _, pkg := range dp.Aur {
- if pkg.Name == name {
- continue
- }
- if satisfiesAur(conflict, pkg) {
- if name != conflict {
- name += " (" + conflict + ")"
- }
- conflicts.Add(pkg.Name, name)
- }
- }
- for _, pkg := range dp.Repo {
- if pkg.Name() == name {
- continue
- }
- if satisfiesRepo(conflict, pkg) {
- if name != conflict {
- name += " (" + conflict + ")"
- }
- conflicts.Add(pkg.Name(), name)
- }
- }
- }
- func (dp *depPool) checkInnerConflicts(conflicts stringset.MapStringSet) {
- for _, pkg := range dp.Aur {
- for _, conflict := range pkg.Conflicts {
- dp.checkInnerConflict(pkg.Name, conflict, conflicts)
- }
- }
- for _, pkg := range dp.Repo {
- _ = pkg.Conflicts().ForEach(func(conflict alpm.Depend) error {
- dp.checkInnerConflict(pkg.Name(), conflict.String(), conflicts)
- return nil
- })
- }
- }
- func (dp *depPool) checkForwardConflicts(conflicts stringset.MapStringSet) {
- for _, pkg := range dp.Aur {
- for _, conflict := range pkg.Conflicts {
- dp.checkForwardConflict(pkg.Name, conflict, conflicts)
- }
- }
- for _, pkg := range dp.Repo {
- _ = pkg.Conflicts().ForEach(func(conflict alpm.Depend) error {
- dp.checkForwardConflict(pkg.Name(), conflict.String(), conflicts)
- return nil
- })
- }
- }
- func (dp *depPool) checkReverseConflicts(conflicts stringset.MapStringSet) {
- _ = dp.LocalDB.PkgCache().ForEach(func(pkg alpm.Package) error {
- if dp.hasPackage(pkg.Name()) {
- return nil
- }
- _ = pkg.Conflicts().ForEach(func(conflict alpm.Depend) error {
- dp.checkReverseConflict(pkg.Name(), conflict.String(), conflicts)
- return nil
- })
- return nil
- })
- }
- func (dp *depPool) CheckConflicts() (stringset.MapStringSet, error) {
- var wg sync.WaitGroup
- innerConflicts := make(stringset.MapStringSet)
- conflicts := make(stringset.MapStringSet)
- wg.Add(2)
- fmt.Println(bold(cyan("::") + bold(" Checking for conflicts...")))
- go func() {
- dp.checkForwardConflicts(conflicts)
- dp.checkReverseConflicts(conflicts)
- wg.Done()
- }()
- fmt.Println(bold(cyan("::") + bold(" Checking for inner conflicts...")))
- go func() {
- dp.checkInnerConflicts(innerConflicts)
- wg.Done()
- }()
- wg.Wait()
- if len(innerConflicts) != 0 {
- fmt.Println()
- fmt.Println(bold(red(arrow)), bold("Inner conflicts found:"))
- for name, pkgs := range innerConflicts {
- str := red(bold(smallArrow)) + " " + name + ":"
- for pkg := range pkgs {
- str += " " + cyan(pkg) + ","
- }
- str = strings.TrimSuffix(str, ",")
- fmt.Println(str)
- }
- }
- if len(conflicts) != 0 {
- fmt.Println()
- fmt.Println(bold(red(arrow)), bold("Package conflicts found:"))
- for name, pkgs := range conflicts {
- str := red(bold(smallArrow)) + " Installing " + cyan(name) + " will remove:"
- for pkg := range pkgs {
- str += " " + cyan(pkg) + ","
- }
- str = strings.TrimSuffix(str, ",")
- fmt.Println(str)
- }
- }
- // Add the inner conflicts to the conflicts
- // These are used to decide what to pass --ask to (if set) or don't pass --noconfirm to
- // As we have no idea what the order is yet we add every inner conflict to the slice
- for name, pkgs := range innerConflicts {
- conflicts[name] = make(stringset.StringSet)
- for pkg := range pkgs {
- conflicts[pkg] = make(stringset.StringSet)
- }
- }
- if len(conflicts) > 0 {
- if !config.UseAsk {
- if config.NoConfirm {
- return nil, fmt.Errorf("Package conflicts can not be resolved with noconfirm, aborting")
- }
- fmt.Fprintln(os.Stderr)
- fmt.Fprintln(os.Stderr, bold(red(arrow)), bold("Conflicting packages will have to be confirmed manually"))
- fmt.Fprintln(os.Stderr)
- }
- }
- return conflicts, nil
- }
- type missing struct {
- Good stringset.StringSet
- Missing map[string][][]string
- }
- func (dp *depPool) _checkMissing(dep string, stack []string, missing *missing) {
- if missing.Good.Get(dep) {
- return
- }
- if trees, ok := missing.Missing[dep]; ok {
- for _, tree := range trees {
- if stringSliceEqual(tree, stack) {
- return
- }
- }
- missing.Missing[dep] = append(missing.Missing[dep], stack)
- return
- }
- aurPkg := dp.findSatisfierAur(dep)
- if aurPkg != nil {
- missing.Good.Set(dep)
- for _, deps := range [3][]string{aurPkg.Depends, aurPkg.MakeDepends, aurPkg.CheckDepends} {
- for _, aurDep := range deps {
- if _, err := dp.LocalDB.PkgCache().FindSatisfier(aurDep); err == nil {
- missing.Good.Set(aurDep)
- continue
- }
- dp._checkMissing(aurDep, append(stack, aurPkg.Name), missing)
- }
- }
- return
- }
- repoPkg := dp.findSatisfierRepo(dep)
- if repoPkg != nil {
- missing.Good.Set(dep)
- _ = repoPkg.Depends().ForEach(func(repoDep alpm.Depend) error {
- if _, err := dp.LocalDB.PkgCache().FindSatisfier(repoDep.String()); err == nil {
- missing.Good.Set(repoDep.String())
- return nil
- }
- dp._checkMissing(repoDep.String(), append(stack, repoPkg.Name()), missing)
- return nil
- })
- return
- }
- missing.Missing[dep] = [][]string{stack}
- }
- func (dp *depPool) CheckMissing() error {
- missing := &missing{
- make(stringset.StringSet),
- make(map[string][][]string),
- }
- for _, target := range dp.Targets {
- dp._checkMissing(target.DepString(), make([]string, 0), missing)
- }
- if len(missing.Missing) == 0 {
- return nil
- }
- fmt.Println(bold(red(arrow+" Error: ")) + "Could not find all required packages:")
- for dep, trees := range missing.Missing {
- for _, tree := range trees {
- fmt.Print(" ", cyan(dep))
- if len(tree) == 0 {
- fmt.Print(" (Target")
- } else {
- fmt.Print(" (Wanted by: ")
- for n := 0; n < len(tree)-1; n++ {
- fmt.Print(cyan(tree[n]), " -> ")
- }
- fmt.Print(cyan(tree[len(tree)-1]))
- }
- fmt.Println(")")
- }
- }
- return fmt.Errorf("")
- }
|