2012-08-07 08:29:22 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2012-08-24 05:46:54 +00:00
|
|
|
"log"
|
|
|
|
"math/rand"
|
|
|
|
"mime"
|
|
|
|
"net/http"
|
|
|
|
"pkg/storage"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
2012-08-07 08:29:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2012-08-24 05:46:54 +00:00
|
|
|
cmdVolume.Run = runVolume // break init cycle
|
|
|
|
IsDebug = cmdVolume.Flag.Bool("debug", false, "enable debug mode")
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var cmdVolume = &Command{
|
2012-08-24 05:46:54 +00:00
|
|
|
UsageLine: "volume -port=8080 -dir=/tmp -volumes=0-99 -publicUrl=server_name:8080 -mserver=localhost:9333",
|
|
|
|
Short: "start a volume server",
|
|
|
|
Long: `start a volume server to provide storage spaces
|
2012-08-07 08:29:22 +00:00
|
|
|
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2012-09-04 03:40:38 +00:00
|
|
|
vport = cmdVolume.Flag.Int("port", 8080, "http listen port")
|
2012-08-24 05:46:54 +00:00
|
|
|
chunkFolder = cmdVolume.Flag.String("dir", "/tmp", "data directory to store files")
|
|
|
|
volumes = cmdVolume.Flag.String("volumes", "0,1-3,4", "comma-separated list of volume ids or range of ids")
|
|
|
|
publicUrl = cmdVolume.Flag.String("publicUrl", "localhost:8080", "public url to serve data read")
|
|
|
|
metaServer = cmdVolume.Flag.String("mserver", "localhost:9333", "master directory server to store mappings")
|
2012-09-04 03:40:38 +00:00
|
|
|
vpulse = cmdVolume.Flag.Int("pulseSeconds", 5, "number of seconds between heartbeats")
|
2012-08-07 08:29:22 +00:00
|
|
|
|
2012-08-24 05:46:54 +00:00
|
|
|
store *storage.Store
|
2012-08-07 08:29:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func statusHandler(w http.ResponseWriter, r *http.Request) {
|
2012-08-24 05:46:54 +00:00
|
|
|
writeJson(w, r, store.Status())
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|
|
|
|
func addVolumeHandler(w http.ResponseWriter, r *http.Request) {
|
2012-08-24 05:46:54 +00:00
|
|
|
store.AddVolume(r.FormValue("volume"))
|
|
|
|
writeJson(w, r, store.Status())
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|
|
|
|
func storeHandler(w http.ResponseWriter, r *http.Request) {
|
2012-08-24 05:46:54 +00:00
|
|
|
switch r.Method {
|
|
|
|
case "GET":
|
|
|
|
GetHandler(w, r)
|
|
|
|
case "DELETE":
|
|
|
|
DeleteHandler(w, r)
|
|
|
|
case "POST":
|
|
|
|
PostHandler(w, r)
|
|
|
|
}
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|
|
|
|
func GetHandler(w http.ResponseWriter, r *http.Request) {
|
2012-08-24 05:46:54 +00:00
|
|
|
n := new(storage.Needle)
|
|
|
|
vid, fid, ext := parseURLPath(r.URL.Path)
|
|
|
|
volumeId, _ := storage.NewVolumeId(vid)
|
|
|
|
n.ParsePath(fid)
|
|
|
|
|
|
|
|
if *IsDebug {
|
|
|
|
log.Println("volume", volumeId, "reading", n)
|
|
|
|
}
|
|
|
|
cookie := n.Cookie
|
|
|
|
count, e := store.Read(volumeId, n)
|
|
|
|
if *IsDebug {
|
|
|
|
log.Println("read bytes", count, "error", e)
|
|
|
|
}
|
|
|
|
if n.Cookie != cookie {
|
|
|
|
log.Println("request with unmaching cookie from ", r.RemoteAddr, "agent", r.UserAgent())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ext != "" {
|
|
|
|
mtype := mime.TypeByExtension(ext)
|
|
|
|
w.Header().Set("Content-Type", mtype)
|
|
|
|
if storage.IsCompressable(ext, mtype) {
|
|
|
|
if strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
|
|
|
|
w.Header().Set("Content-Encoding", "gzip")
|
|
|
|
} else {
|
|
|
|
n.Data = storage.UnGzipData(n.Data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
w.Write(n.Data)
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|
|
|
|
func PostHandler(w http.ResponseWriter, r *http.Request) {
|
2012-08-24 05:46:54 +00:00
|
|
|
vid, _, _ := parseURLPath(r.URL.Path)
|
2012-09-04 03:40:38 +00:00
|
|
|
volumeId, e := storage.NewVolumeId(vid)
|
2012-08-24 05:46:54 +00:00
|
|
|
if e != nil {
|
|
|
|
writeJson(w, r, e)
|
|
|
|
} else {
|
|
|
|
needle, ne := storage.NewNeedle(r)
|
|
|
|
if ne != nil {
|
|
|
|
writeJson(w, r, ne)
|
|
|
|
} else {
|
|
|
|
ret := store.Write(volumeId, needle)
|
|
|
|
m := make(map[string]uint32)
|
|
|
|
m["size"] = ret
|
|
|
|
writeJson(w, r, m)
|
|
|
|
}
|
|
|
|
}
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|
|
|
|
func DeleteHandler(w http.ResponseWriter, r *http.Request) {
|
2012-08-24 05:46:54 +00:00
|
|
|
n := new(storage.Needle)
|
|
|
|
vid, fid, _ := parseURLPath(r.URL.Path)
|
2012-09-04 03:40:38 +00:00
|
|
|
volumeId, _ := storage.NewVolumeId(vid)
|
2012-08-24 05:46:54 +00:00
|
|
|
n.ParsePath(fid)
|
|
|
|
|
|
|
|
if *IsDebug {
|
|
|
|
log.Println("deleting", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
cookie := n.Cookie
|
|
|
|
count, ok := store.Read(volumeId, n)
|
|
|
|
|
|
|
|
if ok != nil {
|
|
|
|
m := make(map[string]uint32)
|
|
|
|
m["size"] = 0
|
|
|
|
writeJson(w, r, m)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.Cookie != cookie {
|
|
|
|
log.Println("delete with unmaching cookie from ", r.RemoteAddr, "agent", r.UserAgent())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
n.Size = 0
|
|
|
|
store.Delete(volumeId, n)
|
|
|
|
m := make(map[string]uint32)
|
|
|
|
m["size"] = uint32(count)
|
|
|
|
writeJson(w, r, m)
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|
|
|
|
func parseURLPath(path string) (vid, fid, ext string) {
|
2012-08-24 05:46:54 +00:00
|
|
|
sepIndex := strings.LastIndex(path, "/")
|
|
|
|
commaIndex := strings.LastIndex(path[sepIndex:], ",")
|
|
|
|
if commaIndex <= 0 {
|
|
|
|
if "favicon.ico" != path[sepIndex+1:] {
|
|
|
|
log.Println("unknown file id", path[sepIndex+1:])
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
dotIndex := strings.LastIndex(path[sepIndex:], ".")
|
|
|
|
vid = path[sepIndex+1 : commaIndex]
|
|
|
|
fid = path[commaIndex+1:]
|
|
|
|
ext = ""
|
|
|
|
if dotIndex > 0 {
|
|
|
|
fid = path[commaIndex+1 : dotIndex]
|
|
|
|
ext = path[dotIndex:]
|
|
|
|
}
|
|
|
|
return
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func runVolume(cmd *Command, args []string) bool {
|
2012-08-24 05:46:54 +00:00
|
|
|
//TODO: now default to 1G, this value should come from server?
|
2012-09-03 22:41:24 +00:00
|
|
|
store = storage.NewStore(*vport, *publicUrl, *chunkFolder, *volumes)
|
2012-08-24 05:46:54 +00:00
|
|
|
defer store.Close()
|
|
|
|
http.HandleFunc("/", storeHandler)
|
|
|
|
http.HandleFunc("/status", statusHandler)
|
|
|
|
http.HandleFunc("/add_volume", addVolumeHandler)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
store.Join(*metaServer)
|
2012-09-04 03:40:38 +00:00
|
|
|
time.Sleep(time.Duration(float32(*vpulse*1e3)*(1+rand.Float32())) * time.Millisecond)
|
2012-08-24 05:46:54 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
log.Println("store joined at", *metaServer)
|
|
|
|
|
2012-09-03 22:41:24 +00:00
|
|
|
log.Println("Start storage service at http://127.0.0.1:"+strconv.Itoa(*vport), "public url", *publicUrl)
|
|
|
|
e := http.ListenAndServe(":"+strconv.Itoa(*vport), nil)
|
2012-08-24 05:46:54 +00:00
|
|
|
if e != nil {
|
|
|
|
log.Fatalf("Fail to start:", e)
|
|
|
|
}
|
|
|
|
return true
|
2012-08-07 08:29:22 +00:00
|
|
|
}
|