Skip to content

Commit

Permalink
[cpackget] update-index: added option "-a" to download all missing PD…
Browse files Browse the repository at this point in the history
…SC files that are listed in index.pidx (#186)

Command "update-index":
- added "--all-pdsc-files", "-a"
- downloads all PDSC files that are listed in index.pidx but are not
present in .Web
- if "sparse" is not set, the files that have already been in .Web are
updated, if necessary (newly downloaded files are not checked)

---------

Co-authored-by: Sourabh Mehta <73165318+soumeh01@users.noreply.github.com>
  • Loading branch information
thorstendb-ARM and soumeh01 authored Jun 23, 2023
1 parent 511ab3f commit 8abf94f
Show file tree
Hide file tree
Showing 6 changed files with 168 additions and 109 deletions.
2 changes: 1 addition & 1 deletion cmd/commands/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var IndexCmd = &cobra.Command{
log.Infof("Updating index %v", args)
indexPath := args[0]
installer.UnlockPackRoot()
err := installer.UpdatePublicIndex(indexPath, overwrite, true, false, viper.GetInt("concurrent-downloads"), viper.GetInt("timeout"))
err := installer.UpdatePublicIndex(indexPath, overwrite, true, false, false, viper.GetInt("concurrent-downloads"), viper.GetInt("timeout"))
installer.LockPackRoot()
return err
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/commands/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The index-url is mandatory. Ex "cpackget init --pack-root path/to/mypackroot htt
}

installer.UnlockPackRoot()
err = installer.UpdatePublicIndex(indexPath, true, true, initCmdFlags.downloadPdscFiles, viper.GetInt("concurrent-downloads"), viper.GetInt("timeout"))
err = installer.UpdatePublicIndex(indexPath, true, true, initCmdFlags.downloadPdscFiles, false, viper.GetInt("concurrent-downloads"), viper.GetInt("timeout"))
installer.LockPackRoot()
return err
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func configureInstaller(cmd *cobra.Command, args []string) error {
// Exclude index updating commands to not double update
if cmd.Name() != "init" && cmd.Name() != "index" && cmd.Name() != "update-index" {
installer.UnlockPackRoot()
err = installer.UpdatePublicIndex(defaultPublicIndex, true, true, false, 0, 0)
err = installer.UpdatePublicIndex(defaultPublicIndex, true, true, false, false, 0, 0)
if err != nil {
return err
}
Expand Down
5 changes: 4 additions & 1 deletion cmd/commands/update_index.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import (
var updateIndexCmdFlags struct {
// sparse indicates whether the update should update all installed pack's pdscs (false) or simply update the index (true)
sparse bool
// downloadPdscFiles forces all pdsc files from the public index to be downloaded
downloadUpdatePdscFiles bool
}

var UpdateIndexCmd = &cobra.Command{
Expand All @@ -26,7 +28,7 @@ var UpdateIndexCmd = &cobra.Command{
RunE: func(cmd *cobra.Command, args []string) error {
log.Infof("Updating public index")
installer.UnlockPackRoot()
err := installer.UpdatePublicIndex("", true, updateIndexCmdFlags.sparse, false, viper.GetInt("concurrent-downloads"), viper.GetInt("timeout"))
err := installer.UpdatePublicIndex("", true, updateIndexCmdFlags.sparse, false, updateIndexCmdFlags.downloadUpdatePdscFiles, viper.GetInt("concurrent-downloads"), viper.GetInt("timeout"))
installer.LockPackRoot()
return err
},
Expand All @@ -46,4 +48,5 @@ By default it will also check if all PDSC files under .Web/ need update as well.

func init() {
UpdateIndexCmd.Flags().BoolVarP(&updateIndexCmdFlags.sparse, "sparse", "s", false, "avoid updating the pdsc files within .Web/ folder")
UpdateIndexCmd.Flags().BoolVarP(&updateIndexCmdFlags.downloadUpdatePdscFiles, "all-pdsc-files", "a", false, "updates/downloads all the latest .pdsc files from the public index")
}
216 changes: 123 additions & 93 deletions cmd/installer/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,110 @@ func RemovePdsc(pdscPath string) error {
return Installation.touchPackIdx()
}

// Workaround wrapper function to still log errors
func massDownloadPdscFiles(pdscTag xml.PdscTag, skipInstalledPdscFiles bool, wg *sync.WaitGroup, timeout int) {
if err := Installation.downloadPdscFile(pdscTag, skipInstalledPdscFiles, wg, timeout); err != nil {
log.Error(err)
}
}

func DownloadPDSCFiles(skipInstalledPdscFiles bool, concurrency int, timeout int) error {
var wg sync.WaitGroup
log.Info("Downloading all PDSC files available on the public index")
if err := Installation.PublicIndexXML.Read(); err != nil {
return err
}

pdscTags := Installation.PublicIndexXML.ListPdscTags()
if len(pdscTags) == 0 {
log.Info("(no packs in public index)")
return nil
}

queue := concurrency
for _, pdscTag := range pdscTags {
if concurrency == 0 || len(pdscTags) <= concurrency {
if err := Installation.downloadPdscFile(pdscTag, skipInstalledPdscFiles, nil, timeout); err != nil {
log.Error(err)
}
} else {
// Don't queue more downloads than specified
if queue == 0 {
if err := Installation.downloadPdscFile(pdscTag, skipInstalledPdscFiles, nil, timeout); err != nil {
log.Error(err)
}
wg.Add(concurrency)
queue = concurrency
} else {
wg.Add(1)
go massDownloadPdscFiles(pdscTag, skipInstalledPdscFiles, &wg, timeout)
queue--
}
}
}
return nil
}

func UpdateInstalledPDSCFiles(pidxXML *xml.PidxXML, concurrency int, timeout int) error {
var wg sync.WaitGroup
log.Info("Updating PDSC files of installed packs referenced in index.pidx")
pdscFiles, err := utils.ListDir(Installation.WebDir, ".pdsc$")
if err != nil {
return err
}

queue := concurrency
for _, pdscFile := range pdscFiles {
log.Debugf("Checking if \"%s\" needs updating", pdscFile)
pdscXML := xml.NewPdscXML(pdscFile)
err := pdscXML.Read()
if err != nil {
log.Errorf("%s: %v", pdscFile, err)
continue
}

searchTag := xml.PdscTag{
Vendor: pdscXML.Vendor,
Name: pdscXML.Name,
}

// Warn the user if the pack is no longer present in index.pidx
tags := pidxXML.FindPdscTags(searchTag)
if len(tags) == 0 {
log.Warnf("The pack %s::%s is no longer present in the updated index.pidx, deleting PDSC file \"%v\"", pdscXML.Vendor, pdscXML.Name, pdscFile)
utils.UnsetReadOnly(pdscFile)
os.Remove(pdscFile)
continue
}

versionInIndex := tags[0].Version
latestVersion := pdscXML.LatestVersion()
if versionInIndex != latestVersion {
log.Infof("%s::%s can be upgraded from \"%s\" to \"%s\"", pdscXML.Vendor, pdscXML.Name, latestVersion, versionInIndex)
if concurrency == 0 || len(pdscFiles) <= concurrency {
if err := Installation.downloadPdscFile(tags[0], false, nil, timeout); err != nil {
log.Error(err)
}
} else {
if queue == 0 {
if err := Installation.downloadPdscFile(tags[0], false, nil, timeout); err != nil {
log.Error(err)
}
wg.Add(concurrency)
queue = concurrency
} else {
wg.Add(1)
go massDownloadPdscFiles(tags[0], false, &wg, timeout)
queue--
}
}
}
}
return nil
}

// UpdatePublicIndex receives a index path and place it under .Web/index.pidx.
func UpdatePublicIndex(indexPath string, overwrite bool, sparse bool, downloadPdsc bool, concurrency int, timeout int) error {
func UpdatePublicIndex(indexPath string, overwrite bool, sparse bool, downloadPdsc bool, downloadRemainingPdscFiles bool, concurrency int, timeout int) error {
// TODO: Remove overwrite when cpackget v1 gets released
if !overwrite {
return errs.ErrCannotOverwritePublicIndex
Expand Down Expand Up @@ -337,102 +439,24 @@ func UpdatePublicIndex(indexPath string, overwrite bool, sparse bool, downloadPd
}
utils.SetReadOnly(Installation.PublicIndex)

// Workaround wrapper function to still log errors
// and not make the linter angry
massDownloadPdscFiles := func(pdscTag xml.PdscTag, wg *sync.WaitGroup, timeout int) {
if err := Installation.downloadPdscFile(pdscTag, wg, timeout); err != nil {
log.Error(err)
}
}
if downloadPdsc {
var wg sync.WaitGroup
log.Info("Downloading all PDSC files available on the public index")
if err := Installation.PublicIndexXML.Read(); err != nil {
err = DownloadPDSCFiles(false, concurrency, timeout)
if err != nil {
return err
}

pdscTags := Installation.PublicIndexXML.ListPdscTags()
if len(pdscTags) == 0 {
log.Info("(no packs in public index)")
return nil
}

queue := concurrency
for _, pdscTag := range pdscTags {
if concurrency == 0 || len(pdscTags) <= concurrency {
if err := Installation.downloadPdscFile(pdscTag, nil, timeout); err != nil {
log.Error(err)
}
} else {
// Don't queue more downloads than specified
if queue == 0 {
if err := Installation.downloadPdscFile(pdscTag, nil, timeout); err != nil {
log.Error(err)
}
wg.Add(concurrency)
queue = concurrency
} else {
wg.Add(1)
go massDownloadPdscFiles(pdscTag, &wg, timeout)
queue--
}
}
}
}

if !sparse {
var wg sync.WaitGroup
log.Info("Updating PDSC files of installed packs referenced in index.pidx")
pdscFiles, err := utils.ListDir(Installation.WebDir, ".pdsc$")
err = UpdateInstalledPDSCFiles(pidxXML, concurrency, timeout)
if err != nil {
return err
}
}

queue := concurrency
for _, pdscFile := range pdscFiles {
log.Debugf("Checking if \"%s\" needs updating", pdscFile)
pdscXML := xml.NewPdscXML(pdscFile)
err := pdscXML.Read()
if err != nil {
log.Errorf("%s: %v", pdscFile, err)
continue
}

searchTag := xml.PdscTag{
Vendor: pdscXML.Vendor,
Name: pdscXML.Name,
}

// Warn the user if the pack is no longer present in index.pidx
tags := pidxXML.FindPdscTags(searchTag)
if len(tags) == 0 {
log.Warnf("The pack %s::%s is no longer present in the updated index.pidx, deleting PDSC file \"%v\"", pdscXML.Vendor, pdscXML.Name, pdscFile)
utils.UnsetReadOnly(pdscFile)
os.Remove(pdscFile)
continue
}

versionInIndex := tags[0].Version
latestVersion := pdscXML.LatestVersion()
if versionInIndex != latestVersion {
log.Infof("%s::%s can be upgraded from \"%s\" to \"%s\"", pdscXML.Vendor, pdscXML.Name, latestVersion, versionInIndex)
if concurrency == 0 || len(pdscFiles) <= concurrency {
if err := Installation.downloadPdscFile(tags[0], nil, timeout); err != nil {
log.Error(err)
}
} else {
if queue == 0 {
if err := Installation.downloadPdscFile(tags[0], nil, timeout); err != nil {
log.Error(err)
}
wg.Add(concurrency)
queue = concurrency
} else {
wg.Add(1)
go massDownloadPdscFiles(tags[0], &wg, timeout)
queue--
}
}
}
if downloadRemainingPdscFiles {
err = DownloadPDSCFiles(true, concurrency, timeout)
if err != nil {
return err
}
}

Expand Down Expand Up @@ -1042,17 +1066,26 @@ func (p *PacksInstallationType) packIsPublic(pack *PackType, timeout int) (bool,
// Sometimes a pidx file might have multiple pdsc tags for same key
// which is not the case here, so we'll take only the first one
pdscTag := pdscTags[0]
return true, p.downloadPdscFile(pdscTag, nil, timeout)
return true, p.downloadPdscFile(pdscTag, false, nil, timeout)
}

// downloadPdscFile takes in a xml.PdscTag containing URL, Vendor and Name of the pack
// so it can be downloaded into .Web/
func (p *PacksInstallationType) downloadPdscFile(pdscTag xml.PdscTag, wg *sync.WaitGroup, timeout int) error {
func (p *PacksInstallationType) downloadPdscFile(pdscTag xml.PdscTag, skipInstalledPdscFiles bool, wg *sync.WaitGroup, timeout int) error {
// Only change use if it's not a concurrent download
if wg != nil {
defer wg.Done()
}

basePdscFile := fmt.Sprintf("%s.%s.pdsc", pdscTag.Vendor, pdscTag.Name)
pdscFilePath := filepath.Join(p.WebDir, basePdscFile)

if skipInstalledPdscFiles {
if utils.FileExists(pdscFilePath) {
return nil
}
}

pdscURL := pdscTag.URL

// switch to keil.com cache for PDSC file
Expand All @@ -1061,9 +1094,6 @@ func (p *PacksInstallationType) downloadPdscFile(pdscTag xml.PdscTag, wg *sync.W
pdscURL = KeilDefaultPackRoot
}

basePdscFile := fmt.Sprintf("%s.%s.pdsc", pdscTag.Vendor, pdscTag.Name)
pdscFilePath := filepath.Join(p.WebDir, basePdscFile)

log.Debugf("Downloading %s from \"%s\"", basePdscFile, pdscURL)

pdscFileURL, err := url.Parse(pdscURL)
Expand Down
Loading

0 comments on commit 8abf94f

Please sign in to comment.