2013-08-15 14:05:36 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"time"
|
2014-10-27 23:51:34 -04:00
|
|
|
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-08-15 14:05:36 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// StepDownload downloads a remote file using the download client within
|
|
|
|
// this package. This step handles setting up the download configuration,
|
|
|
|
// progress reporting, interrupt handling, etc.
|
|
|
|
//
|
|
|
|
// Uses:
|
|
|
|
// cache packer.Cache
|
|
|
|
// ui packer.Ui
|
|
|
|
type StepDownload struct {
|
|
|
|
// The checksum and the type of the checksum for the download
|
|
|
|
Checksum string
|
|
|
|
ChecksumType string
|
|
|
|
|
|
|
|
// A short description of the type of download being done. Example:
|
|
|
|
// "ISO" or "Guest Additions"
|
|
|
|
Description string
|
|
|
|
|
|
|
|
// The name of the key where the final path of the ISO will be put
|
|
|
|
// into the state.
|
|
|
|
ResultKey string
|
|
|
|
|
2013-08-15 14:15:32 -04:00
|
|
|
// The path where the result should go, otherwise it goes to the
|
|
|
|
// cache directory.
|
|
|
|
TargetPath string
|
|
|
|
|
2013-08-15 14:05:36 -04:00
|
|
|
// A list of URLs to attempt to download this thing.
|
|
|
|
Url []string
|
|
|
|
}
|
|
|
|
|
2013-08-31 15:17:59 -04:00
|
|
|
func (s *StepDownload) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
cache := state.Get("cache").(packer.Cache)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-08-15 14:05:36 -04:00
|
|
|
|
2013-08-15 14:15:32 -04:00
|
|
|
var checksum []byte
|
|
|
|
if s.Checksum != "" {
|
|
|
|
var err error
|
|
|
|
checksum, err = hex.DecodeString(s.Checksum)
|
|
|
|
if err != nil {
|
2013-08-31 15:17:59 -04:00
|
|
|
state.Put("error", fmt.Errorf("Error parsing checksum: %s", err))
|
2013-08-15 14:15:32 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2013-08-15 14:05:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ui.Say(fmt.Sprintf("Downloading or copying %s", s.Description))
|
|
|
|
|
|
|
|
var finalPath string
|
|
|
|
for _, url := range s.Url {
|
|
|
|
ui.Message(fmt.Sprintf("Downloading or copying: %s", url))
|
2013-08-15 14:15:32 -04:00
|
|
|
|
|
|
|
targetPath := s.TargetPath
|
|
|
|
if targetPath == "" {
|
|
|
|
log.Printf("Acquiring lock to download: %s", url)
|
|
|
|
targetPath = cache.Lock(url)
|
|
|
|
defer cache.Unlock(url)
|
|
|
|
}
|
2013-08-15 14:05:36 -04:00
|
|
|
|
|
|
|
config := &DownloadConfig{
|
|
|
|
Url: url,
|
2013-08-15 14:15:32 -04:00
|
|
|
TargetPath: targetPath,
|
2013-08-15 14:05:36 -04:00
|
|
|
CopyFile: false,
|
|
|
|
Hash: HashForType(s.ChecksumType),
|
|
|
|
Checksum: checksum,
|
2014-10-27 23:51:34 -04:00
|
|
|
UserAgent: "Packer",
|
2013-08-15 14:05:36 -04:00
|
|
|
}
|
|
|
|
|
2013-11-07 15:00:27 -05:00
|
|
|
path, err, retry := s.download(config, state)
|
2013-08-15 14:05:36 -04:00
|
|
|
if err != nil {
|
|
|
|
ui.Message(fmt.Sprintf("Error downloading: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
if !retry {
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
finalPath = path
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if finalPath == "" {
|
|
|
|
err := fmt.Errorf("%s download failed.", s.Description)
|
2013-08-31 15:17:59 -04:00
|
|
|
state.Put("error", err)
|
2013-08-15 14:05:36 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-08-31 15:17:59 -04:00
|
|
|
state.Put(s.ResultKey, finalPath)
|
2013-08-15 14:05:36 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2013-08-31 15:17:59 -04:00
|
|
|
func (s *StepDownload) Cleanup(multistep.StateBag) {}
|
2013-08-15 14:05:36 -04:00
|
|
|
|
2013-08-31 15:17:59 -04:00
|
|
|
func (s *StepDownload) download(config *DownloadConfig, state multistep.StateBag) (string, error, bool) {
|
2013-08-15 14:05:36 -04:00
|
|
|
var path string
|
2013-08-31 15:17:59 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-08-15 14:05:36 -04:00
|
|
|
download := NewDownloadClient(config)
|
|
|
|
|
|
|
|
downloadCompleteCh := make(chan error, 1)
|
|
|
|
go func() {
|
|
|
|
var err error
|
|
|
|
path, err = download.Get()
|
|
|
|
downloadCompleteCh <- err
|
|
|
|
}()
|
|
|
|
|
|
|
|
progressTicker := time.NewTicker(5 * time.Second)
|
|
|
|
defer progressTicker.Stop()
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case err := <-downloadCompleteCh:
|
|
|
|
if err != nil {
|
|
|
|
return "", err, true
|
|
|
|
}
|
|
|
|
|
|
|
|
return path, nil, true
|
|
|
|
case <-progressTicker.C:
|
|
|
|
progress := download.PercentProgress()
|
|
|
|
if progress >= 0 {
|
|
|
|
ui.Message(fmt.Sprintf("Download progress: %d%%", progress))
|
|
|
|
}
|
|
|
|
case <-time.After(1 * time.Second):
|
2013-08-31 15:17:59 -04:00
|
|
|
if _, ok := state.GetOk(multistep.StateCancelled); ok {
|
2013-08-15 14:05:36 -04:00
|
|
|
ui.Say("Interrupt received. Cancelling download...")
|
|
|
|
return "", nil, false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|