-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobyekt.worker.xml
429 lines (406 loc) · 11.9 KB
/
obyekt.worker.xml
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<?xml version="1.0" encoding="UTF-8"?>
<Export generator="Cache" version="25" zv="Cache for Windows (x86-64) 2016.2.1 (Build 803)" ts="2017-04-06 15:16:10">
<Class name="obyekt.worker">
<Description><![CDATA[
<h1>OB'YEKT WORKER CACHÉ INTERSYSTEMS</h1><br/>
<b>Initially Projected By: </b><i>Andrei Luiz Nenevê</i><br/>
<b>Collaborator: </b><i>Henry Hamon</i><br/>]]></Description>
<Super>%RegisteredObject</Super>
<TimeChanged>64379,54883.046898</TimeChanged>
<TimeCreated>64323,52382.607621</TimeCreated>
<UDLText name="T">
<Content><![CDATA[
// General Methods
]]></Content>
</UDLText>
<Method name="Ternary">
<Description><![CDATA[
Method similar to ternary in other languages: (a==b)?(a):(b)
<example>
Set a = 1
Set b = ##class(obyekt.worker).%New().Ternary(a=1,1,0)
; b = 1
Set b = ##class(obyekt.worker).%New().Ternary(a=0,1,0)
; b = 0
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pCondition,pTrue,pFalse</FormalSpec>
<Implementation><![CDATA[
Quit:pCondition pTrue
Quit pFalse
]]></Implementation>
</Method>
<Method name="IfOrElse">
<Description>
Shortcut to Ternary</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pCondition,pTrue,pFalse</FormalSpec>
<Implementation><![CDATA[ Quit ..Ternary(pCondition,pTrue,pFalse)
]]></Implementation>
</Method>
<UDLText name="T">
<Content><![CDATA[
// DynamicObject Methods
]]></Content>
</UDLText>
<Method name="SearchInObject">
<Description><![CDATA[
Do a search by value in DynamicObject returning the key
<example>
Set obj = {"A":"An simple Value","N":"Anything"}
Set Worker = ##class(obyekt.worker).%New()
Do Worker.SearchInObject("An simple Value",obj, .Key) //Or .Search or .SIO
Write Key
; A
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pValue,pObject:%DynamicObject,*pKey</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
Set tSC = $$$OK
Try {
Set iter = pObject.%GetIterator()
While iter.%GetNext(.key , .value ) {
Set:pValue=value pKey = key
}
} Catch tException {
Set:$$$ISOK(tSC) tSC = tException.AsStatus()
}
Quit tSC
]]></Implementation>
</Method>
<Method name="SIO">
<Description>
Shortcut to SearchInObject</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pValue,pObject:%DynamicObject,*pKey</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[ Quit ..SearchInObject(pValue,pObject,.pKey)
]]></Implementation>
</Method>
<Method name="Search">
<Description>
Shortcut to SearchInObject</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pValue,pObject:%DynamicObject,*pKey</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[ Quit ..SearchInObject(pValue,pObject,.pKey)
]]></Implementation>
</Method>
<UDLText name="T">
<Content><![CDATA[
// DynamicArray Methods
]]></Content>
</UDLText>
<Method name="SearchInArray">
<Description><![CDATA[
Do a search by value in DynamicArray returning the keys(array)<br/>
<b>pKeys</b> = Number of matches<br/>
<b>pKeys(0)</b> = First match, <b>pKeys(1)</b> = Second match, <b>pKeys(n)</b> = N match<br/>
<example>
Set Arr = ["A","B","C","D","E","C"]
Set Worker = ##class(obyekt.worker).%New()
Do Worker.SearchInArray("C",Arr, .Keys) //Or .SIA
Write Keys //Number of matches
; 2
For i=1:1:Keys { Write Keys(i),!} //Position 2 and 5 of the DynamicArray
;2
;5
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pValue,pArray:%DynamicArray,*pKeys</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
Set tSC = $$$OK
Try {
Set iter = pArray.%GetIterator()
Set pKeys = 0
Set tCount = 0
While iter.%GetNext(.key , .value ) {
If pValue = value{
Set tCount = tCount + 1
Set pKeys = tCount
Set pKeys(tCount) = key
}
}
} Catch tException {
Set:$$$ISOK(tSC) tSC = tException.AsStatus()
}
Quit tSC
]]></Implementation>
</Method>
<Method name="SIA">
<Description>
Shortcut to SearchInArray</Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pValue,pArray:%DynamicArray,*pKeys</FormalSpec>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[ Quit ..SearchInArray(pValue,pArray,.pKeys)
]]></Implementation>
</Method>
<Method name="Slice">
<Description><![CDATA[
Similar to Slice in JS<br/>
If initial position is not passed its will do from the beggining of the array<br/>
If end position is not passed its will do till the end of the array.
<example>
Set Arr = ["A","B","C","D","E","C"]
Set Worker = ##class(obyekt.worker).%New()
Set newArr = Worker.Slice(Arr, 0, 2)
Write newArr.%ToJSON()
; ["A","B","C"]
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pArray:%DynamicArray,pInitPosition:%Integer=0,pEndPosition:%Integer=0,*tSC</FormalSpec>
<ReturnType>%DynamicArray</ReturnType>
<Implementation><![CDATA[
Set tSC = $$$OK
Try {
Set tNewArray = ##class(%DynamicArray).%New()
Set tEnd = ..Ternary(pEndPosition=0, pArray.%Size(), pEndPosition)
For i=pInitPosition:1:tEnd{
$$$THROWONERROR(tSC, tNewArray.%Push(pArray.%Get(i)))
}
} Catch tException {
Set:$$$ISOK(tSC) tSC = tException.AsStatus()
}
Quit tNewArray
]]></Implementation>
</Method>
<Method name="Join">
<Description><![CDATA[
Similar to Join in JS<br/>
Default char of join is ','
<example>
Set Arr = ["A","B","C","D","E","C"]
Set Worker = ##class(obyekt.worker).%New()
Write Worker.Join(Arr, "*")
; A*B*C*D*E*C
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pArray:%DynamicArray,pDelimiter:%String=",",*tSC</FormalSpec>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[
Set tSC = $$$OK
Try {
Set iter = pArray.%GetIterator()
Set return = ""
While iter.%GetNext(.key , .value ) {
Set return = ..Ternary(return="", value, return_pDelimiter_value)
}
} Catch tException {
Set:$$$ISOK(tSC) tSC = tException.AsStatus()
}
Quit return
]]></Implementation>
</Method>
<Method name="ToString">
<Description><![CDATA[
Similar to Join, but in this the delimiter will be always ','<br/>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pArray:%DynamicArray,*tSC</FormalSpec>
<ReturnType>%String</ReturnType>
<Implementation><![CDATA[ Quit ..Join(pArray, ",", .tSC)
]]></Implementation>
</Method>
<Method name="Split">
<Description><![CDATA[
Similar to Split in JS<br/>
<example>
Set Worker = ##class(obyekt.worker).%New()
W Worker.Split("A*B*C*D*E", "*").%ToJSON()
; ["A","B","C","D","E"]
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pString:%String,pDelimiter:%String="",*tSC</FormalSpec>
<ReturnType>%DynamicArray</ReturnType>
<Implementation><![CDATA[
Set tSC = $$$OK, return = ##class(%DynamicArray).%New()
Try {
If pDelimiter = "" {
Set tList = $ListBuild($Extract(pString,1,1))
For i=2:1:$WLength(pString) {
Set $List(tList,i) = $Extract(pString,i,i)
}
} Else {
Set tList = $ListFromString(pString,pDelimiter)
}
Set pointer = 0
While $ListNext(tList,pointer,piece) {
$$$THROWONERROR(tSC, return.%Push(piece))
}
} Catch tException {
Set:$$$ISOK(tSC) tSC = tException.AsStatus()
}
Quit return
]]></Implementation>
</Method>
<Method name="Reverse">
<Description><![CDATA[
Similar to Reverse in JS<br/>
<example>
Set Arr = ["A","B","C","D","E"]
Do ##class(obyekt.worker).Reverse(Arr).%ToJSON()
; ["E","D","C","B","A"]
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec><![CDATA[&pArray:%DynamicArray,tSC:%Status]]></FormalSpec>
<ReturnType>%DynamicArray</ReturnType>
<Implementation><![CDATA[
Set tSC = $$$OK
Try {
Set return = ##class(%DynamicArray).%New()
For i=pArray.%Size()-1:-1:0 {
Do return.%Push(pArray.%Get(i))
}
} Catch tException {
Set:$$$ISOK(tSC) tSC = tException.AsStatus()
}
Quit return
]]></Implementation>
</Method>
<Method name="Sort">
<Description><![CDATA[
Method that sorts(Quick Sort) an %DynamicArray
<example>
Set Arr = [7,4,6,5,9,3,1,8,2]
Do ##class(obyekt.worker).Sort(Arr)
Write Arr.%ToJSON()
; [1,2,3,4,5,6,7,8,9]
</example>
<br/>Another example:
<example>
Set Arr = ["a","z","d","p","e","i","w","b"]
Do ##class(obyekt.worker).Sort(Arr)
Write Arr.%ToJSON()
; ["a","b","d","e","i","p","w","z"]
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec><![CDATA[&pArray:%DynamicArray,pInitIndex:%Integer=0,pEndIndex:%Integer=0]]></FormalSpec>
<Implementation><![CDATA[
Set tEndIndex = ..Ternary(pEndIndex = 0, pArray.%Size()-1, pEndIndex)
If ((pInitIndex < tEndIndex)&&(pInitIndex >= 0)&&(tEndIndex<pArray.%Size())&&(pArray.%Size()>0)){
Set i = pInitIndex, j = tEndIndex
Set pivot = $ASCII(pArray.%Get(((pInitIndex + tEndIndex) \ 2)))
While i<=j{
While $ASCII(pArray.%Get(i))<pivot{
Set i = i + 1
}
While $ASCII(pArray.%Get(j))>pivot{
Set j = j - 1
}
If (i <= j){
Set aux = pArray.%Get(i)
Do pArray.%Set(i,pArray.%Get(j))
Do pArray.%Set(j,aux)
Set i = i + 1
Set j = j - 1
}
}
If (pInitIndex < j){
Do ..Sort(pArray, pInitIndex, j)
}
If (i < tEndIndex){
Do ..Sort(pArray, i, tEndIndex)
}
Quit $$$YES
} Else {
Quit $$$NO
}
]]></Implementation>
</Method>
<Method name="Concat">
<Description><![CDATA[
Concatenates two %DynamicArrays and return the resultant %DynamicArray<br/>
<example>
Set Arr1 = ["A","B","C"]
Set Arr2 = ["D","E","F"]
Set Worker = ##class(obyekt.worker).%New()
Set NewArr = Worker.Concat(Arr1,Arr2)
Write NewArr.%ToJSON()
; ["A","B","C","D","E","F"]
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pArray1:%DynamicArray,pArray2:%DynamicArray,*tSC</FormalSpec>
<ReturnType>%DynamicArray</ReturnType>
<Implementation><![CDATA[
Set tSC = $$$OK
Try {
Set return = pArray1
Set iter = pArray2.%GetIterator()
While iter.%GetNext(.key , .value ) {
$$$THROWONERROR(tSC, return.%Push(value))
}
} Catch tException {
Set:$$$ISOK(tSC) tSC = tException.AsStatus()
}
Quit return
]]></Implementation>
</Method>
<Method name="Fill">
<Description><![CDATA[
Fill and return a %DynamicArray with values<br/>
If not specified the init and end index it will do for entire array
<example>
Set Arr = ["A","B","C"]
Set Worker = ##class(obyekt.worker).%New()
Set Arr = Worker.Fill(Arr,"X")
Write Arr.%ToJSON()
; ["X","X","X"]
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pArray:%DynamicArray,pValue,pInitIndex:%Integer=0,pEndIndex:%Integer=0,*tSC</FormalSpec>
<ReturnType>%DynamicArray</ReturnType>
<Implementation><![CDATA[
Set tSC = $$$OK
Try {
Set tEndIndex = ..Ternary(pEndIndex=0,pArray.%Size()-1,pEndIndex)
Set iter = pArray.%GetIterator()
While iter.%GetNext(.key , .value ) {
Quit:tEndIndex+1=key
$$$THROWONERROR(tSC, pArray.%Set(key, pValue))
}
} Catch tException {
Set:$$$ISOK(tSC) tSC = tException.AsStatus()
}
Quit pArray
]]></Implementation>
</Method>
<Method name="Min">
<Description><![CDATA[
Returns the minimal element in the enumerable according
to Cache's term ordering. <br>
If multiple elements are considered minimal, the first one that was found
is returned.
<example>
Set ArrMin = [7,4,6,5,9,3,8,2]
Write ##class(obyekt.worker).Min(ArrMin)
; 2
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pArray:%DynamicArray</FormalSpec>
<Implementation><![CDATA[
Do ..Sort(pArray)
Quit pArray.%Get(0)
]]></Implementation>
</Method>
<Method name="Max">
<Description><![CDATA[
Returns the maximal element in the enumerable according
to Cache's term ordering. <br>
If multiple elements are considered maximal, the last one that was found
is returned.
<example>
Set ArrMax = [7,4,6,5,9,3,8,2]
Write ##class(obyekt.worker).Max(ArrMax)
; 9
</example>]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>pArray:%DynamicArray</FormalSpec>
<Implementation><![CDATA[
Do ..Sort(pArray)
Quit pArray.%Get((pArray.%Size()-1))
]]></Implementation>
</Method>
</Class>
</Export>