aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/trace/trace_rest.ba.go
diff options
context:
space:
mode:
Diffstat (limited to 'binapi/trace/trace_rest.ba.go')
-rw-r--r--binapi/trace/trace_rest.ba.go65
1 files changed, 65 insertions, 0 deletions
diff --git a/binapi/trace/trace_rest.ba.go b/binapi/trace/trace_rest.ba.go
new file mode 100644
index 0000000..d7d2244
--- /dev/null
+++ b/binapi/trace/trace_rest.ba.go
@@ -0,0 +1,65 @@
+// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
+
+package trace
+
+import (
+ "encoding/json"
+ "io/ioutil"
+ "net/http"
+)
+
+func RESTHandler(rpc RPCService) http.Handler {
+ mux := http.NewServeMux()
+ mux.HandleFunc("/trace_profile_add", func(w http.ResponseWriter, req *http.Request) {
+ var request = new(TraceProfileAdd)
+ b, err := ioutil.ReadAll(req.Body)
+ if err != nil {
+ http.Error(w, "read body failed", http.StatusBadRequest)
+ return
+ }
+ if err := json.Unmarshal(b, request); err != nil {
+ http.Error(w, "unmarshal data failed", http.StatusBadRequest)
+ return
+ }
+ reply, err := rpc.TraceProfileAdd(req.Context(), request)
+ if err != nil {
+ http.Error(w, "request failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ rep, err := json.MarshalIndent(reply, "", " ")
+ if err != nil {
+ http.Error(w, "marshal failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ w.Write(rep)
+ })
+ mux.HandleFunc("/trace_profile_del", func(w http.ResponseWriter, req *http.Request) {
+ var request = new(TraceProfileDel)
+ reply, err := rpc.TraceProfileDel(req.Context(), request)
+ if err != nil {
+ http.Error(w, "request failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ rep, err := json.MarshalIndent(reply, "", " ")
+ if err != nil {
+ http.Error(w, "marshal failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ w.Write(rep)
+ })
+ mux.HandleFunc("/trace_profile_show_config", func(w http.ResponseWriter, req *http.Request) {
+ var request = new(TraceProfileShowConfig)
+ reply, err := rpc.TraceProfileShowConfig(req.Context(), request)
+ if err != nil {
+ http.Error(w, "request failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ rep, err := json.MarshalIndent(reply, "", " ")
+ if err != nil {
+ http.Error(w, "marshal failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ w.Write(rep)
+ })
+ return http.HandlerFunc(mux.ServeHTTP)
+}