-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.go
82 lines (67 loc) · 2.03 KB
/
server.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package main
import (
"encoding/base64"
"flag"
"fmt"
"io"
"log"
"net/http"
"strconv"
"strings"
)
var (
debug = false
port = 8002
hostPublic = "passthroughtools.org"
)
func cpuPin(w http.ResponseWriter, r *http.Request) {
if !debug {
if r.Host != hostPublic {
log.Printf("got invalid host, host=%s\n", r.Host)
http.Error(w, "Bad Request", http.StatusBadRequest)
return
}
}
if r.Method != http.MethodPost {
log.Printf("got invalid method, method=%s\n", r.Method)
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
vcpuStr := strings.Clone(r.FormValue("vcpu"))
lscpuStr := strings.Clone(r.FormValue("lscpu"))
vcpu, err := strconv.Atoi(vcpuStr)
if err != nil {
log.Printf("unable to parse vcpu, value=%s\n", vcpuStr)
http.Error(w, "Bad Request, unable to parse vcpu value", http.StatusBadRequest)
return
}
lscpuEncoded := base64.StdEncoding.EncodeToString([]byte(lscpuStr))
log.Printf("received request, vcpu=%d, lscpu=%s", vcpu, lscpuEncoded)
suggestion, err := Suggest(lscpuStr, vcpu)
if err != nil {
log.Printf("unable to suggest response, err=%v\n", err)
http.Error(w, fmt.Sprintf("Internal Server Error, unable to suggest response, error=%s", err), http.StatusInternalServerError)
return
}
fmt.Printf("suggestion=%v", suggestion)
wb, err := FormatSuggestion(suggestion)
if err != nil {
log.Printf("unable to format suggestion, err=%v\n", err)
http.Error(w, fmt.Sprintf("Internal Server Error, unable to format suggestion, error=%s", err), http.StatusInternalServerError)
}
_, err = io.WriteString(w, *wb)
if err != nil {
log.Printf("unable to write string, err=%v\n", err)
}
}
func main() {
flag.BoolVar(&debug, "d", false, "debug mode")
flag.Parse()
log.Printf("starting server at port=%d, debug=%v\n", port, debug)
mux := http.NewServeMux()
mux.HandleFunc("/v1/cpupin/", cpuPin)
server := &http.Server{Addr: "127.0.0.1:" + strconv.Itoa(port), Handler: mux}
if err := server.ListenAndServe(); err != nil {
log.Fatal("http.ListenAndServe failed", err)
}
}