forked from tannerhelland/VBIDEUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Error.bas
610 lines (491 loc) · 19.5 KB
/
Error.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
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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
Attribute VB_Name = "Error_Module"
' #VBIDEUtils#************************************************************
' * Programmer Name : removed
' * Web Site : http://www.ppreview.net
' * E-Mail : removed
' * Date : 18/09/1998
' * Time : 12:27
' * Module Name : Error_Module
' * Module Filename : Error.bas
' **********************************************************************
' * Comments : Add Error handler
' *
' *
' **********************************************************************
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 InsertProcedureError()
' #VBIDEUtils#************************************************************
' * Programmer Name : removed
' * Web Site : http://www.ppreview.net
' * E-Mail : removed
' * Date : 17/09/1998
' * Time : 21:31
' * Project Name : VBIDEUtils
' * Module Name : Error_Module
' * Module Filename : Error.bas
' * Procedure Name : InsertProcedureError
' * Parameters :
' **********************************************************************
' * Comments : Insert a procedure Error handler
' *
' *
' **********************************************************************
Dim nStartLine As Long
Dim nStartColumn As Long
Dim nEndline As Long
Dim nEndColumn As Long
Dim sLine As String
Dim sProcName As String
Dim sDeclaration As String
Dim nLine As Long
Dim nProcStart As Integer
Dim nI As Long
Dim sTmp As String
Dim prjProject As VBProject
Dim cpCodePane As CodePane
Dim bUseTabs As Boolean
Dim iIndentSpaces As Integer
Dim sIndent As String
Dim nProcCount As Integer
Dim nProcType As Integer
Dim sEndSub As String
Dim sFirstWord As String
Dim sSecondWord As String
Dim sLastWord As String
Dim bExit As Boolean
On Error Resume Next
Const sSeparators = vbTab & " ,.:;!?""()=-><+&#" & vbCrLf
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
bUseTabs = (GetSetting(gsREG_APP, "Indent", "UseTabs", "N") = "Y")
iIndentSpaces = Val(GetSetting(gsREG_APP, "Indent", "IndentSpaces", "3"))
If bUseTabs Then
sIndent = String(1, miTAB)
Else
sIndent = String(iIndentSpaces, " ")
End If
' *** Get the active line
cpCodePane.GetSelection nStartLine, nStartColumn, nEndline, nEndColumn
' *** Get the name of the procedure
sProcName = cpCodePane.CodeModule.ProcOfLine(nStartLine, vbext_pk_Proc)
If sProcName = "" Then Exit Sub
' *** Get the line of the declaration procedure
nProcType = vbext_pk_Proc
nProcStart = cpCodePane.CodeModule.ProcBodyLine(sProcName, nProcType)
If (nProcStart = 0) Then
nProcType = vbext_pk_Get
nProcStart = cpCodePane.CodeModule.ProcBodyLine(sProcName, nProcType)
If (cpCodePane.CodeModule.ProcStartLine(sProcName, nProcType) > nStartLine) Or (nStartLine > cpCodePane.CodeModule.ProcStartLine(sProcName, nProcType) + cpCodePane.CodeModule.ProcCountLines(sProcName, nProcType)) Then
nProcStart = 0
End If
End If
If (nProcStart = 0) Then
nProcType = vbext_pk_Let
nProcStart = cpCodePane.CodeModule.ProcBodyLine(sProcName, nProcType)
End If
If (nProcStart = 0) Then
nProcType = vbext_pk_Set
nProcStart = cpCodePane.CodeModule.ProcBodyLine(sProcName, nProcType)
End If
nLine = nProcStart
' *** Check if not on more than 1 line
sDeclaration = Trim$(cpCodePane.CodeModule.Lines(nLine, 1))
' *** Get the type of function
Call GetWords(sDeclaration, sFirstWord, sSecondWord, sLastWord)
If (sFirstWord = "sub") Or _
((sFirstWord = "static") And (sSecondWord = "sub")) Or _
((sFirstWord = "private") And (sSecondWord = "sub")) Or _
((sFirstWord = "friend") And (sSecondWord = "sub")) Or _
((sFirstWord = "public") And (sSecondWord = "sub")) Then
sEndSub = "Sub"
ElseIf (sFirstWord = "function") Or _
((sFirstWord = "static") And (sSecondWord = "function")) Or _
((sFirstWord = "private") And (sSecondWord = "function")) Or _
((sFirstWord = "friend") And (sSecondWord = "function")) Or _
((sFirstWord = "public") And (sSecondWord = "function")) Then
sEndSub = "Function"
ElseIf (sFirstWord = "property") Or _
((sFirstWord = "static") And (sSecondWord = "property")) Or _
((sFirstWord = "private") And (sSecondWord = "property")) Or _
((sFirstWord = "friend") And (sSecondWord = "property")) Or _
((sFirstWord = "public") And (sSecondWord = "property")) Then
sEndSub = "Property"
Else
sEndSub = "Sub"
End If
' *** Skip rest of procedure
Do While right(sDeclaration, 1) = "_"
nLine = nLine + 1
sDeclaration = Trim$(cpCodePane.CodeModule.Lines(nLine, 1))
Loop
' *** Get start line for procedure
nProcStart = cpCodePane.CodeModule.ProcBodyLine(sProcName, nProcType)
' *** Get the number of lines in the procedure
nProcCount = cpCodePane.CodeModule.ProcCountLines(sProcName, nProcType)
' *** Get the first line of comment
sLine = LCase$(Trim$(cpCodePane.CodeModule.Lines(nLine + 1, 1)))
' *** Go to the end of procedure comment
bExit = False
Do While (sLine = "") Or (left(sLine, 1) = "'") Or (left(sLine, 3) = "rem")
' *** Check if an error handler is alread placed
If (LCase$(left(Trim$(sLine), Len("' #VBIDEUtilsERROR#"))) = LCase$("' #VBIDEUtilsERROR#")) Then
' *** Already done, exit
bExit = True
End If
nLine = nLine + 1
sLine = LCase$(Trim$(cpCodePane.CodeModule.Lines(nLine + 1, 1)))
Loop
If bExit Then
For nI = nProcStart To nProcStart + nProcCount
sLine = LCase$(Trim$(cpCodePane.CodeModule.Lines(nI, 1)))
'Debug.Print sLine
' *** Replace
If InStr(sLine, "select case iaerrorhandler(""error "" & err.number & "": "" & err.description & vbcrlf & ""in") > 0 Then
Call cpCodePane.CodeModule.ReplaceLine(nI, " Select Case IAErrorHandler(""Error "" & Err.Number & "": "" & Err.Description & vbCrLf & ""in " & cpCodePane.CodeModule.Parent.Name & "." & sProcName & """, vbAbortRetryIgnore + vbCritical, ""Error"")")
Exit For
End If
Next
Exit Sub
End If
'Exit Sub
' *** Check if an error handler is alread placed
If (LCase$(left(Trim$(sLine), Len("' #VBIDEUtilsERROR#"))) = LCase$("' #VBIDEUtilsERROR#")) Then
Exit Sub
End If
If LCase$(Trim$(cpCodePane.CodeModule.Lines(nLine, 1))) <> "" Then nLine = nLine + 1
' *** Blank line
sLine = ""
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Add a line
sLine = sIndent & "' #VBIDEUtilsERROR#"
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Add the error handler
sLine = sIndent & "On Error Goto ERROR_" & sProcName
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Blank line if needed
sLine = LCase$(Trim$(cpCodePane.CodeModule.Lines(nLine, 1)))
If sLine <> "" Then
sLine = ""
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
End If
' *** Get the active line
cpCodePane.GetSelection nStartLine, nStartColumn, nEndline, nEndColumn
nLine = nProcStart
' *** Go to the end of the function
Do While (nLine < nProcStart + nProcCount) And (sLine <> "end " & LCase$(sEndSub))
nLine = nLine + 1
sLine = LCase$(Trim$(cpCodePane.CodeModule.Lines(nLine + 1, 1)))
Loop
If LCase$(Trim$(cpCodePane.CodeModule.Lines(nLine, 1))) <> "" Then nLine = nLine + 1
' *** Blank line
sLine = ""
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Add the exit handler
sLine = "EXIT_" & sProcName & ":"
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** On error resume next
sLine = sIndent & "On Error Resume Next"
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Blank line
sLine = ""
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Exit
sLine = sIndent & "Exit " & sEndSub
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Blank line
sLine = ""
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Add a line
sLine = sIndent & "' #VBIDEUtilsERROR#"
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Add the error handler
sLine = "ERROR_" & sProcName & ":"
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
' *** Log Error
For nI = 1 To CountLine(gsErrorHandler)
sTmp = GetLine(gsErrorHandler, nI)
sTmp = Replace(sTmp, "{ProjectName}", prjProject.Name)
sTmp = Replace(sTmp, "{ModuleName}", cpCodePane.CodeModule.Parent.Name)
sTmp = Replace(sTmp, "{ProcedureName}", sProcName)
sLine = sIndent & sTmp
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
Next
' *** Exit
sLine = sIndent & "Resume " & "EXIT_" & sProcName
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
If LCase$(Trim$(cpCodePane.CodeModule.Lines(nLine, 1))) <> "" Then
' *** Blank line
sLine = ""
cpCodePane.CodeModule.InsertLines nLine, sLine
nLine = nLine + 1
End If
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 : Error_Module
' * Module Filename : Error.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
Public Sub InsertModuleError()
' #VBIDEUtils#************************************************************
' * Programmer Name : removed
' * Web Site : http://www.ppreview.net
' * E-Mail : removed
' * Date : 29/10/98
' * Time : 17:26
' * Module Name : Error_Module
' * Module Filename : Error.bas
' * Procedure Name : InsertModuleError
' * Parameters :
' **********************************************************************
' * Comments :
' * Locates the active module, add error handler in all procedures
' *
' *
' **********************************************************************
Dim prjProject As VBProject
Dim cpCodePane As CodePane
Dim nI As Integer
Dim nLine As Long
Dim nStartLine As Long
On Error Resume Next
Dim cHourglass As class_Hourglass
Set cHourglass = New class_Hourglass
' *** 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
' *** Check if the module contains any code
If Not IsThereCode(cpCodePane.CodeModule) Then
MsgBox "The current module does not contain any code to Error."
Exit Sub
End If
' *** Show the status bar user form.
' *** The activate of the userform runs the Adding Error handler
' *** routine, so it can update the status bar form as it progresses.
Load frmProgress
frmProgress.Show
DoEvents
frmProgress.MessageText = "Adding error handler"
frmProgress.Maximum = cpCodePane.CodeModule.members.Count
DoEvents
frmProgress.ZOrder
nStartLine = cpCodePane.CodeModule.CountOfDeclarationLines
For nI = 1 To cpCodePane.CodeModule.members.Count
frmProgress.Progress = nI
If (cpCodePane.CodeModule.members(nI).Type = 5) Or (cpCodePane.CodeModule.members(nI).CodeLocation < cpCodePane.CodeModule.CountOfDeclarationLines) Then GoTo NEXT_ONE
nLine = nStartLine
Do While (nLine < cpCodePane.CodeModule.CountOfLines) And (cpCodePane.CodeModule.ProcOfLine(nLine, vbext_pk_Proc) <> cpCodePane.CodeModule.members(nI).Name)
nLine = nLine + 1
Loop
If nLine <> cpCodePane.CodeModule.CountOfLines Then
nStartLine = cpCodePane.CodeModule.members(nI).CodeLocation + cpCodePane.CodeModule.ProcCountLines(cpCodePane.CodeModule.members(nI).Name, vbext_pk_Proc)
frmProgress.MessageText = "Error handler on " & cpCodePane.CodeModule.members(nI).Name
cpCodePane.SetSelection nLine, 1, nLine, 1
DoEvents
Call InsertProcedureError
End If
NEXT_ONE:
Next
Unload frmProgress
Set frmProgress = Nothing
End Sub
Public Sub InsertProjectError()
' #VBIDEUtils#************************************************************
' * Programmer Name : removed
' * Web Site : http://www.ppreview.net
' * E-Mail : removed
' * Date : 29/10/98
' * Time : 17:26
' * Module Name : Error_Module
' * Module Filename : Error.bas
' * Procedure Name : InsertProjectError
' * Parameters :
' **********************************************************************
' * Comments :
' * Locates the active project, add error handler in all modules
' *
' *
' **********************************************************************
Dim prjProject As VBProject
Dim cpCodePane As CodePane
Dim cmp As VBComponent
Dim nI As Integer
Dim nLine As Long
Dim nCountLine As Long
On Error Resume Next
Dim cHourglass As class_Hourglass
Set cHourglass = New class_Hourglass
' *** 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
' *** Show the status bar user form.
' *** The activate of the userform runs the Adding Error handler
' *** routine, so it can update the status bar form as it progresses.
Load frmProgress
frmProgress.Show
frmProgress.ZOrder
For Each cmp In prjProject.VBComponents
If (cmp.Type <> vbext_ct_RelatedDocument) And (cmp.Type <> vbext_ct_ResFile) Then
If IsThereCode(cmp.CodeModule) Then
' *** Process this module
nLine = 1
nCountLine = cpCodePane.CodeModule.CountOfLines
For nI = 1 To cpCodePane.CodeModule.members.Count
frmProgress.MessageText = "Adding Error handler " & cpCodePane.CodeModule.members(nI).Name
Do While (nLine < nCountLine) And (cpCodePane.CodeModule.ProcOfLine(nLine, vbext_pk_Proc) <> cpCodePane.CodeModule.members(nI).Name)
nLine = nLine + 1
Loop
cpCodePane.SetSelection nLine, 1, nLine, 1
DoEvents
Call InsertProcedureError
Next
End If
End If
Next
Unload frmProgress
Set frmProgress = Nothing
End Sub