Browse Source

support gzip file upload, fix problem during replication of gzipped data

pull/2/head
Chris Lu 12 years ago
parent
commit
70fe7e6b5d
  1. 6
      go/operation/upload_content.go
  2. 2
      go/replication/store_replicate.go
  3. 6
      go/storage/needle.go
  4. 2
      go/weed/upload.go

6
go/operation/upload_content.go

@ -21,12 +21,16 @@ type UploadResult struct {
Error string Error string
} }
func Upload(uploadUrl string, filename string, reader io.Reader) (*UploadResult, error) {
func Upload(uploadUrl string, filename string, reader io.Reader, isGzipped bool) (*UploadResult, error) {
body_buf := bytes.NewBufferString("") body_buf := bytes.NewBufferString("")
body_writer := multipart.NewWriter(body_buf) body_writer := multipart.NewWriter(body_buf)
h := make(textproto.MIMEHeader) h := make(textproto.MIMEHeader)
h.Set("Content-Disposition", fmt.Sprintf(`form-data; name="file"; filename="%s"`, filename)) h.Set("Content-Disposition", fmt.Sprintf(`form-data; name="file"; filename="%s"`, filename))
h.Set("Content-Type", mime.TypeByExtension(strings.ToLower(filepath.Ext(filename)))) h.Set("Content-Type", mime.TypeByExtension(strings.ToLower(filepath.Ext(filename))))
println("content is gzipped", isGzipped)
if isGzipped {
h.Set("Content-Encoding", "gzip")
}
file_writer, err := body_writer.CreatePart(h) file_writer, err := body_writer.CreatePart(h)
if err != nil { if err != nil {
log.Println("error creating form file", err) log.Println("error creating form file", err)

2
go/replication/store_replicate.go

@ -25,7 +25,7 @@ func ReplicatedWrite(masterNode string, s *storage.Store, volumeId storage.Volum
if needToReplicate { //send to other replica locations if needToReplicate { //send to other replica locations
if r.FormValue("type") != "replicate" { if r.FormValue("type") != "replicate" {
if !distributedOperation(masterNode, s, volumeId, func(location operation.Location) bool { if !distributedOperation(masterNode, s, volumeId, func(location operation.Location) bool {
_, err := operation.Upload("http://"+location.Url+r.URL.Path+"?type=replicate&ts="+strconv.FormatUint(needle.LastModified,10), string(needle.Name), bytes.NewReader(needle.Data))
_, err := operation.Upload("http://"+location.Url+r.URL.Path+"?type=replicate&ts="+strconv.FormatUint(needle.LastModified,10), string(needle.Name), bytes.NewReader(needle.Data), needle.IsGzipped())
return err == nil return err == nil
}) { }) {
ret = 0 ret = 0

6
go/storage/needle.go

@ -4,8 +4,8 @@ import (
"code.google.com/p/weed-fs/go/util" "code.google.com/p/weed-fs/go/util"
"encoding/hex" "encoding/hex"
"errors" "errors"
"log"
"io/ioutil" "io/ioutil"
"log"
"mime" "mime"
"net/http" "net/http"
"path" "path"
@ -73,7 +73,9 @@ func NewNeedle(r *http.Request) (n *Needle, e error) {
n.SetHasMime() n.SetHasMime()
mtype = contentType mtype = contentType
} }
if IsGzippable(ext, mtype) {
if part.Header.Get("Content-Encoding") == "gzip" {
n.SetGzipped()
} else if IsGzippable(ext, mtype) {
if data, e = GzipData(data); e != nil { if data, e = GzipData(data); e != nil {
return return
} }

2
go/weed/upload.go

@ -78,7 +78,7 @@ func upload(filename string, server string, fid string) (int, error) {
debug("Failed to stat file:", filename) debug("Failed to stat file:", filename)
return 0, fiErr return 0, fiErr
} }
ret, e := operation.Upload("http://"+server+"/"+fid+"?ts="+strconv.Itoa(int(fi.ModTime().Unix())), path.Base(filename), fh)
ret, e := operation.Upload("http://"+server+"/"+fid+"?ts="+strconv.Itoa(int(fi.ModTime().Unix())), path.Base(filename), fh, false)
if e != nil { if e != nil {
return 0, e return 0, e
} }

Loading…
Cancel
Save