123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- package main
- import (
- "fmt"
- "strings"
- alpm "github.com/Jguer/go-alpm"
- rpc "github.com/mikkeloscar/aur"
- )
- 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]
- }
- 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-")
- }
- func isDevelPackage(pkg alpm.Package) bool {
- return isDevelName(pkg.Name()) || isDevelName(pkg.Base())
- }
|