123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- package main
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "os"
- "strings"
- "sync"
- "time"
- gosrc "github.com/Morganamilo/go-srcinfo"
- "github.com/leonelquinteros/gotext"
- "github.com/Jguer/go-alpm"
- "github.com/Jguer/yay/v10/pkg/dep"
- "github.com/Jguer/yay/v10/pkg/query"
- "github.com/Jguer/yay/v10/pkg/stringset"
- "github.com/Jguer/yay/v10/pkg/text"
- )
- // Info contains the last commit sha of a repo
- type (
- vcsInfo map[string]shaInfos
- shaInfos map[string]shaInfo
- shaInfo struct {
- Protocols []string `json:"protocols"`
- Branch string `json:"branch"`
- SHA string `json:"sha"`
- }
- )
- // createDevelDB forces yay to create a DB of the existing development packages
- func createDevelDB(vcsFilePath string, alpmHandle *alpm.Handle) error {
- var mux sync.Mutex
- var wg sync.WaitGroup
- _, _, _, remoteNames, err := query.FilterPackages(alpmHandle)
- if err != nil {
- return err
- }
- info, err := query.AURInfoPrint(remoteNames, config.RequestSplitN)
- if err != nil {
- return err
- }
- bases := dep.GetBases(info)
- toSkip := pkgbuildsToSkip(bases, stringset.FromSlice(remoteNames))
- _, err = downloadPkgbuilds(bases, toSkip, config.BuildDir)
- if err != nil {
- return err
- }
- srcinfos, err := parseSrcinfoFiles(bases, false)
- if err != nil {
- return err
- }
- for i := range srcinfos {
- for iP := range srcinfos[i].Packages {
- wg.Add(1)
- go updateVCSData(vcsFilePath, srcinfos[i].Packages[iP].Pkgname, srcinfos[i].Source, &mux, &wg)
- }
- }
- wg.Wait()
- text.OperationInfoln(gotext.Get("GenDB finished. No packages were installed"))
- return err
- }
- // parseSource returns the git url, default branch and protocols it supports
- func parseSource(source string) (url, branch string, protocols []string) {
- split := strings.Split(source, "::")
- source = split[len(split)-1]
- split = strings.SplitN(source, "://", 2)
- if len(split) != 2 {
- return "", "", nil
- }
- protocols = strings.SplitN(split[0], "+", 2)
- git := false
- for _, protocol := range protocols {
- if protocol == "git" {
- git = true
- break
- }
- }
- protocols = protocols[len(protocols)-1:]
- if !git {
- return "", "", nil
- }
- split = strings.SplitN(split[1], "#", 2)
- if len(split) == 2 {
- secondSplit := strings.SplitN(split[1], "=", 2)
- if secondSplit[0] != "branch" {
- // source has #commit= or #tag= which makes them not vcs
- // packages because they reference a specific point
- return "", "", nil
- }
- if len(secondSplit) == 2 {
- url = split[0]
- branch = secondSplit[1]
- }
- } else {
- url = split[0]
- branch = "HEAD"
- }
- url = strings.Split(url, "?")[0]
- branch = strings.Split(branch, "?")[0]
- return url, branch, protocols
- }
- func updateVCSData(vcsFilePath, pkgName string, sources []gosrc.ArchString, mux sync.Locker, wg *sync.WaitGroup) {
- defer wg.Done()
- if savedInfo == nil {
- mux.Lock()
- savedInfo = make(vcsInfo)
- mux.Unlock()
- }
- info := make(shaInfos)
- checkSource := func(source gosrc.ArchString) {
- defer wg.Done()
- url, branch, protocols := parseSource(source.Value)
- if url == "" || branch == "" {
- return
- }
- commit := getCommit(url, branch, protocols)
- if commit == "" {
- return
- }
- mux.Lock()
- info[url] = shaInfo{
- protocols,
- branch,
- commit,
- }
- savedInfo[pkgName] = info
- text.Warnln(gotext.Get("Found git repo: %s", cyan(url)))
- err := saveVCSInfo(vcsFilePath)
- if err != nil {
- fmt.Fprintln(os.Stderr, err)
- }
- mux.Unlock()
- }
- for _, source := range sources {
- wg.Add(1)
- go checkSource(source)
- }
- }
- func getCommit(url, branch string, protocols []string) string {
- if len(protocols) > 0 {
- protocol := protocols[len(protocols)-1]
- var outbuf bytes.Buffer
- cmd := passToGit("", "ls-remote", protocol+"://"+url, branch)
- cmd.Stdout = &outbuf
- cmd.Env = append(os.Environ(), "GIT_TERMINAL_PROMPT=0")
- err := cmd.Start()
- if err != nil {
- return ""
- }
- // for some reason
- // git://bitbucket.org/volumesoffun/polyvox.git` hangs on my
- // machine but using http:// instead of git does not hang.
- // Introduce a time out so this can not hang
- timer := time.AfterFunc(5*time.Second, func() {
- err = cmd.Process.Kill()
- if err != nil {
- text.Errorln(err)
- }
- })
- err = cmd.Wait()
- timer.Stop()
- if err != nil {
- return ""
- }
- stdout := outbuf.String()
- split := strings.Fields(stdout)
- if len(split) < 2 {
- return ""
- }
- commit := split[0]
- return commit
- }
- return ""
- }
- func (infos shaInfos) needsUpdate() bool {
- // used to signal we have gone through all sources and found nothing
- finished := make(chan struct{})
- alive := 0
- // if we find an update we use this to exit early and return true
- hasUpdate := make(chan struct{})
- checkHash := func(url string, info shaInfo) {
- hash := getCommit(url, info.Branch, info.Protocols)
- if hash != "" && hash != info.SHA {
- hasUpdate <- struct{}{}
- } else {
- finished <- struct{}{}
- }
- }
- for url, info := range infos {
- alive++
- go checkHash(url, info)
- }
- for {
- select {
- case <-hasUpdate:
- return true
- case <-finished:
- alive--
- if alive == 0 {
- return false
- }
- }
- }
- }
- func saveVCSInfo(vcsFilePath string) error {
- marshalledinfo, err := json.MarshalIndent(savedInfo, "", "\t")
- if err != nil || string(marshalledinfo) == "null" {
- return err
- }
- in, err := os.OpenFile(vcsFilePath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o644)
- if err != nil {
- return err
- }
- defer in.Close()
- _, err = in.Write(marshalledinfo)
- if err != nil {
- return err
- }
- err = in.Sync()
- return err
- }
|