1 Star 0 Fork 0

小庄 / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
protolator_handlers.go 1.80 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. 2017 All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package rest
import (
"bytes"
"fmt"
"io/ioutil"
"net/http"
"reflect"
"github.com/golang/protobuf/proto"
"github.com/gorilla/mux"
"github.com/hyperledger/fabric/common/tools/protolator"
)
func getMsgType(r *http.Request) (proto.Message, error) {
vars := mux.Vars(r)
msgName := vars["msgName"] // Will not arrive is unset
msgType := proto.MessageType(msgName)
if msgType == nil {
return nil, fmt.Errorf("message name not found")
}
return reflect.New(msgType.Elem()).Interface().(proto.Message), nil
}
func Decode(w http.ResponseWriter, r *http.Request) {
msg, err := getMsgType(r)
if err != nil {
w.WriteHeader(http.StatusNotFound)
fmt.Fprintln(w, err)
return
}
buf, err := ioutil.ReadAll(r.Body)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintln(w, err)
return
}
err = proto.Unmarshal(buf, msg)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintln(w, err)
return
}
var buffer bytes.Buffer
err = protolator.DeepMarshalJSON(&buffer, msg)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintln(w, err)
return
}
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "application/json")
buffer.WriteTo(w)
}
func Encode(w http.ResponseWriter, r *http.Request) {
msg, err := getMsgType(r)
if err != nil {
w.WriteHeader(http.StatusNotFound)
fmt.Fprintln(w, err)
return
}
err = protolator.DeepUnmarshalJSON(r.Body, msg)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintln(w, err)
return
}
data, err := proto.Marshal(msg)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintln(w, err)
return
}
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "application/octet-stream")
w.Write(data)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhuanglicheng/fabric.git
git@gitee.com:zhuanglicheng/fabric.git
zhuanglicheng
fabric
fabric
v2.0.0-alpha

搜索帮助

344bd9b3 5694891 D2dac590 5694891