Fetch the repository succeeded.
package netutil
import (
"bytes"
"encoding/json"
)
// JsoniterMsgPacker packs and unpacks messages in JSON format
type JSONMsgPacker struct{}
// PackMsg packs message to bytes of JSON format
func (mp JSONMsgPacker) PackMsg(msg interface{}, buf []byte) ([]byte, error) {
buffer := bytes.NewBuffer(buf)
jsonEncoder := json.NewEncoder(buffer)
err := jsonEncoder.Encode(msg)
if err != nil {
return buf, err
}
buf = buffer.Bytes()
return buf[:len(buf)-1], nil // encoder always put '\n' at the end, we trim it
}
// UnpackMsg unpacks bytes of JSON format to message
func (mp JSONMsgPacker) UnpackMsg(data []byte, msg interface{}) error {
err := json.Unmarshal(data, msg)
return err
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。