mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
248 lines
4.2 KiB
Go
248 lines
4.2 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
alpm "github.com/jguer/go-alpm"
|
|
rpc "github.com/mikkeloscar/aur"
|
|
)
|
|
|
|
type missing struct {
|
|
Good stringSet
|
|
Missing map[string][][]string
|
|
}
|
|
|
|
type providers struct {
|
|
lookfor string
|
|
Pkgs []*rpc.Pkg
|
|
}
|
|
|
|
func makeProviders(name string) providers {
|
|
return providers{
|
|
name,
|
|
make([]*rpc.Pkg, 0),
|
|
}
|
|
}
|
|
|
|
func (q providers) Len() int {
|
|
return len(q.Pkgs)
|
|
}
|
|
|
|
func (q providers) Less(i, j int) bool {
|
|
if q.lookfor == q.Pkgs[i].Name {
|
|
return true
|
|
}
|
|
|
|
if q.lookfor == q.Pkgs[j].Name {
|
|
return false
|
|
}
|
|
|
|
return lessRunes([]rune(q.Pkgs[i].Name), []rune(q.Pkgs[j].Name))
|
|
}
|
|
|
|
func (q providers) Swap(i, j int) {
|
|
q.Pkgs[i], q.Pkgs[j] = q.Pkgs[j], q.Pkgs[i]
|
|
}
|
|
|
|
type Base []*rpc.Pkg
|
|
|
|
func (b Base) Pkgbase() string {
|
|
return b[0].PackageBase
|
|
}
|
|
|
|
func (b Base) Version() string {
|
|
return b[0].Version
|
|
}
|
|
|
|
func (b Base) URLPath() string {
|
|
return b[0].URLPath
|
|
}
|
|
|
|
func baseAppend(bases []Base, pkg *rpc.Pkg) []Base {
|
|
for i, base := range bases {
|
|
if base.Pkgbase() == pkg.PackageBase {
|
|
bases[i] = append(bases[i], pkg)
|
|
return bases
|
|
}
|
|
}
|
|
|
|
return append(bases, Base{pkg})
|
|
}
|
|
|
|
func baseFind(bases []Base, name string) *rpc.Pkg {
|
|
for _, base := range bases {
|
|
for _, pkg := range base {
|
|
if pkg.Name == name {
|
|
return pkg
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type target struct {
|
|
Db string
|
|
Name string
|
|
Mod string
|
|
Version string
|
|
}
|
|
|
|
func toTarget(pkg string) target {
|
|
db, dep := splitDbFromName(pkg)
|
|
name, mod, version := splitDep(dep)
|
|
|
|
return target{
|
|
db,
|
|
name,
|
|
mod,
|
|
version,
|
|
}
|
|
}
|
|
|
|
func (t target) DepString() string {
|
|
return t.Name + t.Mod + t.Version
|
|
}
|
|
|
|
func (t target) String() string {
|
|
if t.Db != "" {
|
|
return t.Db + "/" + t.DepString()
|
|
}
|
|
|
|
return t.DepString()
|
|
}
|
|
|
|
func splitDep(dep string) (string, string, string) {
|
|
mod := ""
|
|
|
|
split := strings.FieldsFunc(dep, func(c rune) bool {
|
|
match := c == '>' || c == '<' || c == '='
|
|
|
|
if match {
|
|
mod += string(c)
|
|
}
|
|
|
|
return match
|
|
})
|
|
|
|
if len(split) == 0 {
|
|
return "", "", ""
|
|
}
|
|
|
|
if len(split) == 1 {
|
|
return split[0], "", ""
|
|
}
|
|
|
|
return split[0], mod, split[1]
|
|
}
|
|
|
|
func pkgSatisfies(name, version, dep string) bool {
|
|
depName, depMod, depVersion := splitDep(dep)
|
|
|
|
if depName != name {
|
|
return false
|
|
}
|
|
|
|
return verSatisfies(version, depMod, depVersion)
|
|
}
|
|
|
|
func provideSatisfies(provide, dep string) bool {
|
|
depName, depMod, depVersion := splitDep(dep)
|
|
provideName, provideMod, provideVersion := splitDep(provide)
|
|
|
|
if provideName != depName {
|
|
return false
|
|
}
|
|
|
|
// Unversioned provieds can not satisfy a versioned dep
|
|
if provideMod == "" && depMod != "" {
|
|
return false
|
|
}
|
|
|
|
return verSatisfies(provideVersion, depMod, depVersion)
|
|
}
|
|
|
|
func verSatisfies(ver1, mod, ver2 string) bool {
|
|
switch mod {
|
|
case "=":
|
|
return alpm.VerCmp(ver1, ver2) == 0
|
|
case "<":
|
|
return alpm.VerCmp(ver1, ver2) < 0
|
|
case "<=":
|
|
return alpm.VerCmp(ver1, ver2) <= 0
|
|
case ">":
|
|
return alpm.VerCmp(ver1, ver2) > 0
|
|
case ">=":
|
|
return alpm.VerCmp(ver1, ver2) >= 0
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
func satisfiesAur(dep string, pkg *rpc.Pkg) bool {
|
|
if pkgSatisfies(pkg.Name, pkg.Version, dep) {
|
|
return true
|
|
}
|
|
|
|
for _, provide := range pkg.Provides {
|
|
if provideSatisfies(provide, dep) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func satisfiesRepo(dep string, pkg *alpm.Package) bool {
|
|
if pkgSatisfies(pkg.Name(), pkg.Version(), dep) {
|
|
return true
|
|
}
|
|
|
|
if pkg.Provides().ForEach(func(provide alpm.Depend) error {
|
|
if provideSatisfies(provide.String(), dep) {
|
|
return fmt.Errorf("")
|
|
}
|
|
|
|
return nil
|
|
}) != nil {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
//split apart db/package to db and package
|
|
func splitDbFromName(pkg string) (string, string) {
|
|
split := strings.SplitN(pkg, "/", 2)
|
|
|
|
if len(split) == 2 {
|
|
return split[0], split[1]
|
|
}
|
|
return "", split[0]
|
|
}
|
|
|
|
func getBases(pkgs []*rpc.Pkg) []Base {
|
|
basesMap := make(map[string]Base)
|
|
for _, pkg := range pkgs {
|
|
basesMap[pkg.PackageBase] = append(basesMap[pkg.PackageBase], pkg)
|
|
}
|
|
|
|
bases := make([]Base, 0, len(basesMap))
|
|
for _, base := range basesMap {
|
|
bases = append(bases, base)
|
|
}
|
|
|
|
return bases
|
|
}
|
|
|
|
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-")
|
|
}
|