This repository has been archived by the owner on Dec 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathclass_annotation.my
273 lines (259 loc) · 6.09 KB
/
class_annotation.my
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
//This file demonstrate annotation
//////////////////////////////////////////////////////////////////////////////////
// First
//////////////////////////////////////////////////////////////////////////////////
class @Test {
property Enabled
}
//marker annotation
class @Demo {}
class TestExample {
@Demo
@Test{Enabled = true}
fn TestA() {
printf("TestA is called\n")
}
@Demo
@Test{Enabled = false}
fn TestB() {
printf("TestB is called\n")
}
@Demo
@Test{Enabled = false}
fn TestC() {
printf("TestC is called\n")
}
@Demo
@Test{Enabled = true}
fn TestD() {
printf("TestD is called\n")
}
}
testObj = new TestExample()
for method in testObj.getMethods() {
printf("\nmethodName=%s\n", method.name)
annos = method.getAnnotations()
for anno in annos {
//println()
//printf("ANNO NAME=%s, enabled=%t\n", anno, anno.Enabled)
if anno.instanceOf(Test) {
printf("ANNO NAME=%s, enabled=%t\n", anno, anno.Enabled)
if anno.Enabled {
method.invoke()
}
} elseif anno.instanceOf(Demo) {
printf("ANNO NAME=%s, \n", anno)
}
}
}
//////////////////////////////////////////////////////////////////////////////////
// Second
//////////////////////////////////////////////////////////////////////////////////
//class @MethodTrace { //Annotation class
// property LogLevel
//}
//
//enum Logger {
// INFO,
// DEBUG
//}
//
//class Calculator {
// @MethodTrace{LogLevel = Logger.INFO}
// fn calculatePow(x, y) {
// result = math.pow(x, y)
// return result
// }
//
// @MethodTrace{LogLevel = Logger.DEBUG}
// fn multiply(a, b) {
// return a * b
// }
//
// @MethodTrace{LogLevel = Logger.DEBUG}
// fn add(a, b) {
// return a + b
// }
//}
//
//class Handler {
// static fn handle(o) {
// for m in o.getMethods() {
// for a in m.getAnnotations() {
// if (a.is_a(MethodTrace)) {
// if a.LogLevel == Logger.INFO {
// println("Performing INFO log for \"" + m.getName() + "\" method: ")
// printf("calculation result = %v\n\n", m.invoke(2,3))
// } elseif (a.LogLevel == Logger.DEBUG) {
// println("Performing DEBUG log for \"" + m.getName() + "\" method")
// printf("calculation result = %d\n\n", m.invoke(10,5))
// }
// }
// }
// }
// }
//}
//
//class Main {
// static fn main() {
// Calculator calculator = new Calculator()
// Handler.handle(calculator)
// }
//}
//
//Main.main()
//////////////////////////////////////////////////////////////////////////////////
// Third
//////////////////////////////////////////////////////////////////////////////////
//Annotations
//class @Test {}
//class @TestSetup {}
//class @TestTearDown {}
//
////Calculator class
//class Calculator{
// @TestSetup
// static fn Setup() {
// println("TestSetup called!\n")
// }
//
// @TestTearDown
// static fn TearDown() {
// println("\nTestTearDown called!\n")
// }
//
// @Test
// fn add(x, y) {
// return x + y
// }
//
// @Test
// fn sub(x, y) {
// return x - y
// }
//
// @Test
// fn mul(x, y) {
// return x * y
// }
//
// @Test
// fn div(x, y) {
// return x / y
// }
//}
//
//class Handler {
// static fn handle(o) {
// methods = o.getMethods()
//
// //run test setup
// for m in methods {
// testSetupAnno = m.getAnnotation(TestSetup)
// if testSetupAnno != nil {
// m.invoke()
// break
// }
// }
//
// //run test
// for m in methods {
// testAnno = m.getAnnotation(Test)
// if testAnno != nil {
// printf("%s(20, 10) = %v\n", m.name, m.invoke(20, 10))
// }
// }
//
// //run test teardown
// for m in methods {
// testTearDownAnno = m.getAnnotation(TestTearDown)
// if testTearDownAnno != nil {
// m.invoke()
// break
// }
// }
// }
//}
//
//class Main {
// static fn main() {
// Calculator calculator = new Calculator()
// Handler.handle(calculator)
// }
//}
//
//Main.main()
////////////////////////////////////////////////////////////////////////////////
// Fourth
////////////////////////////////////////////////////////////////////////////////
//class @ParentMinMaxValidator {
// property MaxLength default 10
//}
//
//class @MinMaxValidator : ParentMinMaxValidator {
// property MinLength
// //property MaxLength default 10
//}
//
//class @NoSpaceValidator {}
//
//class @DepartmentValidator {
// property Department
//}
//
//class Request {
// //@MinMaxValidator(MinLength=1, MaxLength=10)
// @MinMaxValidator(MinLength=1)
// property FirstName;
//
// @NoSpaceValidator
// property LastName;
//
// @DepartmentValidator(Department=["Department of Education", "Department of Labors", "Department of Justice"])
// property Dept;
//}
//
//class RequestHandler {
// static fn handle(o) {
// props = o.getProperties()
// for p in props {
// annos = p.getAnnotations()
// for anno in annos {
// if anno.instanceOf(MinMaxValidator) {
// if len(p.value) > anno.MaxLength || len(p.value) < anno.MinLength {
// printf("Property '%s' is not valid!\n", p.name)
// }
// } elseif anno.instanceOf(NoSpaceValidator) {
// for c in p.value {
// if c == " " || c == "\t" {
// printf("Property '%s' is not valid!\n", p.name)
// break
// }
// }
// } elseif anno.instanceOf(DepartmentValidator) {
// found = false
// for d in anno.Department {
// if p.value == d {
// found = true
// }
// }
// if !found {
// printf("Property '%s' is not valid!\n", p.name)
// }
// }
// }
// }
// }
//}
//
//class RequestMain {
// static fn main() {
// request = new Request()
// request.FirstName = "Haifeng123456789" //not valid
// request.LastName = "Huang " //not valid
// request.Dept = "Department of Justice"
// RequestHandler.handle(request)
// }
//}
//
//RequestMain.main()