-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent.go
166 lines (124 loc) · 4.07 KB
/
component.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package core
import (
"errors"
"github.com/procyon-projects/goo"
)
type Component interface{}
type ComponentProcessor interface {
SupportsComponent(typ goo.Type) bool
ProcessComponent(typ goo.Type) error
}
var (
componentTypes = make(map[string]goo.Type, 0)
componentProcessor = make(map[string]goo.Type, 0)
)
func Register(components ...Component) {
for _, component := range components {
typ := goo.GetType(component)
if isSupportComponent(typ) {
fun := typ.ToFunctionType()
retType := fun.GetFunctionReturnTypes()[0].ToStructType()
compressorType := goo.GetType((*ComponentProcessor)(nil)).ToInterfaceType()
if retType.Implements(compressorType) {
registerComponentProcessor(retType.GetFullName(), typ)
} else {
registerComponentType(retType.GetFullName(), typ)
}
} else {
panic("It supports only constructor functions")
}
}
}
func registerComponentType(name string, typ goo.Type) {
if _, ok := componentTypes[name]; ok {
panic("You have already registered the same component : " + name)
}
componentTypes[name] = typ
}
func registerComponentProcessor(name string, typ goo.Type) {
if _, ok := componentProcessor[name]; ok {
panic("You have already registered the same component processor : " + name)
}
componentProcessor[name] = typ
}
func isSupportComponent(typ goo.Type) bool {
if typ.IsFunction() {
fun := typ.ToFunctionType()
if fun.GetFunctionReturnTypeCount() != 1 {
panic("Constructor functions are only supported, that why's your function must have only one return type")
}
retType := fun.GetFunctionReturnTypes()[0]
if !retType.IsStruct() {
panic("Constructor functions must only return struct instances : " + retType.GetPackageFullName())
}
return true
}
return false
}
func GetComponentTypes(requestedType goo.Type) ([]goo.Type, error) {
return GetComponentTypesWithParam(requestedType, nil)
}
func GetComponentTypesWithParam(requestedType goo.Type, paramTypes []goo.Type) ([]goo.Type, error) {
if requestedType == nil {
return nil, errors.New("type must not be null")
}
if !requestedType.IsStruct() && !requestedType.IsInterface() {
panic("Requested type must be only interface or struct")
}
result := make([]goo.Type, 0)
for _, componentType := range componentTypes {
fun := componentType.ToFunctionType()
returnType := fun.GetFunctionReturnTypes()[0].ToStructType()
match := false
if requestedType.IsInterface() && returnType.Implements(requestedType.ToInterfaceType()) {
match = true
} else if requestedType.IsStruct() {
if requestedType.GetGoType() == returnType.GetGoType() || requestedType.ToStructType().EmbeddedStruct(returnType) {
match = true
}
}
if match && hasFunctionSameParametersWithGivenParameters(componentType, paramTypes) {
result = append(result, componentType)
}
}
return result, nil
}
func ForEachComponentType(callback func(string, goo.Type) error) (err error) {
for componentName := range componentTypes {
component := componentTypes[componentName]
err = callback(componentName, component)
if err != nil {
break
}
}
return nil
}
func ForEachComponentProcessor(callback func(string, goo.Type) error) (err error) {
for componentProcessorName := range componentProcessor {
componentProcessor := componentProcessor[componentProcessorName]
err = callback(componentProcessorName, componentProcessor)
if err != nil {
break
}
}
return
}
func hasFunctionSameParametersWithGivenParameters(componentType goo.Type, parameterTypes []goo.Type) bool {
if !componentType.IsFunction() {
panic("Component type must be function")
}
fun := componentType.ToFunctionType()
functionParameterCount := fun.GetFunctionParameterCount()
if parameterTypes == nil && functionParameterCount == 0 {
return true
} else if len(parameterTypes) != functionParameterCount || parameterTypes == nil && functionParameterCount != 0 {
return false
}
inputParameterTypes := fun.GetFunctionParameterTypes()
for index, inputParameterType := range inputParameterTypes {
if !inputParameterType.Equals(parameterTypes[index]) {
return false
}
}
return true
}