Check retval value and convert to error in generated RPC client code
[govpp.git] / binapi / abf / abf_rest.ba.go
diff --git a/binapi/abf/abf_rest.ba.go b/binapi/abf/abf_rest.ba.go
deleted file mode 100644 (file)
index e05e834..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
-
-package abf
-
-import (
-       "encoding/json"
-       "io/ioutil"
-       "net/http"
-)
-
-func RESTHandler(rpc RPCService) http.Handler {
-       mux := http.NewServeMux()
-       mux.HandleFunc("/abf_itf_attach_add_del", func(w http.ResponseWriter, req *http.Request) {
-               var request = new(AbfItfAttachAddDel)
-               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.AbfItfAttachAddDel(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("/abf_plugin_get_version", func(w http.ResponseWriter, req *http.Request) {
-               var request = new(AbfPluginGetVersion)
-               reply, err := rpc.AbfPluginGetVersion(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("/abf_policy_add_del", func(w http.ResponseWriter, req *http.Request) {
-               var request = new(AbfPolicyAddDel)
-               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.AbfPolicyAddDel(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)
-}