lotus/build/paramfetch.go

149 lines
2.7 KiB
Go
Raw Normal View History

2019-10-02 17:20:30 +00:00
package build
import (
"encoding/hex"
"encoding/json"
"io"
"net/http"
"os"
"path/filepath"
"strings"
"sync"
2019-10-02 17:20:30 +00:00
rice "github.com/GeertJohan/go.rice"
logging "github.com/ipfs/go-log"
"github.com/minio/blake2b-simd"
"go.uber.org/multierr"
"golang.org/x/xerrors"
2019-10-02 17:20:30 +00:00
pb "gopkg.in/cheggaaa/pb.v1"
)
2019-10-02 20:29:40 +00:00
var log = logging.Logger("build")
2019-10-02 17:20:30 +00:00
2019-10-22 06:43:14 +00:00
//const gateway = "http://198.211.99.118/ipfs/"
2019-10-31 10:21:37 +00:00
const gateway = "https://ipfs.io/ipfs/"
2019-10-02 17:20:30 +00:00
const paramdir = "/var/tmp/filecoin-proof-parameters"
2019-10-02 20:29:40 +00:00
type paramFile struct {
Cid string `json:"cid"`
Digest string `json:"digest"`
2019-10-02 17:20:30 +00:00
SectorSize uint64 `json:"sector_size"`
}
type fetch struct {
wg sync.WaitGroup
fetchLk sync.Mutex
errs []error
}
2019-10-31 10:21:37 +00:00
func GetParams(storage bool) error {
2019-10-03 00:02:06 +00:00
if err := os.Mkdir(paramdir, 0755); err != nil && !os.IsExist(err) {
2019-10-02 23:36:33 +00:00
return err
}
2019-10-02 17:20:30 +00:00
var params map[string]paramFile
paramBytes := rice.MustFindBox("proof-params").MustBytes("parameters.json")
if err := json.Unmarshal(paramBytes, &params); err != nil {
return err
}
ft := &fetch{}
2019-10-02 17:20:30 +00:00
for name, info := range params {
if !SupportedSectorSize(info.SectorSize) {
2019-10-02 17:20:30 +00:00
continue
}
if !storage && strings.HasSuffix(name, ".params") {
continue
}
2019-10-31 10:21:37 +00:00
ft.maybeFetchAsync(name, info)
2019-10-02 17:20:30 +00:00
}
return ft.wait()
2019-10-02 17:20:30 +00:00
}
2019-10-31 10:21:37 +00:00
func (ft *fetch) maybeFetchAsync(name string, info paramFile) {
ft.wg.Add(1)
2019-10-02 17:20:30 +00:00
go func() {
defer ft.wg.Done()
path := filepath.Join(paramdir, name)
err := ft.checkFile(path, info)
if !os.IsNotExist(err) && err != nil {
log.Warn(err)
}
if err == nil {
return
2019-10-02 17:20:30 +00:00
}
ft.fetchLk.Lock()
defer ft.fetchLk.Unlock()
2019-10-31 10:21:37 +00:00
if err := doFetch(path, info); err != nil {
ft.errs = append(ft.errs, xerrors.Errorf("fetching file %s: %w", path, err))
2019-10-02 17:20:30 +00:00
}
}()
}
2019-10-02 17:20:30 +00:00
func (ft *fetch) checkFile(path string, info paramFile) error {
f, err := os.Open(path)
if err != nil {
return err
}
defer f.Close()
h := blake2b.New512()
if _, err := io.Copy(h, f); err != nil {
return err
}
sum := h.Sum(nil)
strSum := hex.EncodeToString(sum[:16])
if strSum == info.Digest {
return nil
2019-10-02 17:20:30 +00:00
}
return xerrors.Errorf("checksum mismatch in param file %s, %s != %s", path, strSum, info.Digest)
}
func (ft *fetch) wait() error {
ft.wg.Wait()
return multierr.Combine(ft.errs...)
2019-10-02 17:20:30 +00:00
}
2019-10-31 10:21:37 +00:00
func doFetch(out string, info paramFile) error {
gw := os.Getenv("IPFS_GATEWAY")
if gw == "" {
gw = gateway
}
log.Infof("Fetching %s from %s", out, gw)
2019-10-02 17:20:30 +00:00
2019-10-31 10:21:37 +00:00
resp, err := http.Get(gw + info.Cid)
2019-10-02 20:29:40 +00:00
if err != nil {
return err
}
defer resp.Body.Close()
outf, err := os.Create(out)
if err != nil {
return err
}
defer outf.Close()
bar := pb.New64(resp.ContentLength)
2019-10-02 17:20:30 +00:00
bar.Units = pb.U_BYTES
bar.ShowSpeed = true
bar.Start()
2019-10-02 20:29:40 +00:00
_, err = io.Copy(outf, bar.NewProxyReader(resp.Body))
2019-10-02 17:20:30 +00:00
2019-10-02 20:29:40 +00:00
bar.Finish()
2019-10-02 17:20:30 +00:00
return err
}