-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparse.go
60 lines (54 loc) · 1.54 KB
/
parse.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
package main
import (
"fmt"
"strings"
)
// injectField injects the custom field to the struct.
// TODO: we should modify ast tree instead of manipulating bytes directly, but it will need more research
// TODO: we should use text/template instead of fmt.Sprintf
func injectField(contents []byte, area textArea) (injected []byte) {
customFieldsContents := []byte("\n\t// custom fields\n")
for _, field := range area.fields {
customFieldsContents = append(
customFieldsContents,
[]byte(fmt.Sprintf("\t%s %s\n", field.fieldName, field.fieldType))...)
}
helperMethodContents := []byte("\n// custom fields getter/setter\n")
for _, field := range area.fields {
helperMethodContents = append(
helperMethodContents,
[]byte(fmt.Sprintf(
`func (m *%s) %s() %s {
return m.%s
}
func (m *%s) Set%s(in %s){
m.%s = in
}
`,
// getter params
area.name,
strings.Title(field.fieldName),
field.fieldType,
field.fieldName,
// setter params
area.name,
strings.Title(field.fieldName),
field.fieldType,
field.fieldName))...)
}
injected = append(
contents[:area.end],
append(helperMethodContents, contents[area.end:]...)...)
injected = append(
injected[:area.insertPos],
append(customFieldsContents, injected[area.insertPos:]...)...)
return
}
// fieldFromComment gets the custom customField information from comment.
func fieldFromComment(comment string) *customField {
match := rComment.FindStringSubmatch(comment)
if len(match) == 3 {
return &customField{fieldName: match[1], fieldType: match[2]}
}
return nil
}