-
Notifications
You must be signed in to change notification settings - Fork 28
/
src.go
150 lines (140 loc) · 2.9 KB
/
src.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package parser
import (
"github.com/Sirupsen/logrus"
"github.com/kujtimiihoxha/gk/templates"
"go/format"
"golang.org/x/tools/imports"
)
type ParsedSrc interface {
String() string
}
type File struct {
Package string
Imports []NamedTypeValue
Constants []NamedTypeValue
Vars []NamedTypeValue
Interfaces []Interface
Structs []Struct
Methods []Method
}
type Struct struct {
Name string
Vars []NamedTypeValue
}
type Interface struct {
Name string
Methods []Method
}
type Method struct {
Name string
Struct NamedTypeValue
Body string
Parameters []NamedTypeValue
Results []NamedTypeValue
}
type NamedTypeValue struct {
Name string
Type string
Value string
HasValue bool
}
func (f *File) String() string {
s, err := template.NewEngine().Execute("file", f)
if err != nil {
logrus.Panic(err)
}
dt, err := imports.Process(f.Package, []byte(s), nil)
if err != nil {
logrus.Panic(err)
}
return string(dt)
}
func (m *Method) String() string {
str := ""
if m.Struct.Name != "" {
s, err := template.NewEngine().ExecuteString("{{template \"struct_function\" .}}", m)
if err != nil {
logrus.Panic(err)
}
str = s
} else {
s, err := template.NewEngine().ExecuteString("{{template \"func\" .}}", m)
if err != nil {
logrus.Panic(err)
}
str = s
}
dt, err := format.Source([]byte(str))
if err != nil {
logrus.Panic(err)
}
return string(dt)
}
func (s *Struct) String() string {
str, err := template.NewEngine().ExecuteString("{{template \"struct\" .}}", s)
if err != nil {
logrus.Panic(err)
}
dt, err := format.Source([]byte(str))
if err != nil {
logrus.Panic(err)
}
return string(dt)
}
func (i *Interface) String() string {
str, err := template.NewEngine().ExecuteString("{{template \"interface\" .}}", i)
if err != nil {
logrus.Panic(err)
}
dt, err := format.Source([]byte(str))
if err != nil {
logrus.Panic(err)
}
return string(dt)
}
func NewNameType(name string, tp string) NamedTypeValue {
return NamedTypeValue{
Name: name,
Type: tp,
HasValue: false,
}
}
func NewNameTypeValue(name string, tp string, vl string) NamedTypeValue {
return NamedTypeValue{
Name: name,
Type: tp,
HasValue: true,
Value: vl,
}
}
func NewMethod(name string, str NamedTypeValue, body string, parameters, results []NamedTypeValue) Method {
return Method{
Name: name,
Struct: str,
Body: body,
Parameters: parameters,
Results: results,
}
}
func NewInterface(name string, methods []Method) Interface {
return Interface{
Name: name,
Methods: methods,
}
}
func NewStruct(name string, vars []NamedTypeValue) Struct {
return Struct{
Name: name,
Vars: vars,
}
}
func NewFile() File {
return File{
Interfaces: []Interface{},
Imports: []NamedTypeValue{},
Structs: []Struct{},
Vars: []NamedTypeValue{},
Constants: []NamedTypeValue{},
Methods: []Method{},
}
}