-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpServer.go
49 lines (40 loc) · 1 KB
/
httpServer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package cache_go
import (
"cache-go/byteString"
"cache-go/msg"
"context"
"github.com/golang/protobuf/proto"
"net/http"
)
var DefaultRouterPath = "cache_go"
type httpServer struct {
localAddr string
hP *httpPeerPicker
}
func NewHttpServer(localAddr string) *httpServer {
return &httpServer{
localAddr: localAddr,
hP: NewHttpPeerPicker(localAddr),
}
}
func (hs *httpServer) Start(localAddr string) {
_ = http.ListenAndServe(localAddr, hs)
}
func (hs *httpServer) ServeHTTP(rw http.ResponseWriter, re *http.Request) {
var (
getResponse *msg.GetResponse
message []byte
key, cacheName string
err error
)
getResponse = &msg.GetResponse{}
key, cacheName = re.Header.Get("key"), re.Header.Get("cacheName")
var val string
err = Get(context.Background(), key, cacheName, byteString.NewStringSkin(&val))
getResponse.Error = err.Error()
getResponse.Val = val
message, _ = proto.Marshal(getResponse)
_, _ = rw.Write(message)
rw.WriteHeader(http.StatusOK)
return
}