1 Star 0 Fork 2

Fengzhi/gkit

forked from menuiis/gkit 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
transform.go 851 Bytes
一键复制 编辑 原始数据 按行查看 历史
SongZhibin97 提交于 2022-07-18 18:07 . fix: parse
package parse_go
var GoToPBMapping = map[string]string{
"int": "int64",
"float": "double",
"int16": "int32",
"float16": "double",
"float64": "double",
"float32": "float",
"int32": "int32",
"int64": "int64",
"uint32": "uint32",
"uint64": "uint64",
"bool": "bool",
"string": "string",
"[]byte": "bytes",
}
// GoTypeToPB go type 转化成 pb type
func GoTypeToPB(s string) string {
if v, ok := GoToPBMapping[s]; ok {
return v
}
return s
}
// IsMappingKey 判断是否是 pb map的key类型
func IsMappingKey(key string) bool {
// Map key cannot be float, double, bytes, message, or enum types
switch key {
case "int32", "int64", "uint32", "uint64", "sint32", "sint64", "fixed32", "fixed64", "sfixed32", "sfixed64", "string":
return true
default:
return false
}
}
func addOne(a int) int {
return a + 1
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fengzhi_1/gkit.git
git@gitee.com:fengzhi_1/gkit.git
fengzhi_1
gkit
gkit
b6285053065d

搜索帮助