-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTest.fidl
264 lines (228 loc) · 5.43 KB
/
Test.fidl
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
<**
@description : Description of the testpackage.
**>
package testpackage
<**
@description : Description of type collection TestTypes.
**>
typeCollection TestTypes {
<**
@description : Description of TestCollectionEnum
**>
enumeration TestCollectionEnum {
<**
@description : Application 1
**>
APP_1
<**
@description : Application 2
**>
APP_2
}
<**
@description : Description of TestCollectionStruct
**>
struct TestCollectionStruct {
<**
@description : Description of structParam1
**>
String structParam1
<**
@description : Description of structParam2
**>
UInt32 structParam2
<**
@description : Description of structParam3
**>
TestCollectionEnum structParam3
}
<**
@description : Description of TestMap
**>
map TestMap {UInt16 to UInt8}
}
<**
@description : Description of the type collection TestTypes2.
**>
typeCollection TestTypes2 {
<**
@description : Description of TestTypes2.TestCollectionBaseEnum
**>
enumeration TestCollectionBaseEnum {
<**
@description : Enum Default 1
**>
DEFAULT_1
<**
@description : Enum Default 2
**>
DEFAULT_2
}
<**
@description : Description of TestTypes2.TestCollectionEnum2
**>
enumeration TestCollectionEnum2 extends TestCollectionBaseEnum{
<**
@description : Enum is On
**>
ON
<**
@description : Enum is off
**>
OFF
}
<**
@description : Description of TestArrayType
**>
array TestArrayType2 of TestCollectionEnum
}
<**
@description : Description of the Test interface
@author : Author
@see: The other interface.
**>
interface Test
{
version { major 1 minor 0 }
<**
@description : Attribute testAttribute has some description.
New paragraph in the attribute description. testAttribute is updated by sending
method testMethod.
[plantuml, test-seq-1]
----
Client -> Server: testMethod(params)
Server -> Client: set testAttribute
----
@see: testMethod
**>
attribute TestType1[] testAttribute
<**
@description : Attribute testAttribute has some description.
**>
attribute TestArrayType testAttribute2
<**
@description :
Description of testMethod.
@see: testAttribute
**>
method testMethod {
in {
<**
@description : Description of the input parameter testParameter.
**>
TestType2 testParameter
}
out {
<**
@description : Description of the out parameter testParameter2.
**>
String testParameter2
}
error {
<**
@description : Description of the error parameter testParameterError.
**>
DIVISION BY ZERO
OVERFLOW
UNDERFLOW
}
}
<**
@description : Description of TestType2
**>
struct TestType2 {
<**
@description : Description of structParam1
**>
String structParam1
<**
@description : Description of structParam2
**>
UInt32[] structParam2
<**
@description : Description of structParam3
**>
TestType1 structParam3
}
<**
@description : Description of TestType1
**>
enumeration TestType1 {
<**
@description : Description of INIT
**>
INIT
<**
@description : Description of STARTING
**>
STARTING
<**
@description : Description of RUNNING
**>
RUNNING = 3
<**
@description : Description of SHUTDOWN
**>
SHUTDOWN
<**
@description : Description of NONE
**>
NONE = 99
}
<**
@description : Description of TestArrayType
**>
array TestArrayType of TestCollectionEnum
}
<**
@description : Description of the Test interface
@author : Author
**>
interface Test2
{
version { major 2 minor 0 }
<**
@description : Attribute testAttribute of interface Test2 has some description.
New paragraph in the attribute description. testAttribute is updated by sending
method testMethod.
[plantuml, test-seq-2]
----
Client -> Server: testMethod(params)
Server -> Client: set testAttribute
----
**>
attribute String[] testAttribute
<**
@description :
Description of testMethodNoArgs.
@see: b1
**>
method testMethodNoArgs {
}
<**
@description : Description of broadcast b1
@see: testMethodNoArgs
**>
broadcast b1 {
out{
<**
@description : Description of broadcast b1.mb1
**>
TestCollectionStruct mb1
<**
@description : Description of broadcast b1.mb2
**>
TestArrayType2[] mb2
}
}
<**
@description : Description of broadcast b1NoArgs
**>
broadcast bNoArgs {
}
<**
@description : Description of TestMap2
@see: b1, bNoArgs and testAttribute
**>
map TestMap2 {UInt16 to TestCollectionEnum2}
}