swarm: stdin upload via tmp file

This commit is contained in:
nolash 2017-03-04 13:51:28 +01:00
parent 16970b2bf1
commit 9f7d7f2e3a
2 changed files with 73 additions and 66 deletions

View file

@ -116,6 +116,10 @@ var (
Name: "stdin",
Usage: "reads data to be uploaded from stdin",
}
SwarmUploadMimeType = cli.StringFlag{
Name: "mime",
Usage: "force mime type",
}
CorsStringFlag = cli.StringFlag{
Name: "corsdomain",
Usage: "Domain on which to send Access-Control-Allow-Origin header (multiple domains can be supplied separated by a ',')",
@ -240,6 +244,7 @@ Cleans database of corrupted entries.
SwarmWantManifestFlag,
SwarmUploadDefaultPath,
SwarmUpFromStdinFlag,
SwarmUploadMimeType,
}
app.Flags = append(app.Flags, debug.Flags...)
app.Before = func(ctx *cli.Context) error {

View file

@ -30,16 +30,45 @@ import (
"path"
"path/filepath"
"strings"
"sync"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/log"
"gopkg.in/urfave/cli.v1"
)
func getStdin(b []byte) (int, error) {
s := os.Stdin
return s.Read(b)
var (
MAX_STDIN_SIZE = 1024 * 1000 * 100
)
func swapStdin() (size int, path string) {
b := make([]byte, 1024)
size = 0
td, err := ioutil.TempDir("", "swarm-stdin")
if err != nil {
utils.Fatalf("Could not create temporary directory: %s", err)
}
path = filepath.Join(td, "data")
f, err := os.Create(path)
if err != nil {
utils.Fatalf("Could not create temporary file: %s", err)
}
r := io.TeeReader(os.Stdin, f)
for true {
n, err := r.Read(b)
if err == io.EOF {
break
} else if err != nil {
utils.Fatalf("STDIN Read failed: %s", err)
} else if n > MAX_STDIN_SIZE {
utils.Fatalf("STDIN beyond max byte limit %d", MAX_STDIN_SIZE)
}
size += n
}
return
}
func upload(ctx *cli.Context) {
@ -51,58 +80,23 @@ func upload(ctx *cli.Context) {
wantManifest = ctx.GlobalBoolT(SwarmWantManifestFlag.Name)
defaultPath = ctx.GlobalString(SwarmUploadDefaultPath.Name)
fromStdin = ctx.GlobalBool(SwarmUpFromStdinFlag.Name)
mimeType = ctx.GlobalString(SwarmUploadMimeType.Name)
)
var client = &client{api: bzzapi}
var entry manifestEntry
data := make([]byte, 1024*1000)
datalength := int(0)
var file string
if len(args) != 1 {
if fromStdin {
var err error
datalength, err = getStdin(data)
if err != nil {
utils.Fatalf("Read from stdin failed")
}
_, file = swapStdin()
} else {
utils.Fatalf("Need filename as the first and only argument")
}
}
// if we have data already (stdin)
if datalength > 0 {
var hash string
wg := &sync.WaitGroup{}
pr, pw := io.Pipe()
go func(hash *string, wg *sync.WaitGroup) {
wg.Add(1)
mhash, err := client.postRaw("text/plain", int64(datalength), pr)
*hash = mhash
if err != nil {
utils.Fatalf("Failed to post data: %v", err)
}
wg.Done()
}(&hash, wg)
_, err := pw.Write(data[:datalength])
if err != nil {
utils.Fatalf("Failed to write to HTTP pipe: %v", err)
}
pw.Close()
wg.Wait()
entry.Hash = hash
entry.ContentType = "text/plain"
} else {
file := args[0]
file = args[0]
}
fi, err := os.Stat(expandPath(file))
if err != nil {
utils.Fatalf("Failed to stat file: %v", err)
@ -121,10 +115,12 @@ func upload(ctx *cli.Context) {
fmt.Println(mhash)
return
}
entry, err = client.uploadFile(file, fi)
entry, err = client.uploadFile(file, fi, mimeType)
if err != nil {
utils.Fatalf("Upload failed: %v", err)
}
if fromStdin {
os.RemoveAll(filepath.Dir(file))
}
mroot := manifest{[]manifestEntry{entry}}
if !wantManifest {
@ -211,11 +207,17 @@ func (c *client) uploadDirectory(dir string, defaultPath string) (string, error)
return mhash, err
}
func (c *client) uploadFile(file string, fi os.FileInfo) (manifestEntry, error) {
func (c *client) uploadFile(file string, fi os.FileInfo, mimetype_ string) (manifestEntry, error) {
var mimetype string
hash, err := c.uploadFileContent(file, fi)
if mimetype_ != "" {
mimetype = mimetype_
} else {
mimetype = mime.TypeByExtension(filepath.Ext(fi.Name()))
}
m := manifestEntry{
Hash: hash,
ContentType: mime.TypeByExtension(filepath.Ext(fi.Name())),
ContentType: mimetype,
}
return m, err
}