-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathPending.bas
More file actions
544 lines (431 loc) · 14.5 KB
/
Pending.bas
File metadata and controls
544 lines (431 loc) · 14.5 KB
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
Attribute VB_Name = "Pending_Module"
' #VBIDEUtils#************************************************************
' * Programmer Name : removed
' * Web Site : http://www.ppreview.net
' * E-Mail : removed
' * Date : 04/11/1999
' * Time : 16:53
' * Module Name : Pending_Module
' * Module Filename : Pending.bas
' **********************************************************************
' * Comments :
' *
' *
' **********************************************************************
Option Explicit
Private isSeparator(0 To 255) As Boolean
Private byteArrayString() As Byte
Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (dest As Any, Source As Any, ByVal bytes As Long)
Private Declare Sub ZeroMemory Lib "kernel32" Alias "RtlZeroMemory" (dest As Any, ByVal bytes As Long)
Public Sub GetPending()
' #VBIDEUtils#************************************************************
' * Programmer Name : removed
' * Date : 17/09/1998
' * Time : 22:49
' * Module Name : Pending_Module
' * Module Filename : Pending.bas
' * Procedure Name : GetPending
' * Parameters :
' *
' **********************************************************************
' * Comments : Show the pending code
' *
' *
' **********************************************************************
Dim nStartLine As Long
Dim nStartColumn As Long
Dim nEndline As Long
Dim nEndColumn As Long
Dim nMaxLines As Long
Dim sLine As String
Dim prjProject As VBProject
Dim cpCodePane As CodePane
Dim sFirstWord As String
Dim sSecondWord As String
Dim sLastWord As String
Dim sFirstSearch As String
Dim sSecondSearch As String
Dim sLastSearch As String
Dim bDown As Boolean
Dim nLevel As Integer
Dim nCol As Integer
Dim bErrorHandler As Boolean
On Error Resume Next
Const sSeparators = vbTab & " ,.:;!?""()=-><+&#" & vbCrLf
Dim nI As Integer
For nI = 1 To Len(sSeparators)
isSeparator(Asc(Mid$(sSeparators, nI, 1))) = True
Next
' *** Get the active project
Set prjProject = VBInstance.ActiveVBProject
' *** If we couldn't get it, quit
If prjProject Is Nothing Then
'Call MsgBoxTop(Me.hwnd, "Could not identify current project", vbExclamation + vbOKOnly + vbDefaultButton1, "Indentify the project")
Exit Sub
End If
' *** Try to find the active code pane
Set cpCodePane = VBInstance.ActiveCodePane
' *** If we couldn't get it, quit
If cpCodePane Is Nothing Then
'Call MsgBoxTop(Me.hwnd, "Could not identify current module", vbExclamation + vbOKOnly + vbDefaultButton1, "Indentify the module")
Exit Sub
End If
cpCodePane.GetSelection nStartLine, nStartColumn, nEndline, nEndColumn
sLine = cpCodePane.CodeModule.Lines(nStartLine, 1)
nMaxLines = cpCodePane.CodeModule.CountOfLines
' *** Get the needed words in the line
Call GetWords(sLine, sFirstWord, sSecondWord, sLastWord)
' *** Analyse
sFirstSearch = ""
sSecondSearch = ""
sLastSearch = ""
' *** Is this is the label of an error handler
If Mid$(sLine, Len(sFirstWord) + 1, 1) = ":" Then
bErrorHandler = True
sFirstSearch = "on"
sSecondSearch = "error"
sLastSearch = sFirstWord
Else
bErrorHandler = False
End If
Select Case sFirstWord
' *** Search Down
Case "on":
If sSecondWord = "error" Then
sFirstSearch = sLastWord
End If
bDown = True
Case "goto":
sFirstSearch = sLastWord
bDown = True
Case "if":
sFirstSearch = "end"
sSecondSearch = "if"
bDown = True
Case "#if":
sFirstSearch = "#end"
sSecondSearch = "if"
bDown = True
Case "select":
Select Case sSecondWord
Case "case":
sFirstSearch = "end"
sSecondSearch = "select"
bDown = True
End Select
Case "with":
sFirstSearch = "end"
sSecondSearch = "with"
bDown = True
Case "for":
sFirstSearch = "next"
bDown = True
Case "do":
sFirstSearch = "loop"
bDown = True
Case "while":
sFirstSearch = "wend"
bDown = True
Case "sub":
sFirstSearch = "end"
sSecondSearch = "sub"
bDown = True
Case "function":
sFirstSearch = "end"
sSecondSearch = "function"
bDown = True
Case "property":
sFirstSearch = "end"
sSecondSearch = "property"
bDown = True
Case "enum":
sFirstSearch = "end"
sSecondSearch = "enum"
bDown = True
Case "type":
sFirstSearch = "end"
sSecondSearch = "type"
bDown = True
Case "public", "private", "friend", "static":
Select Case sSecondWord
Case "sub":
sFirstSearch = "end"
sSecondSearch = "sub"
bDown = True
Case "function":
sFirstSearch = "end"
sSecondSearch = "function"
bDown = True
Case "property":
sFirstSearch = "end"
sSecondSearch = "property"
bDown = True
Case "enum":
sFirstSearch = "end"
sSecondSearch = "enum"
bDown = True
Case "type":
sFirstSearch = "end"
sSecondSearch = "type"
bDown = True
End Select
' *** Search up
Case "#end"
sFirstSearch = "#if"
bDown = False
Case "next":
sFirstSearch = "for"
bDown = False
Case "loop":
sFirstSearch = "do"
bDown = False
Case "wend":
sFirstSearch = "while"
bDown = False
Case "end":
Select Case sSecondWord
Case "if"
sFirstSearch = "if"
bDown = False
Case "select":
sFirstSearch = "select"
sSecondSearch = "case"
bDown = False
Case "enum":
sFirstSearch = "enum|public|private|"
sSecondSearch = "enum"
bDown = False
Case "type":
sFirstSearch = "type|public|private|"
sSecondSearch = "type"
bDown = False
Case "with":
sFirstSearch = "with"
bDown = False
Case "sub":
sFirstSearch = "sub|private|public|friend|static|"
sSecondSearch = "sub"
bDown = False
Case "function":
sFirstSearch = "function|private|public|friend|static|"
sSecondSearch = "function"
bDown = False
Case "property":
sFirstSearch = "property|private|public|friend|static|"
sSecondSearch = "property"
bDown = False
End Select
End Select
If sFirstSearch = "" Then Exit Sub
' *** Begin the search
nLevel = 0
If bDown = True Then
nStartLine = nStartLine + 1 ' *** Continues on next line
Else
nStartLine = nStartLine - 1 ' *** Continues on previous line
End If
' *** Read through all the lines
Do While (nStartLine >= 0) And (nStartLine <= nMaxLines)
' *** Do Some verifications
If nStartLine < 0 Then Exit Do
If (nLevel < 0) And (bDown) Then
' *** Error
Call MsgBox("Pending line not found", vbCritical + vbOKOnly, "Pending problem")
Exit Do
End If
sLine = cpCodePane.CodeModule.Lines(nStartLine, 1)
' *** Get the needed words in the line
Call GetWords(sLine, sFirstWord, sSecondWord, sLastWord)
Select Case sFirstWord
' *** Increase level
Case "if":
If (sLastWord = "then") Then nLevel = nLevel + 1
Case "#if":
nLevel = nLevel + 1
Case "select":
Select Case sSecondWord
Case "case":
nLevel = nLevel + 1
End Select
Case "enum":
nLevel = nLevel + 1
Case "with":
nLevel = nLevel + 1
Case "for":
nLevel = nLevel + 1
Case "do":
nLevel = nLevel + 1
Case "while":
nLevel = nLevel + 1
Case "sub":
nLevel = nLevel + 1
Case "function":
nLevel = nLevel + 1
Case "property":
nLevel = nLevel + 1
Case "enum":
nLevel = nLevel + 1
Case "type":
nLevel = nLevel + 1
Case "public", "private", "friend", "static":
Select Case sSecondWord
Case "sub":
nLevel = nLevel + 1
Case "function":
nLevel = nLevel + 1
Case "property":
nLevel = nLevel + 1
Case "enum":
nLevel = nLevel + 1
Case "type":
nLevel = nLevel + 1
End Select
' *** Decrease level
Case "end":
If sSecondWord <> "" Then nLevel = nLevel - 1
Case "#end":
nLevel = nLevel - 1
Case "next":
nLevel = nLevel - 1
Case "loop":
nLevel = nLevel - 1
Case "wend":
nLevel = nLevel - 1
End Select
' *** Search in multiple value
If bDown = False Then
If InStr(sFirstSearch, sFirstWord & "|") > 0 Then
sFirstWord = sFirstSearch
End If
End If
If (sFirstWord = sFirstSearch) Then
If bDown Then
If ((sSecondSearch = "") And (nLevel = -1)) Or ((sSecondWord = sSecondSearch) And (nLevel = -1)) Or ((sSecondSearch = "") And (sSecondWord = sSecondSearch) And nLevel = 0) Then
nCol = 1
Do While (Mid$(sLine, nCol, 1) = " ") And (nCol < Len(sLine) - 1)
nCol = nCol + 1
Loop
cpCodePane.SetSelection nStartLine, nCol, nStartLine, nCol
Exit Do
End If
Else
If (((sSecondSearch = "") Or ((sSecondSearch <> "") And (sSecondWord = sSecondSearch))) And (nLevel = 1)) _
Or ((sSecondWord = sSecondSearch) And (sLastWord = sLastSearch)) Then
nCol = 1
Do While (Mid$(sLine, nCol, 1) = " ") And (nCol < Len(sLine) - 1)
nCol = nCol + 1
Loop
cpCodePane.SetSelection nStartLine, nCol, nStartLine, nCol
Exit Do
End If
End If
End If
If bDown = True Then
nStartLine = nStartLine + 1 ' *** Continues on next line
Else
nStartLine = nStartLine - 1 ' *** Continues on previous line
End If
Loop
End Sub
Private Sub GetWords(ByVal sLine As String, sFirstWord As String, sSecondWord As String, sLastWord As String)
' #VBIDEUtils#************************************************************
' * Programmer Name : removed
' * Web Site : http://www.ppreview.net
' * E-Mail : removed
' * Date : 24/11/98
' * Time : 17:09
' * Module Name : Pending_Module
' * Module Filename : Pending.bas
' * Procedure Name : GetWords
' * Parameters :
' * ByVal sLine As String
' * sFirstWord As String
' * sSecondWord As String
' * sLastWord As String
' **********************************************************************
' * Comments : Get all the needed words
' *
' *
' **********************************************************************
Dim nI As Long
Dim nJ As Long
sFirstWord = ""
sSecondWord = ""
sLastWord = ""
sLine = Trim$(LCase$(sLine)) ' this line is not optim.
' *** Remove things in strings
nI = InStr(1, sLine, """")
Do Until nI = 0
nJ = InStr(nI + 1, sLine, """")
If nJ = 0 Then nJ = nI + 1
sLine = left$(sLine, nI) & Mid$(sLine, nJ)
nI = InStr(nI + 2, sLine, """")
Loop
' *** Remove trailing comments from the line
nI = InStr(1, sLine, "'")
If nI > 0 Then sLine = left$(sLine, nI - 1)
nI = InStr(sLine, Chr(39)) - 1
If nI > 0 Then sLine = left$(sLine, nI)
If left(sLine, 1) = Chr(39) Then Exit Sub
If Len(sLine) = 0 Then Exit Sub
Dim nSize As Integer
sLine = Trim$(sLine)
nSize = Len(sLine)
If nSize = 0 Then Exit Sub
ReDim byteArrayString(1 To nSize)
' *** Copy string to byte array
CopyMemory byteArrayString(1), ByVal sLine, nSize
Dim nStartWord As Integer
Dim nSavPosition As Integer
' *** Get FirstWord
nStartWord = 1
For nI = 1 To nSize
If isSeparator(byteArrayString(nI)) Then
sFirstWord = Space$(nI - nStartWord)
CopyMemory ByVal sFirstWord, byteArrayString(nStartWord), nI - nStartWord
nSavPosition = nI + 1
Exit For
End If
Next
If nSavPosition = 0 Then
sFirstWord = Space$(nI - nStartWord)
CopyMemory ByVal sFirstWord, byteArrayString(nStartWord), nI - nStartWord
Exit Sub
End If
' *** Get SecondWord
nStartWord = nSavPosition
For nI = nSavPosition To nSize
If isSeparator(byteArrayString(nI)) Then
sSecondWord = Space$(nI - nStartWord)
CopyMemory ByVal sSecondWord, byteArrayString(nStartWord), nI - nStartWord
nSavPosition = nI + 1
Exit For
End If
Next
If nSavPosition = nStartWord Then
sSecondWord = Space$(nI - nStartWord)
If (nI - nStartWord) > 0 Then
CopyMemory ByVal sSecondWord, byteArrayString(nStartWord), nI - nStartWord
End If
sLastWord = sSecondWord
Exit Sub
End If
' *** Get LastWord
For nI = nSize To nSavPosition Step -1
If isSeparator(byteArrayString(nI)) Then
sLastWord = Space$(nSize - nI)
If (nSize - nI) > 0 Then
CopyMemory ByVal sLastWord, byteArrayString(nI + 1), nSize - nI
End If
Exit For
End If
Next
If (nI = nSavPosition - 1) Then
If isSeparator(byteArrayString(nI)) Then
sLastWord = Space$(nSize - nI)
If (nSize - nI) > 0 Then
CopyMemory ByVal sLastWord, byteArrayString(nI + 1), nSize - nI
End If
End If
End If
End Sub