123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527 |
- package pacman
- import (
- "fmt"
- "os"
- "os/exec"
- "strings"
- "github.com/jguer/go-alpm"
- "github.com/jguer/yay/util"
- )
- // RepoSearch describes a Repository search.
- type RepoSearch []Result
- // Result describes a pkg.
- type Result struct {
- Name string
- Repository string
- Version string
- Description string
- Group string
- Installed bool
- }
- // PacmanConf describes the default pacman config file
- const PacmanConf string = "/etc/pacman.conf"
- var conf alpm.PacmanConfig
- func init() {
- conf, _ = readConfig(PacmanConf)
- }
- func readConfig(pacmanconf string) (conf alpm.PacmanConfig, err error) {
- file, err := os.Open(pacmanconf)
- if err != nil {
- return
- }
- conf, err = alpm.ParseConfig(file)
- if err != nil {
- return
- }
- return
- }
- // UpdatePackages handles cache update and upgrade
- func UpdatePackages(flags []string) error {
- var cmd *exec.Cmd
- var args []string
- args = append(args, "pacman", "-Syu")
- args = append(args, flags...)
- cmd = exec.Command("sudo", args...)
- cmd.Stdout = os.Stdout
- cmd.Stdin = os.Stdin
- cmd.Stderr = os.Stderr
- err := cmd.Run()
- return err
- }
- // Search handles repo searches. Creates a RepoSearch struct.
- func Search(pkgName string) (s RepoSearch, n int, err error) {
- h, err := conf.CreateHandle()
- defer h.Release()
- if err != nil {
- }
- localDb, err := h.LocalDb()
- if err != nil {
- return
- }
- dbList, err := h.SyncDbs()
- if err != nil {
- return
- }
- var installed bool
- dbS := dbList.Slice()
- // BottomUp functions
- initL := func(len int) int {
- return len - 1
- }
- compL := func(len int, i int) bool {
- if i > 0 {
- return true
- }
- return false
- }
- finalL := func(i int) int {
- return i - 1
- }
- // TopDown functions
- if util.SortMode == util.TopDown {
- initL = func(len int) int {
- return 0
- }
- compL = func(len int, i int) bool {
- if i < len {
- return true
- }
- return false
- }
- finalL = func(i int) int {
- return i + 1
- }
- }
- lenDbs := len(dbS)
- for f := initL(lenDbs); compL(lenDbs, f); f = finalL(f) {
- pkgS := dbS[f].PkgCache().Slice()
- lenPkgs := len(pkgS)
- for i := initL(lenPkgs); compL(lenPkgs, i); i = finalL(i) {
- if strings.Contains(pkgS[i].Name(), pkgName) || strings.Contains(strings.ToLower(pkgS[i].Description()), pkgName) {
- if r, _ := localDb.PkgByName(pkgS[i].Name()); r != nil {
- installed = true
- } else {
- installed = false
- }
- s = append(s, Result{
- Name: pkgS[i].Name(),
- Description: pkgS[i].Description(),
- Version: pkgS[i].Version(),
- Repository: dbS[f].Name(),
- Group: strings.Join(pkgS[i].Groups().Slice(), ","),
- Installed: installed,
- })
- n++
- }
- }
- }
- return
- }
- //PrintSearch receives a RepoSearch type and outputs pretty text.
- func (s RepoSearch) PrintSearch() {
- for i, res := range s {
- var toprint string
- if util.SearchVerbosity == util.NumberMenu {
- if util.SortMode == util.BottomUp {
- toprint += fmt.Sprintf("%d ", len(s)-i-1)
- } else {
- toprint += fmt.Sprintf("%d ", i)
- }
- } else if util.SearchVerbosity == util.Minimal {
- fmt.Println(res.Name)
- continue
- }
- toprint += fmt.Sprintf("\x1b[1m%s/\x1b[33m%s \x1b[36m%s \x1b[0m",
- res.Repository, res.Name, res.Version)
- if len(res.Group) != 0 {
- toprint += fmt.Sprintf("(%s) ", res.Group)
- }
- if res.Installed == true {
- toprint += fmt.Sprintf("\x1b[32;40mInstalled\x1b[0m")
- }
- toprint += "\n" + res.Description
- fmt.Println(toprint)
- }
- }
- // PFactory execute an action over a series of packages without reopening the handle everytime.
- // Everybody told me it wouln't work. It does. It's just not pretty.
- // When it worked: https://youtu.be/a4Z5BdEL0Ag?t=1m11s
- func PFactory(action func(interface{})) func(name string, object interface{}, rel bool) {
- h, _ := conf.CreateHandle()
- localDb, _ := h.LocalDb()
- return func(name string, object interface{}, rel bool) {
- _, err := localDb.PkgByName(name)
- if err == nil {
- action(object)
- }
- if rel {
- h.Release()
- }
- }
- }
- // PackageSlices separates an input slice into aur and repo slices
- func PackageSlices(toCheck []string) (aur []string, repo []string, err error) {
- h, err := conf.CreateHandle()
- defer h.Release()
- if err != nil {
- return
- }
- dbList, err := h.SyncDbs()
- if err != nil {
- return
- }
- for _, pkg := range toCheck {
- found := false
- for _, db := range dbList.Slice() {
- _, err = db.PkgByName(pkg)
- if err == nil {
- found = true
- repo = append(repo, pkg)
- break
- }
- }
- if !found {
- if _, err := dbList.PkgCachebyGroup(pkg); err == nil {
- repo = append(repo, pkg)
- } else {
- aur = append(aur, pkg)
- }
- }
- }
- err = nil
- return
- }
- // BuildDependencies finds packages, on the second run
- // compares with a baselist and avoids searching those
- func BuildDependencies(baselist []string) func(toCheck []string, isBaseList bool, last bool) (repo []string, notFound []string) {
- h, _ := conf.CreateHandle()
- localDb, _ := h.LocalDb()
- dbList, _ := h.SyncDbs()
- f := func(c rune) bool {
- return c == '>' || c == '<' || c == '=' || c == ' '
- }
- return func(toCheck []string, isBaseList bool, close bool) (repo []string, notFound []string) {
- if close {
- h.Release()
- return
- }
- Loop:
- for _, dep := range toCheck {
- if !isBaseList {
- for _, base := range baselist {
- if base == dep {
- continue Loop
- }
- }
- }
- if _, erp := localDb.PkgCache().FindSatisfier(dep); erp == nil {
- continue
- } else if pkg, erp := dbList.FindSatisfier(dep); erp == nil {
- repo = append(repo, pkg.Name())
- } else {
- field := strings.FieldsFunc(dep, f)
- notFound = append(notFound, field[0])
- }
- }
- return
- }
- }
- // DepSatisfier receives a string slice, returns a slice of packages found in
- // repos and one of packages not found in repos. Leaves out installed packages.
- func DepSatisfier(toCheck []string) (repo []string, notFound []string, err error) {
- h, err := conf.CreateHandle()
- defer h.Release()
- if err != nil {
- return
- }
- localDb, err := h.LocalDb()
- if err != nil {
- return
- }
- dbList, err := h.SyncDbs()
- if err != nil {
- return
- }
- f := func(c rune) bool {
- return c == '>' || c == '<' || c == '=' || c == ' '
- }
- for _, dep := range toCheck {
- if _, erp := localDb.PkgCache().FindSatisfier(dep); erp == nil {
- continue
- } else if pkg, erp := dbList.FindSatisfier(dep); erp == nil {
- repo = append(repo, pkg.Name())
- } else {
- field := strings.FieldsFunc(dep, f)
- notFound = append(notFound, field[0])
- }
- }
- err = nil
- return
- }
- // Install sends an install command to pacman with the pkgName slice
- func Install(pkgName []string, flags []string) (err error) {
- if len(pkgName) == 0 {
- return nil
- }
- var cmd *exec.Cmd
- var args []string
- args = append(args, "pacman", "-S")
- args = append(args, pkgName...)
- if len(flags) != 0 {
- args = append(args, flags...)
- }
- cmd = exec.Command("sudo", args...)
- cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr
- cmd.Run()
- return nil
- }
- // CleanRemove sends a full removal command to pacman with the pkgName slice
- func CleanRemove(pkgName []string) (err error) {
- if len(pkgName) == 0 {
- return nil
- }
- var cmd *exec.Cmd
- var args []string
- args = append(args, "pacman", "-Rnsc")
- args = append(args, pkgName...)
- args = append(args, "--noconfirm")
- cmd = exec.Command("sudo", args...)
- cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr
- cmd.Run()
- return nil
- }
- // ForeignPackages returns a map of foreign packages, with their version and date as values.
- func ForeignPackages() (foreign map[string]*struct {
- Version string
- Date int64
- }, n int, err error) {
- h, err := conf.CreateHandle()
- defer h.Release()
- if err != nil {
- return
- }
- localDb, err := h.LocalDb()
- if err != nil {
- return
- }
- dbList, err := h.SyncDbs()
- if err != nil {
- return
- }
- foreign = make(map[string]*struct {
- Version string
- Date int64
- })
- // Find foreign packages in system
- for _, pkg := range localDb.PkgCache().Slice() {
- // Change to more effective method
- found := false
- for _, db := range dbList.Slice() {
- _, err = db.PkgByName(pkg.Name())
- if err == nil {
- found = true
- break
- }
- }
- if !found {
- foreign[pkg.Name()] = &struct {
- Version string
- Date int64
- }{pkg.Version(), pkg.InstallDate().Unix()}
- n++
- }
- }
- return
- }
- // Statistics returns statistics about packages installed in system
- func Statistics() (info struct {
- Totaln int
- Expln int
- TotalSize int64
- }, err error) {
- var tS int64 // TotalSize
- var nPkg int
- var ePkg int
- h, err := conf.CreateHandle()
- defer h.Release()
- if err != nil {
- return
- }
- localDb, err := h.LocalDb()
- if err != nil {
- return
- }
- for _, pkg := range localDb.PkgCache().Slice() {
- tS += pkg.ISize()
- nPkg++
- if pkg.Reason() == 0 {
- ePkg++
- }
- }
- info = struct {
- Totaln int
- Expln int
- TotalSize int64
- }{
- nPkg, ePkg, tS,
- }
- return
- }
- // BiggestPackages prints the name of the ten biggest packages in the system.
- func BiggestPackages() {
- h, err := conf.CreateHandle()
- defer h.Release()
- if err != nil {
- return
- }
- localDb, err := h.LocalDb()
- if err != nil {
- return
- }
- pkgCache := localDb.PkgCache()
- pkgS := pkgCache.SortBySize().Slice()
- if len(pkgS) < 10 {
- return
- }
- for i := 0; i < 10; i++ {
- fmt.Printf("%s: \x1B[0;33m%dMB\x1B[0m\n", pkgS[i].Name(), pkgS[i].ISize()/(1024*1024))
- }
- // Could implement size here as well, but we just want the general idea
- }
- // HangingPackages returns a list of packages installed as deps
- // and unneeded by the system
- func HangingPackages() (hanging []string, err error) {
- h, err := conf.CreateHandle()
- defer h.Release()
- if err != nil {
- return
- }
- localDb, err := h.LocalDb()
- if err != nil {
- return
- }
- f := func(pkg alpm.Package) error {
- if pkg.Reason() != alpm.PkgReasonDepend {
- return nil
- }
- requiredby := pkg.ComputeRequiredBy()
- if len(requiredby) == 0 {
- hanging = append(hanging, pkg.Name())
- fmt.Printf("%s: \x1B[0;33m%dMB\x1B[0m\n", pkg.Name(), pkg.ISize()/(1024*1024))
- }
- return nil
- }
- err = localDb.PkgCache().ForEach(f)
- return
- }
- // SliceHangingPackages returns a list of packages installed as deps
- // and unneeded by the system from a provided list of package names.
- func SliceHangingPackages(pkgS []string) (hanging []string) {
- h, err := conf.CreateHandle()
- defer h.Release()
- if err != nil {
- return
- }
- localDb, err := h.LocalDb()
- if err != nil {
- return
- }
- big:
- for _, pkgName := range pkgS {
- for _, hangN := range hanging {
- if hangN == pkgName {
- continue big
- }
- }
- pkg, err := localDb.PkgByName(pkgName)
- if err == nil {
- if pkg.Reason() != alpm.PkgReasonDepend {
- continue
- }
- requiredby := pkg.ComputeRequiredBy()
- if len(requiredby) == 0 {
- hanging = append(hanging, pkgName)
- fmt.Printf("%s: \x1B[0;33m%dMB\x1B[0m\n", pkg.Name(), pkg.ISize()/(1024*1024))
- }
- }
- }
- return
- }
|