我有一个自定义类型,我编写了自己的Marshall和Unmarshaller 问题是我想使用protobuf做同样的事情
我只想使用protobuf来实现相同的功能,以便可以实现自己的Marshall和Unmarshaller
syntax="proto3";
package main;
message NullInt64{
bool Valid = 1;
int64 Int64 = 2;
}
如果有效值为false,则返回null
字符串
type NullInt64 struct {
Int64 int64
Valid bool
}
// MarshalJSON try to marshaling to json
func (nt NullInt64) MarshalJSON() ([]byte, error) {
if nt.Valid {
return []byte(fmt.Sprintf(`%d`, nt.Int64)), nil
}
return []byte("null"), nil
}
// UnmarshalJSON try to unmarshal dae from input
func (nt *NullInt64) UnmarshalJSON(b []byte) error {
text := strings.ToLower(string(b))
if text == "null" {
nt.Valid = false
return nil
}
err := json.Unmarshal(b, &nt.Int64)
if err != nil {
return err
}
nt.Valid = true
return nil
}
答案 0 :(得分:1)
Protoc不会生成MarshalJSON
和UnmarshalJSON
函数。
您可以:
使用其他protobuf生成器(请参阅gogo/protobuf,很多extensions或fork golang / protobuf更改其generator)
通过将文件添加到该文件夹中,将自己的函数插入proto
包中。您可以手写或通过代码生成这些功能。