forked from goadesign/goa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
66 lines (62 loc) · 1.41 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package codegen
import (
"fmt"
"sort"
"strings"
"goa.design/goa/v3/expr"
)
// GoNativeTypeName returns the Go built-in type corresponding to the given
// primitive type. GoNativeType panics if t is not a primitive type.
func GoNativeTypeName(t expr.DataType) string {
switch t.Kind() {
case expr.BooleanKind:
return "bool"
case expr.IntKind:
return "int"
case expr.Int32Kind:
return "int32"
case expr.Int64Kind:
return "int64"
case expr.UIntKind:
return "uint"
case expr.UInt32Kind:
return "uint32"
case expr.UInt64Kind:
return "uint64"
case expr.Float32Kind:
return "float32"
case expr.Float64Kind:
return "float64"
case expr.StringKind:
return "string"
case expr.BytesKind:
return "[]byte"
case expr.AnyKind:
return "interface{}"
default:
panic(fmt.Sprintf("cannot compute native Go type for %T", t)) // bug
}
}
// AttributeTags computes the struct field tags from its metadata if any.
func AttributeTags(parent, att *expr.AttributeExpr) string {
var elems []string
keys := make([]string, len(att.Meta))
i := 0
for k := range att.Meta {
keys[i] = k
i++
}
sort.Strings(keys)
for _, key := range keys {
val := att.Meta[key]
if strings.HasPrefix(key, "struct:tag:") {
name := key[11:]
value := strings.Join(val, ",")
elems = append(elems, fmt.Sprintf("%s:\"%s\"", name, value))
}
}
if len(elems) > 0 {
return " `" + strings.Join(elems, " ") + "`"
}
return ""
}