2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2012-06-29 07:53:47 +00:00
|
|
|
"encoding/hex"
|
2012-09-21 04:03:40 +00:00
|
|
|
"fmt"
|
2011-12-16 14:51:26 +00:00
|
|
|
"io/ioutil"
|
2012-07-30 08:37:10 +00:00
|
|
|
"mime"
|
2012-06-29 07:53:47 +00:00
|
|
|
"net/http"
|
2013-01-22 23:07:51 +00:00
|
|
|
"path"
|
2013-02-10 11:49:51 +00:00
|
|
|
"code.google.com/p/weed-fs/go/util"
|
2012-07-16 17:15:16 +00:00
|
|
|
"strconv"
|
2011-12-16 14:51:26 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2012-12-21 08:36:55 +00:00
|
|
|
const (
|
2013-01-17 08:56:56 +00:00
|
|
|
NeedleHeaderSize = 16 //should never change this
|
|
|
|
NeedlePaddingSize = 8
|
2012-12-22 20:38:09 +00:00
|
|
|
NeedleChecksumSize = 4
|
2012-12-21 08:36:55 +00:00
|
|
|
)
|
|
|
|
|
2011-12-19 05:59:37 +00:00
|
|
|
type Needle struct {
|
2012-12-22 10:10:45 +00:00
|
|
|
Cookie uint32 "random number to mitigate brute force lookups"
|
|
|
|
Id uint64 "needle id"
|
|
|
|
Size uint32 "sum of DataSize,Data,NameSize,Name,MimeSize,Mime"
|
2012-12-21 10:13:02 +00:00
|
|
|
|
|
|
|
DataSize uint32 "Data size" //version2
|
2012-12-21 08:36:55 +00:00
|
|
|
Data []byte "The actual file data"
|
2012-12-21 10:13:02 +00:00
|
|
|
Flags byte "boolean flags" //version2
|
2012-12-21 08:36:55 +00:00
|
|
|
NameSize uint8 //version2
|
|
|
|
Name []byte "maximum 256 characters" //version2
|
|
|
|
MimeSize uint8 //version2
|
|
|
|
Mime []byte "maximum 256 characters" //version2
|
2012-12-21 10:13:02 +00:00
|
|
|
|
2012-11-20 08:42:45 +00:00
|
|
|
Checksum CRC "CRC32 to check integrity"
|
2011-12-20 09:00:01 +00:00
|
|
|
Padding []byte "Aligned to 8 bytes"
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
|
2012-09-21 04:03:40 +00:00
|
|
|
func NewNeedle(r *http.Request) (n *Needle, fname string, e error) {
|
2012-06-29 07:53:47 +00:00
|
|
|
|
2011-12-19 05:59:37 +00:00
|
|
|
n = new(Needle)
|
|
|
|
form, fe := r.MultipartReader()
|
|
|
|
if fe != nil {
|
2012-09-21 04:03:40 +00:00
|
|
|
fmt.Println("MultipartReader [ERROR]", fe)
|
2012-07-03 06:46:26 +00:00
|
|
|
e = fe
|
|
|
|
return
|
2011-12-19 05:59:37 +00:00
|
|
|
}
|
2012-11-20 08:42:45 +00:00
|
|
|
part, fe := form.NextPart()
|
|
|
|
if fe != nil {
|
|
|
|
fmt.Println("Reading Multi part [ERROR]", fe)
|
|
|
|
e = fe
|
|
|
|
return
|
|
|
|
}
|
2012-09-21 04:03:40 +00:00
|
|
|
fname = part.FileName()
|
2013-01-22 23:07:51 +00:00
|
|
|
fname = path.Base(fname)
|
2012-07-30 08:37:10 +00:00
|
|
|
data, _ := ioutil.ReadAll(part)
|
|
|
|
dotIndex := strings.LastIndex(fname, ".")
|
2012-12-22 10:10:45 +00:00
|
|
|
ext, mtype := "", ""
|
2012-07-30 08:37:10 +00:00
|
|
|
if dotIndex > 0 {
|
2012-12-22 10:10:45 +00:00
|
|
|
ext = fname[dotIndex:]
|
|
|
|
mtype = mime.TypeByExtension(ext)
|
|
|
|
}
|
|
|
|
contentType := part.Header.Get("Content-Type")
|
|
|
|
if contentType != "" && mtype != contentType && len(contentType) < 256 {
|
|
|
|
n.Mime = []byte(contentType)
|
2012-12-22 20:38:09 +00:00
|
|
|
n.SetHasMime()
|
2012-12-22 10:10:45 +00:00
|
|
|
mtype = contentType
|
|
|
|
}
|
|
|
|
if IsGzippable(ext, mtype) {
|
2013-01-17 08:56:56 +00:00
|
|
|
if data, e = GzipData(data); e != nil {
|
|
|
|
return
|
|
|
|
}
|
2012-12-22 10:10:45 +00:00
|
|
|
n.SetGzipped()
|
|
|
|
}
|
|
|
|
if ext == ".gz" {
|
|
|
|
n.SetGzipped()
|
|
|
|
}
|
|
|
|
if len(fname) < 256 {
|
|
|
|
if strings.HasSuffix(fname, ".gz") {
|
|
|
|
n.Name = []byte(fname[:len(fname)-3])
|
|
|
|
} else {
|
|
|
|
n.Name = []byte(fname)
|
2012-07-30 08:37:10 +00:00
|
|
|
}
|
2012-12-22 20:38:09 +00:00
|
|
|
n.SetHasName()
|
2012-07-30 08:37:10 +00:00
|
|
|
}
|
2012-12-22 10:10:45 +00:00
|
|
|
|
2011-12-19 05:59:37 +00:00
|
|
|
n.Data = data
|
2012-09-25 22:37:13 +00:00
|
|
|
n.Checksum = NewCRC(data)
|
2011-12-16 14:51:26 +00:00
|
|
|
|
2012-06-29 07:53:47 +00:00
|
|
|
commaSep := strings.LastIndex(r.URL.Path, ",")
|
2011-12-22 04:04:47 +00:00
|
|
|
dotSep := strings.LastIndex(r.URL.Path, ".")
|
|
|
|
fid := r.URL.Path[commaSep+1:]
|
|
|
|
if dotSep > 0 {
|
2012-06-29 07:53:47 +00:00
|
|
|
fid = r.URL.Path[commaSep+1 : dotSep]
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
n.ParsePath(fid)
|
2011-12-19 05:59:37 +00:00
|
|
|
|
|
|
|
return
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2011-12-22 04:04:47 +00:00
|
|
|
func (n *Needle) ParsePath(fid string) {
|
|
|
|
length := len(fid)
|
|
|
|
if length <= 8 {
|
2012-07-16 07:41:39 +00:00
|
|
|
if length > 0 {
|
2012-08-24 08:15:27 +00:00
|
|
|
println("Invalid fid", fid, "length", length)
|
2012-07-16 07:41:39 +00:00
|
|
|
}
|
2011-12-20 09:00:01 +00:00
|
|
|
return
|
|
|
|
}
|
2012-07-16 17:15:16 +00:00
|
|
|
delta := ""
|
|
|
|
deltaIndex := strings.LastIndex(fid, "_")
|
|
|
|
if deltaIndex > 0 {
|
|
|
|
fid, delta = fid[0:deltaIndex], fid[deltaIndex+1:]
|
|
|
|
}
|
2012-08-24 06:06:15 +00:00
|
|
|
n.Id, n.Cookie = ParseKeyHash(fid)
|
2012-07-16 17:15:16 +00:00
|
|
|
if delta != "" {
|
|
|
|
d, e := strconv.ParseUint(delta, 10, 64)
|
|
|
|
if e == nil {
|
2012-08-24 06:06:15 +00:00
|
|
|
n.Id += d
|
2012-07-16 17:15:16 +00:00
|
|
|
}
|
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
|
2012-06-29 07:53:47 +00:00
|
|
|
func ParseKeyHash(key_hash_string string) (uint64, uint32) {
|
2012-12-21 08:36:55 +00:00
|
|
|
key_hash_bytes, khe := hex.DecodeString(key_hash_string)
|
|
|
|
key_hash_len := len(key_hash_bytes)
|
|
|
|
if khe != nil || key_hash_len <= 4 {
|
|
|
|
println("Invalid key_hash", key_hash_string, "length:", key_hash_len, "error", khe)
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
key := util.BytesToUint64(key_hash_bytes[0 : key_hash_len-4])
|
|
|
|
hash := util.BytesToUint32(key_hash_bytes[key_hash_len-4 : key_hash_len])
|
|
|
|
return key, hash
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|