1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
package helpers
import (
"context"
"io"
"io/ioutil"
"net/http"
"os"
"path/filepath"
"strconv"
"time"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
"gitlab.com/gitlab-org/gitlab-runner/commands/helpers/archive"
"gitlab.com/gitlab-org/gitlab-runner/commands/helpers/meter"
"gitlab.com/gitlab-org/gitlab-runner/common"
url_helpers "gitlab.com/gitlab-org/gitlab-runner/helpers/url"
"gitlab.com/gitlab-org/gitlab-runner/log"
)
type CacheExtractorCommand struct {
retryHelper
meter.TransferMeterCommand
File string `long:"file" description:"The file containing your cache artifacts"`
URL string `long:"url" description:"URL of remote cache resource"`
Timeout int `long:"timeout" description:"Overall timeout for cache downloading request (in minutes)"`
client *CacheClient
}
func (c *CacheExtractorCommand) getClient() *CacheClient {
if c.client == nil {
c.client = NewCacheClient(c.Timeout)
}
return c.client
}
func checkIfUpToDate(path string, resp *http.Response) (bool, time.Time) {
fi, _ := os.Lstat(path)
date, _ := time.Parse(http.TimeFormat, resp.Header.Get("Last-Modified"))
return fi != nil && !date.After(fi.ModTime()), date
}
func getRemoteCacheSize(resp *http.Response) int64 {
length, _ := strconv.Atoi(resp.Header.Get("Content-Length"))
if length <= 0 {
return meter.UnknownTotalSize
}
return int64(length)
}
func (c *CacheExtractorCommand) download(_ int) error {
err := os.MkdirAll(filepath.Dir(c.File), 0700)
if err != nil {
return err
}
resp, err := c.getCache()
if err != nil {
return err
}
defer func() { _ = resp.Body.Close() }()
upToDate, date := checkIfUpToDate(c.File, resp)
if upToDate {
logrus.Infoln(filepath.Base(c.File), "is up to date")
return nil
}
file, err := ioutil.TempFile(filepath.Dir(c.File), "cache")
if err != nil {
return err
}
defer func() {
_ = file.Close()
_ = os.Remove(file.Name())
}()
logrus.Infoln("Downloading", filepath.Base(c.File), "from", url_helpers.CleanURL(c.URL))
writer := meter.NewWriter(
file,
c.TransferMeterFrequency,
meter.LabelledRateFormat(os.Stdout, "Downloading cache", getRemoteCacheSize(resp)),
)
// Close() is checked properly bellow, where the file handling is being finalized
defer func() { _ = writer.Close() }()
_, err = io.Copy(writer, resp.Body)
if err != nil {
return retryableErr{err: err}
}
err = os.Chtimes(file.Name(), time.Now(), date)
if err != nil {
return err
}
err = writer.Close()
if err != nil {
return err
}
err = os.Rename(file.Name(), c.File)
if err != nil {
return err
}
return nil
}
func (c *CacheExtractorCommand) getCache() (*http.Response, error) {
resp, err := c.getClient().Get(c.URL)
if err != nil {
return nil, retryableErr{err: err}
}
if resp.StatusCode == http.StatusNotFound {
_ = resp.Body.Close()
return nil, os.ErrNotExist
}
return resp, retryOnServerError(resp)
}
func (c *CacheExtractorCommand) Execute(cliContext *cli.Context) {
log.SetRunnerFormatter()
wd, err := os.Getwd()
if err != nil {
logrus.Fatalln("Unable to get working directory")
}
if c.File == "" {
warningln("Missing cache file")
}
if c.URL != "" {
err := c.doRetry(c.download)
if err != nil {
warningln(err)
}
} else {
logrus.Infoln(
"No URL provided, cache will not be downloaded from shared cache server. " +
"Instead a local version of cache will be extracted.")
}
f, size, err := openZip(c.File)
if os.IsNotExist(err) {
return
}
if err != nil {
logrus.Fatalln(err)
}
defer f.Close()
extractor, err := archive.NewExtractor(archive.Zip, f, size, wd)
if err != nil {
logrus.Fatalln(err)
}
err = extractor.Extract(context.Background())
if err != nil {
logrus.Fatalln(err)
}
}
func warningln(args interface{}) {
logrus.Warningln(args)
logrus.Exit(1)
}
func init() {
common.RegisterCommand2(
"cache-extractor",
"download and extract cache artifacts (internal)",
&CacheExtractorCommand{
retryHelper: retryHelper{
Retry: 2,
RetryTime: time.Second,
},
},
)
}
|