-
Notifications
You must be signed in to change notification settings - Fork 72
/
ObjectHandling.ahk
424 lines (393 loc) · 12.6 KB
/
ObjectHandling.ahk
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
; ==============================================================================
; ==============================================================================
; Object handling functions
;
; object EnsureObj(BaseObject, params*)
; boolean TryKey(BaseObject, params*)
; boolean TryObj(ByRef BaseObject, params*)
; integer ObjGetCount(BaseObject)
; ObjMerge(SourceObject, TargetObject, Mode="", CallBack="")
;
; string ObjToStr(ByRef InObject)
; string ObjToXML(InObject)
; XMLToObj(BaseObject, InString)
;
; ObjLoad(BaseObject, FileName)
; ObjSave(InObject, FileName, Mode="w")
;
; ==============================================================================
; ==============================================================================
#Include StringHandling.ahk
EnsureObj(BaseObject, Params*) { ; creates an object following params* from the base object
; ==============================================================================
; ==============================================================================
; object EnsureObj(BaseObject, params*)
; Example:
; EnsureObj(BS, "Level1", "Level2", "Level3")
; creates:
; BS["Level1"]["Level2"]["Level3"] = Object()
; if it did not previously exist
; ==============================================================================
; ==============================================================================
If !(IsObject(BaseObject))
BaseObject:=Object()
TempBase:=BaseObject
for Index, Param in Params
{
If !(TempBase.HasKey(param)) or !(IsObject(TempBase[Param]))
TempBase[Param]:=Object()
TempBase:=TempBase[Param]
}
return, TempBase
}
TryKey(BaseObject, Params*) { ; tests if a key following params* from the base object exists
; ==============================================================================
; ==============================================================================
; boolean TryKey(BaseObject, params*)
; Example:
; TryObject(BS, "Level1", "Level2", "Level3")
; returns true if:
; BS["Level1"]["Level2"]["Level3"] exists
; ==============================================================================
; ==============================================================================
If !(IsObject(BaseObject))
return, 0
TempBase:=BaseObject
for Index,Param in Params
{
If (Index=Params.MaxIndex())
{
If (!TempBase.HasKey(Param))
return, 0
}
else
If !(TempBase.HasKey(Param)) or !(IsObject(TempBase[Param]))
return, 0
TempBase:=TempBase[Param]
}
return, 1
}
TryObj(BaseObject, Params*) { ; tests if an object following params* from the base object exists
; ==============================================================================
; ==============================================================================
; boolean TryObj(ByRef BaseObject, params*)
; Example:
; TryObj(BS, "Level1", "Level2", "Level3")
; returns true if:
; BS["Level1"]["Level2"]["Level3"] = Object()
; exists
; ==============================================================================
; ==============================================================================
If !(IsObject(BaseObject))
return, 0
TempBase:=BaseObject
for Index,Param in Params
{
If !(TempBase.HasKey(Param)) or !(IsObject(TempBase[Param]))
return, 0
TempBase:=TempBase[Param]
}
return, 1
}
ObjGetCount(BaseObject) { ; return the number of keys in an object
If !(IsObject(BaseObject))
return, 0
cnt:=0
for Index in BaseObject
{
cnt++
}
return, cnt
}
ObjMerge(SourceObject, TargetObject, Mode="", CallBack="") { ; merges contents of SourceObject into TargetObject
; ==============================================================================
; ==============================================================================
; ObjMerge(SourceObject, TargetObject, Mode="", CallBack="")
; Mode: w - overwrite, s - skip, else - warn through CallBack function
; Callback should return:
; -1: skip all
; 0: skip one
; 1: overwrite one
; 2: overwrite all
; ==============================================================================
; ==============================================================================
CBResultSave:=0
for Index, Value in SourceObject
{
if (IsObject(Value))
{
If (!TargetObject.HasKey(Index))
TargetObject[Index]:=Object()
ObjMerge(Value,TargetObject[Index], Mode, CallBack)
}
else
{
If (Mode="w")
TargetObject[Index]:=Value
else
{
If (Mode="s")
{
if (!TargetObject.Haskey(Index))
TargetObject[Index]:=Value
}
else
{
if (TargetObject.Haskey(Index) and CallBack<>"" and IsFunc(CallBack))
{
If (CBResultSave<>0)
{
CBResult:=%CallBack%(Index, Value)
}
else
CBResult:=CBResultSave
If (CBResult=-1)
{
CBResultSave:=CBResult
}
else
If (CBResult=2)
{
CBResultSave:=CBResult
TargetObject[Index]:=Value
}
else
If (CBResult=1)
{
TargetObject[Index]:=Value
}
}
else
TargetObject[Index]:=Value
}
}
}
}
}
ObjToStr(InObject, Depth=1) { ; attempts to output a string showing the structure and values of InObject
OutStr:=""
DepthString:=""
Loop, % Depth-2
DepthString.=" "
If (Depth>1)
DepthString.="└ "
DepthStringVal:= DepthString "└ "
try
{
For Index, Value in InObject
{
If (IsObject(Value))
{
OutStr.=DepthString Index "`r`n"
OutStr.=ObjToStr(Value, Depth+1)
}
else
{
if Value is number
OutStr.=DepthString Index " := " Value "`r`n"
else
If (Value="")
OutStr.=DepthString Index " := """"`r`n"
else
Loop, Parse, Value, `n, `r
{
If (A_Index=1)
{
OutStr.=DepthString Index " := " """" A_LoopField """`r`n"
}
else
OutStr.=DepthStringVal """" A_LoopField """`r`n"
}
}
}
}
catch
{
OutStr.=DepthString " Object cannot be enumerated.`r`n"
}
return, OutStr
}
ObjToTreeView(InObject, FormatFunc=0, MaxDepth=0, Depth=1, Parent=0) { ; transfers data from InObject to the currently active TreeView control
; ==============================================================================
; ==============================================================================
; void ObjToTreeView(InObject, FormatObj=0, MaxDepth=0)
; FormatObj can contain a callable reference to a function
; FormatCallBack(Depth, Index, Value)
; that returns and object with the following keys:
; Text : the text of the node or object holding treenodes to be added
; Options : the options for the node
; Add : 1 to add this node; 0 to ignore
; Continue : 1 to continue with the next index; 0 to stop
; RecurseInto : 1 to recurse into this object; 0 to stop (overrides MaxDepth)
; ==============================================================================
; ==============================================================================
thisItem:=0
try
{
For Index, Value in InObject
{
If (FormatFunc and ret:=%FormatFunc%(Depth, Index, Value))
{
If (ret.Add)
{
If (IsObject(ret.Text))
{
thisItem:=ObjToTreeView(ret.Text, 0, 0, 1, Parent)
}
else
thisItem:=TV_Add(ret.Text, Parent, ret.Options)
}
else
thisItem:=Parent
If !(ret.Continue)
break
If (ret.RecurseInto)
{
If (IsObject(Value))
{
ObjToTreeView(Value, FormatFunc, MaxDepth, Depth+1, thisItem)
}
else
{
if Value is number
TV_Add(Value, thisItem)
else
TV_Add("""" Value """", thisItem)
}
}
}
else
{
thisItem:=TV_Add(Index, Parent)
If (IsObject(Value) and (MaxDepth=0 or Depth<MaxDepth))
{
ObjToTreeView(Value, FormatFunc, MaxDepth, Depth+1, thisItem)
}
else
{
if Value is number
TV_Add(Value, thisItem)
else
TV_Add("""" Value """", thisItem)
}
}
}
}
catch
{
; skip non-enumerable objects
}
return thisItem
}
ObjToXML(InObject, Depth=1) { ; attempts to output a string showing the structure and values of InObject as
; ==============================================================================
; ==============================================================================
; string ObjToXML(InObject)
; simplified XML
; ==============================================================================
; ==============================================================================
OutStr:=""
DepthString:=""
Loop, % Depth-1
DepthString.=" "
DepthStringVal:= DepthString " "
try
{
For Index, Value in InObject
{
OutStr.=DepthString "<" Index ">`r`n"
If (IsObject(Value))
{
OutStr.=ObjToXML(Value, Depth+1)
}
else
{
if Value is number
OutStr.=DepthStringVal Value "`r`n"
else
If (Value="")
OutStr.=DepthStringVal """""`r`n"
else
Loop, Parse, Value, `n, `r
{
OutStr.=DepthStringVal """" EscapeVarStr(A_LoopField) """`r`n"
}
}
OutStr.=DepthString "<\" Index ">`r`n"
}
}
catch
{
OutStr.=DepthString " Object cannot be enumerated.`r`n"
}
return, OutStr
}
XMLToObj(BaseObject, InString) { ; attempts to convert simplified XML InString into an object in BaseObject
Value:=""
CurrentLevel:=1
KeyStarted:=0
LevelObjects:={}
LevelObjects[1]:=BaseObject
KeyChain:=Object()
Loop, Parse, InString, `n, `r
{
Line:=Trim(A_LoopField)
If (Instr(Line,"<\")=1)
{
starttag:=Keychain.Pop()
If (starttag=Substr(Line, 3, -1))
{
CurrentLevel--
If (KeyValue<>"")
{
LevelObjects[CurrentLevel][KeyName]:=KeyValue
KeyValue:=""
}
}
else
{
throw {message: "Error in input string: end tag " Substr(Line, 3, -1) " does not match start tag " starttag " in line " A_Index, line: A_Index}
}
}
else If (Instr(Line,"<")=1)
{
KeyName:=Substr(Line, 2, -1)
KeyChain.Push(KeyName)
If not IsObject(LevelObjects[CurrentLevel][KeyName])
{
LevelObjects[CurrentLevel][KeyName]:=Object()
}
CurrentLevel++
LevelObjects[CurrentLevel]:=LevelObjects[CurrentLevel-1][KeyName]
KeyValue:=""
}
else
{
If (KeyValue<>"")
KeyValue.="`r`n"
If (InStr(Line,"""")=1)
KeyValue.=UnEscapeVarStr(Line)
}
}
}
ObjSave(InObject, FileName, Mode="w") { ; saves the structure and values of InObject as simplified XML
FESave:=A_FileEncoding
FileEncoding, UTF-16
File:=FileOpen(FileName, Mode " `n")
If (File=0)
{
RVal:="Error opening file """ FileName """: " A_LastError
}
else
{
File.Write(ObjToXML(InObject))
File.Close()
RVal:=0
}
FileEncoding, %FESave%
return, rval
}
ObjLoad(BaseObject, FileName) { ; loads the structure and values of an object from simplified XML
FileRead, InString, %FileName%
XMLToObj(BaseObject, InString)
}