|
|
@ -170,6 +170,8 @@ func (p *TagParser) Info(field, tag string) (nmap.SMap, error) {
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Int64String int64 `json:",string"`
|
|
|
|
// Int64String int64 `json:",string"`
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
// Field int `json:",string,formatter=2006-01-02"`
|
|
|
|
|
|
|
|
//
|
|
|
|
// Returns:
|
|
|
|
// Returns:
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// {
|
|
|
|
// {
|
|
|
@ -181,7 +183,8 @@ func (p *TagParser) Info(field, tag string) (nmap.SMap, error) {
|
|
|
|
func ParseTagValueDefault(field, tagVal string) (mp nmap.SMap, err error) {
|
|
|
|
func ParseTagValueDefault(field, tagVal string) (mp nmap.SMap, err error) {
|
|
|
|
ss := nstr.SplitTrimmed(tagVal, ",")
|
|
|
|
ss := nstr.SplitTrimmed(tagVal, ",")
|
|
|
|
ln := len(ss)
|
|
|
|
ln := len(ss)
|
|
|
|
if ln == 0 || tagVal == "," {
|
|
|
|
|
|
|
|
|
|
|
|
if tagVal == "," {
|
|
|
|
return nmap.SMap{"name": field}, nil
|
|
|
|
return nmap.SMap{"name": field}, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -195,10 +198,22 @@ func ParseTagValueDefault(field, tagVal string) (mp nmap.SMap, err error) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ln > 1
|
|
|
|
// ln > 1
|
|
|
|
|
|
|
|
// valid field name
|
|
|
|
|
|
|
|
if ss[0] != "-" {
|
|
|
|
mp["name"] = ss[0]
|
|
|
|
mp["name"] = ss[0]
|
|
|
|
|
|
|
|
}
|
|
|
|
// other settings: omitempty, string
|
|
|
|
// other settings: omitempty, string
|
|
|
|
for _, key := range ss[1:] {
|
|
|
|
for _, tt := range ss[1:] {
|
|
|
|
mp[key] = "true"
|
|
|
|
if tt == "" {
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// kv
|
|
|
|
|
|
|
|
if !strings.ContainsRune(tt, '=') {
|
|
|
|
|
|
|
|
mp[tt] = "true"
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
key, val := nstr.TrimCut(tt, "=")
|
|
|
|
|
|
|
|
mp[key] = val
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|