forked from lee-soft/ViStart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProgramIndexingHelper.bas
459 lines (331 loc) · 14.9 KB
/
ProgramIndexingHelper.bas
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
Attribute VB_Name = "ProgramIndexingHelper"
'This module populates the treeview containing the program list
Option Explicit
Private xIconDB As DOMDocument30
Private cMerges As New Collection
Private m_exclusionList As Collection
Private FSO As New FileSystemObject
Private iItemCount As Long
Private m_logger As SeverityLogger
Private Property Get Logger() As SeverityLogger
If m_logger Is Nothing Then
Set m_logger = LogManager.GetLogger("ProgramIndexingHelper")
End If
Set Logger = m_logger
End Property
Public Sub ResetCount()
Dim counterIndex As Long
For counterIndex = LBound(iLastFileCount) To UBound(iLastFileCount)
iLastFileCount(counterIndex) = 0
iLastFolderCount(counterIndex) = 0
Next
End Sub
Public Sub Initialize()
Set cMerges = New Collection
Set fFolder_Monitor(0) = FSO.GetFolder(sVar_Reg_StartMenu_CurrentUserPrograms)
Set fFolder_Monitor(1) = FSO.GetFolder(sVar_Reg_StartMenu_CurrentUser)
Set fFolder_Monitor(2) = FSO.GetFolder(sVar_Reg_StartMenu_CommonPrograms)
Set fFolder_Monitor(3) = FSO.GetFolder(sVar_Reg_StartMenu_CommonUser)
LoadIconDB
End Sub
Public Function GetProgramList() As Collection
Set GetProgramList = m_exclusionList
End Function
Private Function LoadIconDB() As Boolean
LoadIconDB = True
Set xIconDB = New MSXML2.DOMDocument
If xIconDB.Load(StartBarSupport.sCon_AppDataPath & "IconDb_" & CStr(g_sVar_Layout_BackColour) & ".xml") = False Then
LoadIconDB = False
Exit Function
End If
xIconDB.setProperty "SelectionLanguage", "XPath"
End Function
Public Sub PopulateStarMenuNodes(ByRef sourceNode As INode)
Dim startMenuCommonPrograms As Scripting.Folder
Dim startMenuUserPrograms As Scripting.Folder
Dim windowsDirectory As Scripting.Folder
Dim programFiles As Scripting.Folder
Dim allProgramsCollection As New Collection
Set m_exclusionList = New Collection
Set windowsDirectory = FSO.GetFolder(Environ$("windir"))
Set startMenuCommonPrograms = FSO.GetFolder(sVar_Reg_StartMenu_CommonPrograms)
Set startMenuUserPrograms = FSO.GetFolder(sVar_Reg_StartMenu_CurrentUserPrograms)
PopulateCollection allProgramsCollection, startMenuCommonPrograms, sVar_Reg_StartMenu_CommonPrograms
PopulateCollection allProgramsCollection, startMenuUserPrograms, sVar_Reg_StartMenu_CurrentUserPrograms
PopulateCollectionFromEXEDirectory allProgramsCollection, windowsDirectory, "", False
Set allProgramsCollection = SortFolders(allProgramsCollection)
PopulateNodeFromCollection sourceNode, allProgramsCollection
'PopulateNode sourceNode, startMenuCommonPrograms, sVar_Reg_StartMenu_CommonPrograms
'PopulateNode sourceNode, startMenuUserPrograms, sVar_Reg_StartMenu_CurrentUserPrograms
End Sub
Public Function PopulateCollectionFromEXEDirectory(ByRef Col As Collection, ByRef sourceFolder As Scripting.Folder, Optional ByVal stripperKey As String, Optional includeSubFolders As Boolean = False)
On Error Resume Next
Dim thisFile As Scripting.File
Dim thisFolder As Scripting.Folder
Dim theKey As String
Dim thisColItem As ColItem
Err.Clear
For Each thisFile In sourceFolder.Files
If Err Then
If Err.Number <> 70 Then
Logger.Error Err.Description, "PopulateCollectionFromEXEDirectory"
End If
Err.Clear
Else
If Not thisFile.Attributes And Hidden Then
If LCase$(Right$(thisFile.Name, 3)) = "exe" Then
theKey = Replace(thisFile.Path, stripperKey, "")
If Not ExistInCol(Col, theKey) Then
Set thisColItem = New ColItem
thisColItem.IsFile = True
thisColItem.FileName = thisFile.Name
thisColItem.Caption = GetAppDescription(thisFile.Path)
thisColItem.Path = thisFile.Path
thisColItem.VirtualPath = theKey
thisColItem.VisibleOnlyInSearch = True
Col.Add thisColItem, theKey
m_exclusionList.Add thisColItem, thisColItem.Path
End If
End If
End If
End If
Next
If Not includeSubFolders Then Exit Function
For Each thisFolder In sourceFolder.SubFolders
If Not thisFolder.Attributes And Hidden Then
theKey = Replace(thisFolder.Path, stripperKey, "")
If Not ExistInCol(Col, theKey) Then
Set thisColItem = New ColItem
thisColItem.IsFile = False
thisColItem.Caption = thisFolder.Name
thisColItem.Path = thisFolder.Path
thisColItem.VirtualPath = theKey
Set thisColItem.Children = New Collection
PopulateCollectionFromEXEDirectory thisColItem.Children, FSO.GetFolder(thisColItem.Path), stripperKey & "\" & thisFolder.Name, includeSubFolders
Col.Add thisColItem, theKey
Else
Set thisColItem = Col(theKey)
PopulateCollectionFromEXEDirectory thisColItem.Children, FSO.GetFolder(thisFolder.Path), stripperKey & "\" & thisFolder.Name, includeSubFolders
End If
End If
Next
End Function
Public Function PopulateCollection(ByRef Col As Collection, ByRef sourceFolder As Scripting.Folder, Optional ByVal stripperKey As String)
On Error Resume Next
Dim thisFile As Scripting.File
Dim thisFolder As Scripting.Folder
Dim theKey As String
Dim thisColItem As ColItem
Err.Clear
For Each thisFile In sourceFolder.Files
If Err Then
If Err.Number <> 70 Then
Logger.Error Err.Description, "PopulateCollection"
End If
Err.Clear
Else
If Not thisFile.Attributes And Hidden Then
theKey = Replace(thisFile.Path, stripperKey, "")
If Not ExistInCol(Col, theKey) Then
Set thisColItem = New ColItem
thisColItem.IsFile = True
thisColItem.Caption = thisFile.Name
thisColItem.Path = thisFile.Path
thisColItem.VirtualPath = theKey
Col.Add thisColItem, theKey
m_exclusionList.Add thisColItem, thisColItem.Path
End If
End If
End If
Next
For Each thisFolder In sourceFolder.SubFolders
If Not thisFolder.Attributes And Hidden Then
theKey = Replace(thisFolder.Path, stripperKey, "")
If Not ExistInCol(Col, theKey) Then
Set thisColItem = New ColItem
thisColItem.IsFile = False
thisColItem.Caption = thisFolder.Name
thisColItem.Path = thisFolder.Path
thisColItem.VirtualPath = theKey
Set thisColItem.Children = New Collection
PopulateCollection thisColItem.Children, FSO.GetFolder(thisColItem.Path), stripperKey & "\" & thisFolder.Name
Col.Add thisColItem, theKey
Else
Set thisColItem = Col(theKey)
PopulateCollection thisColItem.Children, FSO.GetFolder(thisFolder.Path), stripperKey & "\" & thisFolder.Name
End If
End If
Next
End Function
Private Function SortFiles(ByRef Col As Collection) As Collection
Dim colNew As Collection
Dim objCurrent As ColItem
Dim objCompare As ColItem
Dim lngCompareIndex As Long
Dim strCurrent As String
Dim strCompare As String
Dim blnGreaterValueFound As Boolean
'make a copy of the collection, ripping through it one item
'at a time, adding to new collection in right order...
Set colNew = New Collection
For Each objCurrent In Col
If objCurrent.IsFile Then
'get value of current item...
strCurrent = UCase$(objCurrent.Caption)
'setup for compare loop
blnGreaterValueFound = False
lngCompareIndex = 0
For Each objCompare In colNew
lngCompareIndex = lngCompareIndex + 1
strCompare = UCase$(objCompare.Caption)
'we are looking for a string sort...
If strCurrent < strCompare Then
'found an item in compare collection that is greater...
'add it to the new collection...
blnGreaterValueFound = True
colNew.Add objCurrent, , lngCompareIndex
Exit For
End If
Next
'if we didn't find something bigger, just add it to the end of the new collection...
If blnGreaterValueFound = False Then
colNew.Add objCurrent
End If
End If
Next
For Each objCurrent In Col
If Not objCurrent.IsFile Then
colNew.Add objCurrent
End If
Next
'return the new collection...
Set SortFiles = colNew
Set colNew = Nothing
End Function
Public Function SortFolders(ByRef Col As Collection) As Collection
Dim colNew As Collection
Dim objCurrent As ColItem
Dim objCompare As ColItem
Dim lngCompareIndex As Long
Dim strCurrent As String
Dim strCompare As String
Dim blnGreaterValueFound As Boolean
'make a copy of the collection, ripping through it one item
'at a time, adding to new collection in right order...
Set colNew = New Collection
For Each objCurrent In Col
If Not objCurrent.IsFile Then
'get value of current item...
strCurrent = UCase$(objCurrent.Caption)
'setup for compare loop
blnGreaterValueFound = False
lngCompareIndex = 0
For Each objCompare In colNew
lngCompareIndex = lngCompareIndex + 1
strCompare = UCase$(objCompare.Caption)
'we are looking for a string sort...
If strCurrent < strCompare Then
'found an item in compare collection that is greater...
'add it to the new collection...
blnGreaterValueFound = True
colNew.Add objCurrent, , lngCompareIndex
Exit For
End If
Next
'if we didn't find something bigger, just add it to the end of the new collection...
If blnGreaterValueFound = False Then
colNew.Add objCurrent
End If
SortFolders objCurrent.Children
End If
Next
For Each objCurrent In Col
If objCurrent.IsFile Then
colNew.Add objCurrent
End If
Next
SortFiles Col
'return the new collection...
Set SortFolders = colNew
Set colNew = Nothing
End Function
Public Function GetFileCollection(ByRef sourceFolder As Scripting.Folder, sourceCollection As Collection) As Collection
Dim thisFile As Scripting.File
Dim thisFolder As Scripting.Folder
For Each thisFile In sourceFolder.Files
If Not thisFile.Attributes And Hidden Then
'cRes.createNode ExtOrNot(thisFile.Name), MakeSearchable(thisFile.Name), thisFile.Path, GetIconY(thisFile.Path), Replace(thisFile.Path, stripperKey, "")
sourceCollection.Add thisFile
End If
Next
For Each thisFolder In sourceFolder.SubFolders
If Not thisFolder.Attributes And Hidden Then
sourceCollection.Add thisFolder
End If
Next
End Function
Public Sub PopulateNodeFromCollection(ByRef sourceNode As INode, ByRef sourceCol As Collection)
Dim cRes As INode
Dim thisColItem As ColItem
Dim newNode As INode
If sourceCol Is Nothing Then Exit Sub
For Each thisColItem In sourceCol
If thisColItem.IsFile Then
Set newNode = sourceNode.createNode(ExtOrNot(thisColItem.Caption), MakeSearchable(thisColItem.Caption), thisColItem.Path, -3, thisColItem.VirtualPath, True)
If LCase$(Right$(GetFileName(thisColItem.Path), 3)) = "lnk" Then
newNode.EXEName = Replace(UCase$(GetFileName(ResolveLink(thisColItem.Path))), " ", "")
Else
newNode.EXEName = Replace(UCase$(GetFileName(thisColItem.Path)), " ", "")
End If
newNode.visibleInSearchOnly = thisColItem.VisibleOnlyInSearch
End If
Next
For Each thisColItem In sourceCol
If Not thisColItem.IsFile Then
Set cRes = sourceNode.createNode(thisColItem.Caption, "", thisColItem.Path, -3, thisColItem.VirtualPath, False)
PopulateNodeFromCollection cRes, thisColItem.Children
End If
Next
End Sub
Private Sub PopulateNode(ByRef sourceNode As INode, ByRef sourceFolder As Scripting.Folder, Optional ByVal stripperKey As String)
Dim cRes As INode
Dim thisFile As Scripting.File
Dim thisFolder As Scripting.Folder
If sourceNode Is Nothing Then Exit Sub
If Replace(sourceFolder.Path, stripperKey, "") = vbNullString Then
Set cRes = sourceNode
Else
Set cRes = sourceNode.createNode(sourceFolder.Name, "", sourceFolder.Path, -3, Replace(sourceFolder.Path, stripperKey, ""), False)
End If
For Each thisFile In sourceFolder.Files
If Not thisFile.Attributes And Hidden Then
cRes.createNode ExtOrNot(thisFile.Name), MakeSearchable(thisFile.Name), thisFile.Path, -3, Replace(thisFile.Path, stripperKey, ""), True
End If
Next
For Each thisFolder In sourceFolder.SubFolders
If Not thisFolder.Attributes And Hidden Then
PopulateNode cRes, thisFolder, stripperKey
End If
Next
End Sub
Public Function FileCountTest()
Dim iFolderCount(0 To 3) As Long
Dim iFileCount(0 To 3) As Long
Dim lngMonitorIndex As Long
Dim bNeedCache As Boolean
Logger.Trace "Performing a File Count Test", "FileCountTest"
bNeedCache = False
For lngMonitorIndex = 0 To 3
iFolderCount(lngMonitorIndex) = fFolder_Monitor(lngMonitorIndex).SubFolders.count
iFileCount(lngMonitorIndex) = fFolder_Monitor(lngMonitorIndex).Files.count
If iFileCount(lngMonitorIndex) <> iLastFileCount(lngMonitorIndex) Then
iLastFileCount(lngMonitorIndex) = iFileCount(lngMonitorIndex)
bNeedCache = True
End If
If iFolderCount(lngMonitorIndex) <> iLastFolderCount(lngMonitorIndex) Then
iLastFolderCount(lngMonitorIndex) = iFolderCount(lngMonitorIndex)
bNeedCache = True
End If
Next
FileCountTest = bNeedCache
End Function