-
Notifications
You must be signed in to change notification settings - Fork 33
/
modQuickLint.bas
766 lines (670 loc) · 31.3 KB
/
modQuickLint.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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
Attribute VB_Name = "modQuickLint"
Option Explicit
' Define some constants for easier access.
Private Const MAX_ERRORS_DEFAULT As Long = 50
Private Const Attr As String = "Attribute"
Private Const Q As String = """"
Private Const A As String = "'"
Private Const S As String = " "
Private Const LintKey As String = "'@NO-LINT"
' Represents all lint types. If this is disabled, all are disabled.
Private Const TY_ALLTY As String = "AllTy"
' Lint Types
Private Const TY_ERROR As String = "Error"
Private Const TY_INDNT As String = "Indnt"
Private Const TY_ARGNA As String = "ArgNa"
Private Const TY_ARGTY As String = "ArgTy"
Private Const TY_FSPNA As String = "FSPNa"
Private Const TY_DEPRE As String = "Depre"
Private Const TY_MIGRA As String = "Migra"
Private Const TY_STYLE As String = "Style"
Private Const TY_BLANK As String = "Blank"
Private Const TY_EXPLI As String = "Expli"
Private Const TY_COMPA As String = "Compa"
Private Const TY_TYPEC As String = "TypeC"
Private Const TY_NOTYP As String = "NoTyp"
Private Const TY_BYRFV As String = "ByReV"
Private Const TY_PRIPU As String = "PriPu"
Private Const TY_FNCRE As String = "FncRe"
Private Const TY_CORRE As String = "Corre"
Private Const TY_GOSUB As String = "GoSub"
Private Const TY_CSTOP As String = "CStop"
Private Const TY_OPDEF As String = "OpDef"
Private Const TY_OPBYR As String = "OpByR"
Private Const TY_DFCTL As String = "DfCtl"
' Basic Lint customization here. Just a comma-separated list of the types above.
Private Const Idnt As Long = 2 ' Set to your preferred indent. Default is 4. We always used 2.
Private Const DISABLED_LINT_TYPES As String = TY_OPBYR ' TY_ARGTY & "," & TY_OPDEF
Private Const WARNING_LINT_TYPES As String = ""
Private Const AUTOFIX_LINT_TYPES As String = TY_INDNT & "," & TY_ARGNA & "," & TY_OPDEF & "," & TY_NOTYP & "," & TY_STYLE
Public ErrorPrefix As String ' Just a module global to not have to calculate this each time. Prepends each lint error.
Public ErrorIgnore As String ' Any error types in this string are ignored.
Public AutofixFind() As String
Public AutofixRepl() As String
Public AutofixFindRestOfFile() As String
Public AutofixReplRestOfFile() As String
Public WellKnownNames As New Collection ' Used for lint fixing. Define well known name to always have `cmd` lint to `Cmd`, or whatever other definitions.
Public Function ErrorTypes() As Variant()
ErrorTypes = Array(TY_ALLTY, TY_ERROR, TY_INDNT, TY_ARGNA, TY_ARGTY, TY_FSPNA, TY_DEPRE, TY_MIGRA, TY_STYLE, TY_BLANK, TY_EXPLI, TY_COMPA, TY_TYPEC, TY_NOTYP, TY_BYRFV, TY_PRIPU, TY_FNCRE, TY_CORRE, TY_GOSUB, TY_CSTOP, TY_OPDEF, TY_OPBYR, TY_DFCTL)
End Function
Private Function ResolveSources(ByVal FileName As String) As String
If FileName = "" Then FileName = "prj.vbp"
If FileName = "forms" Then
ResolveSources = VBPForms(True)
ElseIf FileName = "modules" Then
ResolveSources = VBPModules
ElseIf FileName = "classes" Then
ResolveSources = VBPClasses
ElseIf FileName = "usercontrols" Then
ResolveSources = VBPUserControls
Else
If InStr(FileName, "\") = 0 Then FileName = App.Path & "\" & FileName
ResolveSources = IIf(Right(FileName, 4) = ".vbp", VBPCode(FileName), FileName)
End If
End Function
Public Function Lint(Optional ByVal FileName As String = "", Optional ByVal Alert As Boolean = False) As String
Dim FileList As String
FileList = ResolveSources(FileName)
Lint = QuickLintFiles(FileList, MAX_ERRORS_DEFAULT)
If Alert And Lint <> "" Then MsgBox Lint
End Function
Public Function LintFix(Optional ByVal FileName As String = "") As String
Dim FileList As String
FileList = ResolveSources(FileName)
QuickLintFiles FileList, 0, True
End Function
Public Function QuickLintFiles(ByVal List As String, Optional ByVal MaxErrors As Long = MAX_ERRORS_DEFAULT, Optional ByVal AutoFix As Boolean = False) As String
Const lintDotsPerRow As Long = 50
Dim L As Variant
Dim X As Long
Dim StartTime As Date
StartTime = Now
For Each L In Split(List, vbCrLf)
Dim Result As String
If Trim(L) = "" Then GoTo NextFile
Result = QuickLintFile(L, MaxErrors, AutoFix)
If Not Result = "" Then
Dim S As String
Debug.Print vbCrLf & "Done (" & DateDiff("s", StartTime, Now) & "s). To re-run for failing file, hit enter on the line below:"
S = "LINT FAILED: " & L & vbCrLf & Result & vbCrLf & "?Lint(""" & L & """)"
QuickLintFiles = S
Exit Function
Else
Debug.Print Switch(Right(L, 3) = "frm", "o", Right(L, 3) = "cls", "x", True, ".");
End If
X = X + 1
If X >= lintDotsPerRow Then X = 0: Debug.Print
NextFile:
DoEvents
Next
Debug.Print vbCrLf & "Done (" & DateDiff("s", StartTime, Now) & "s)."
QuickLintFiles = ""
End Function
Public Function QuickLintFile(ByVal File As String, Optional ByVal MaxErrors As Long = MAX_ERRORS_DEFAULT, Optional ByVal AutoFix As Boolean = False) As String
If InStr(File, "\") = 0 Then File = App.Path & "\" & File
Dim fName As String, Contents As String, GivenName As String, CheckName As String
fName = Mid(File, InStrRev(File, "\") + 1)
CheckName = fName
CheckName = Replace(CheckName, ".bas", "")
CheckName = Replace(CheckName, ".frm", "")
CheckName = Replace(CheckName, ".cls", "")
CheckName = Replace(CheckName, ".ctl", "")
ErrorPrefix = Right(Space(18) & fName, 18) & " "
Contents = ReadEntireFile(File)
GivenName = RegExNMatch(Contents, "Attribute VB_Name = ""([^""]+)""", 0)
GivenName = Replace(Replace(GivenName, "Attribute VB_Name = ", ""), """", "")
If LCase(CheckName) <> LCase(GivenName) Then
QuickLintFile = "QuickLintFile: Module name [" & GivenName & "] must match file name [" & RemoveUntil(fName, ".") & "]. Rename module or class to match the other"
Exit Function
End If
QuickLintFile = QuickLintContents(Contents, MaxErrors, IIf(AutoFix, File, ""))
End Function
Public Function QuickLintContents(ByVal Contents As String, Optional ByVal MaxErrors As Long = MAX_ERRORS_DEFAULT, Optional ByVal AutoFix As String = "") As String
Dim Lines() As String, ActualLine As Variant, LL As String, L As String
On Error GoTo LintError
DisableLintType DISABLED_LINT_TYPES, True
Lines = Split(Replace(Contents, vbCr, ""), vbLf)
Erase AutofixFind
Erase AutofixRepl
Erase AutofixFindRestOfFile
Erase AutofixReplRestOfFile
Dim InAttributes As Boolean, InBody As Boolean
Dim MultiLineOrig As String, MultiLine As String, IsMultiLine As Boolean
Dim Indent As Long, LineN As Long
Dim Errors As String, ErrorCount As Long
Dim BlankLineCount As Long
Dim Options As New Collection
Dim NewContents As String
Indent = 0
TestDefaultControlNames Errors, ErrorCount, 0, Contents
For Each ActualLine In Lines
LL = ActualLine
If MaxErrors > 0 And ErrorCount >= MaxErrors Then Exit For
IsMultiLine = False
If Right(LL, 2) = " _" Then
Dim Portion As String
Portion = Left(LL, Len(LL) - 2)
MultiLineOrig = MultiLineOrig & LL & vbCrLf
If MultiLine <> "" Then Portion = " " & Trim(Portion)
MultiLine = MultiLine + Portion
LineN = LineN + 1
GoTo NextLineWithoutRecord
ElseIf MultiLine <> "" Then
MultiLineOrig = MultiLineOrig & LL
LL = MultiLine & " " & Trim(LL)
MultiLine = ""
IsMultiLine = True
Else
MultiLineOrig = ""
End If
TestBlankLines Errors, ErrorCount, LineN, LL, BlankLineCount
TestLintControl LL
L = CleanLine(LL)
If Not InBody Then
Dim IsAttribute As Boolean
IsAttribute = Left(L, 10) = "Attribute "
If Not InAttributes And IsAttribute Then
InAttributes = True
GoTo NextLine
ElseIf InAttributes And Not IsAttribute Then
InAttributes = False
InBody = True
LineN = 0
Else
GoTo NextLine
End If
End If
LineN = LineN + 1
' If LineN = 487 Then Stop
Dim UnindentedAlready As Boolean
If RegExTest(L, " ^Option ") Then Options.Add "true", Replace(L, "Options ", "")
If RegExTest(L, "^[ ]*(Else|ElseIf .* Then)$") Then
Indent = Indent - Idnt
ElseIf RegExTest(L, "^[ ]*End Select$") Then
Indent = Indent - Idnt - Idnt
ElseIf RegExTest(L, "^[ ]*(End (If|Function|Sub|Property|Enum|Type|With)|Next( .*)?|Wend|Loop|Loop (While .*|Until .*)|ElseIf .*)$") Then
Indent = Indent - Idnt
UnindentedAlready = True
Else
UnindentedAlready = False
End If
Dim LineIndent As Long
LineIndent = 0
Do While Mid(RTrim(L), LineIndent + 1, 1) = S: LineIndent = LineIndent + 1: Loop
' If LineN = 210 Then Stop
TestIndent Errors, ErrorCount, LineN, L, LineIndent, IIf(Not RegExTest(L, "^[ ]*Case "), Indent, Indent - Idnt)
Dim Statements() As String, SS As Variant, St As String
Statements = Split(L, ": ")
For Each SS In Statements
St = SS
If RegExTest(L, "^[ ]*(Else|ElseIf .*)$") Then
Indent = Indent + Idnt
ElseIf RegExTest(St, "^[ ]*(End (If|Function|Sub|Property)|Loop|Loop .*|Enum|Type|Select)$") Then
If Not UnindentedAlready Then Indent = Indent - Idnt
ElseIf RegExTest(St, "^[ ]*If ") Then
If Not RegExTest(St, "\bThen ") Then
Indent = Indent + Idnt
Else
Dim IfStatementBody As String
IfStatementBody = Mid(L, InStr(L, " Then "))
If RegExTest(IfStatementBody, "\b(While |For )\b") Then
RecordError Errors, ErrorCount, TY_STYLE, LineN, "Place For/While on separate line from If. Indent check disabled.", TY_INDNT
Else
TestCodeLine Errors, ErrorCount, LineN, IfStatementBody
End If
End If
ElseIf RegExTest(St, "^[ ]*For ") Then
Indent = Indent + Idnt
ElseIf RegExTest(St, "^[ ]*Next$") Then
If Not UnindentedAlready Then Indent = Indent - Idnt
ElseIf RegExTest(St, "^[ ]*Next [a-zA-Z_][a-zA-Z0-9_]*$") Then
RecordError Errors, ErrorCount, TY_STYLE, LineN, "Remove variable from NEXT statement"
AddFix TY_STYLE, "Next [a-zA-Z_][a-zA-Z0-9_]*$", "Next"
If Not UnindentedAlready Then Indent = Indent - Idnt
ElseIf RegExTest(St, "^[ ]*While ") Then
RecordError Errors, ErrorCount, TY_STYLE, LineN, "Use Do While/Until...Loop in place of While...Wend"
AddFix TY_STYLE, "\bWhile\b", "Do While"
Indent = Indent + Idnt
ElseIf RegExTest(St, "^[ ]*Wend") Then
AddFix TY_STYLE, "\bWend\b", "Loop"
ElseIf RegExTest(St, "^[ ]*Do (While|Until)") Then
Indent = Indent + Idnt
ElseIf RegExTest(St, "^[ ]*Loop$") Then
ElseIf RegExTest(St, "^[ ]*Do$") Then
Indent = Indent + Idnt
ElseIf RegExTest(St, "^[ ]*Loop While") Then
Indent = Indent - Idnt
ElseIf RegExTest(St, "^[ ]*Select Case ") Then
Indent = Indent + Idnt + Idnt
ElseIf RegExTest(St, "^[ ]*With ") Then
If TestWithStatement(Errors, ErrorCount, LineN, St) Then Indent = Indent + Idnt
ElseIf RegExTest(St, "^[ ]*(Private |Public )?Declare (Function |Sub )") Then
' External Api
ElseIf RegExTest(St, "^((Private|Public|Friend) )?Function ") Then
If Not RegExTest(St, ": End Function") Then Indent = Indent + Idnt
TestSignature Errors, ErrorCount, LineN, St
ElseIf RegExTest(St, "^((Private|Public|Friend) )?Sub ") Then
If Not RegExTest(St, ": End Sub") Then Indent = Indent + Idnt
TestSignature Errors, ErrorCount, LineN, St
ElseIf RegExTest(St, "^((Private|Public|Friend) )?Property (Get|Let|Set) ") Then
If Not RegExTest(St, ": End Property") Then Indent = Indent + Idnt
TestSignature Errors, ErrorCount, LineN, St
ElseIf RegExTest(St, "^[ ]*(Public |Private )?(Enum |Type )") Then
Indent = Indent + Idnt
ElseIf RegExTest(St, "^[ ]*(Public |Private )?Declare ") Then
Indent = Indent + Idnt
ElseIf RegExTest(St, "^[ ]*(Dim|Private|Public|Const|Global) ") Then
TestDeclaration Errors, ErrorCount, LineN, St, False
Else
TestCodeLine Errors, ErrorCount, LineN, St
End If
NextStatement:
Next
NextLine:
If AutoFix <> "" Then
Dim Fixed As String
' If IsMultiLine Then Stop
' If InStr(LL, "Function") > 0 Then Stop
' If InStr(LL, "Private Function") > 0 Then Stop
If IsMultiLine Then
Fixed = PerformAutofix(MultiLineOrig)
Else
Fixed = PerformAutofix(LL)
End If
NewContents = NewContents & Fixed & vbCrLf
End If
NextLineWithoutRecord:
Next
If AutoFix <> "" Then WriteFile AutoFix, Left(NewContents, Len(NewContents) - 2), True
TestModuleOptions Errors, ErrorCount, Options
QuickLintContents = Errors
Exit Function
LintError:
RecordError Errors, ErrorCount, TY_ERROR, 0, "Linter Error [" & Err.Number & "]: " & Err.Description & ". Actual Line [" & LineN & "]: " & ActualLine
QuickLintContents = Errors
Resume Next
End Function
Private Function ReadEntireFile(ByVal tFileName As String) As String
On Error Resume Next
Dim mFSO As Object
Set mFSO = CreateObject("Scripting.FileSystemObject")
ReadEntireFile = mFSO.OpenTextFile(tFileName, 1).ReadAll
If FileLen(tFileName) / 10 <> Len(ReadEntireFile) / 10 Then
MsgBox "ReadEntireFile was short: " & FileLen(tFileName) & " vs " & Len(ReadEntireFile)
End If
End Function
Public Function CleanLine(ByVal Line As String) As String
Dim X As Long, Y As Long
Do While True
X = InStr(Line, Q)
If X = 0 Then Exit Do
Y = InStr(X + 1, Line, Q)
Do While Mid(Line, Y + 1, 1) = Q
Y = InStr(Y + 2, Line, Q)
Loop
If Y = 0 Then Exit Do
Line = Left(Line, X - 1) & String(Y - X + 1, "S") & Mid(Line, Y + 1)
Loop
X = InStr(Line, A)
If X > 0 Then Line = RTrim(Left(Line, X - 1))
CleanLine = Line
End Function
Public Sub RecordError(ByRef Errors As String, ByRef ErrorCount As Long, ByVal Typ As String, ByVal LineN As Long, ByVal Error As String, Optional ByVal DisableLintOnError As String = "")
Dim eLine As String
If IsLintTypeDisabled(Typ) Then Exit Sub
If Len(Errors) <> 0 Then Errors = Errors & vbCrLf
If InStr(Join(ErrorTypes, ","), Typ) = 0 Then
Errors = Errors & ErrorPrefix & "[" & TY_ERROR & "] Line " & Right(Space(5) & LineN, 5) & ": Unknown error type in linter (add to ErrorTypes): " & Typ
End If
eLine = ErrorPrefix & "[" & Right(Space(5) & Typ, 5) & "] Line " & Right(Space(5) & LineN, 5) & ": " & Error
If InStr(WARNING_LINT_TYPES, Typ) > 0 Then
Debug.Print "WARNING: " & eLine
Else
Errors = Errors & eLine
ErrorCount = ErrorCount + 1
End If
If DisableLintOnError <> "" Then DisableLintType DisableLintOnError
End Sub
Public Function StartsWith(ByVal L As String, ByVal Find As String) As Boolean
StartsWith = Left(L, Len(Find)) = Find
End Function
Public Function StripLeft(ByVal L As String, ByVal Find As String) As String
If StartsWith(L, Find) Then StripLeft = Mid(L, Len(Find) + 1) Else StripLeft = L
End Function
Public Function RecordLeft(ByRef L As String, ByVal Find As String) As Boolean
RecordLeft = StartsWith(L, Find)
If RecordLeft Then L = Mid(L, Len(Find) + 1)
End Function
Public Sub TestIndent(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal L As String, ByVal LineIndent As Long, ByVal ExpectedIndent As Long)
If RTrim(L) = "" Then Exit Sub
If RegExTest(L, "^On Error ") Then Exit Sub
If RegExTest(L, "^[a-zA-Z][a-zA-Z0-9]*:$") Then Exit Sub
If RegExTest(L, "#(If|End If|Else|Const)") Then Exit Sub
If StartsWith(L, "Debug.") Then Exit Sub
If Not IsLintTypeDisabled(TY_INDNT) Then
If LineIndent <> ExpectedIndent Then
RecordError Errors, ErrorCount, TY_INDNT, LineN, "Incorrect Indent -- expected " & ExpectedIndent & ", got " & LineIndent
AddFix TY_INDNT, "^[ ]*", Space(ExpectedIndent)
End If
End If
End Sub
Public Sub TestBlankLines(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal L As String, ByRef BlankLineCount As Long)
If Trim(L) <> "" Then
BlankLineCount = 0
Exit Sub
End If
BlankLineCount = BlankLineCount + 1
If BlankLineCount > 3 Then RecordError Errors, ErrorCount, TY_BLANK, LineN, "Too many blank lines."
End Sub
Public Sub TestLintControl(ByVal L As String)
Dim LL As Variant
If InStr(L, LintKey) = 0 Then Exit Sub
Dim Match As String, Typ As String
Match = RegExNMatch(L, LintKey & "(-.....)?$", 0)
If Match = "" Then Exit Sub
Typ = IIf(Match = LintKey, TY_ALLTY, Replace(Match, LintKey & "-", ""))
DisableLintType Typ
End Sub
Public Function IsLintTypeDisabled(ByVal Typ As String) As Boolean
IsLintTypeDisabled = InStr(UCase(ErrorIgnore), UCase(Typ)) > 0 Or InStr(ErrorIgnore, TY_ALLTY) > 0
End Function
Public Sub DisableLintType(ByVal Typ As String, Optional ByVal Reset As Boolean = False)
If Reset Then ErrorIgnore = ""
If Typ = "" Then Exit Sub
If IsNotInStr(Typ, ",") Then
If IsLintTypeDisabled(Typ) Then Exit Sub
ErrorIgnore = ErrorIgnore & "," & Typ
Else
Dim L As Variant
For Each L In Split(Typ, ",")
DisableLintType L
Next
End If
End Sub
Public Sub TestModuleOptions(ByRef Errors As String, ByRef ErrorCount As Long, ByVal Options As Collection)
On Error Resume Next
Dim Value As String
Value = ""
Value = Options("Explicit")
If Value <> "" Then RecordError Errors, ErrorCount, TY_EXPLI, 0, "Option Explicit not set on file"
Value = ""
Value = Options("Compare Binary")
Value = Options("Compare Database")
If Value <> "" Then RecordError Errors, ErrorCount, TY_COMPA, 0, "Use of Option Compare not recommended"
End Sub
Public Sub TestArgName(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal Name As String)
Dim LL As String
LL = Trim(Name)
If RegExTest(LL, "^[a-zA-Z_][a-zA-Z0-9_]*%$") Then ' % Integer Dim L%
RecordError Errors, ErrorCount, TY_TYPEC, LineN, "Use of Type Character For Integer deprecated: " & LL
LL = Left(LL, Len(LL) - 1)
AddFix TY_TYPEC, "\b" & LL & ".\b", LL & " As Integer"
ElseIf RegExTest(LL, "^[a-zA-Z_][a-zA-Z0-9_]*&$") Then ' & Long Dim M&
RecordError Errors, ErrorCount, TY_TYPEC, LineN, "Use of Type Character For Long deprecated: " & LL
LL = Left(LL, Len(LL) - 1)
AddFix TY_TYPEC, "\b" & LL & ".\b", LL & " As Long"
ElseIf RegExTest(LL, "^[a-zA-Z_][a-zA-Z0-9_]*@$") Then ' @ Decimal Const W@ = 37.5
RecordError Errors, ErrorCount, TY_TYPEC, LineN, "Use of Type Character For Decimal deprecated: " & LL
LL = Left(LL, Len(LL) - 1)
AddFix TY_TYPEC, "\b" & LL & ".\b", LL & " As Decimal"
ElseIf RegExTest(LL, "^[a-zA-Z_][a-TY_TYPEC-Z0-9_]*!$") Then ' ! Single Dim Q!
RecordError Errors, ErrorCount, TY_DEPRE, LineN, "Use of Type Character For Single deprecated: " & LL
LL = Left(LL, Len(LL) - 1)
AddFix TY_TYPEC, "\b" & LL & ".\b", LL & " As Single"
ElseIf RegExTest(LL, "^[a-zA-Z_][a-zA-Z0-9_]*#$") Then ' # Double Dim X#
RecordError Errors, ErrorCount, TY_TYPEC, LineN, "Use of Type Character For Double deprecated: " & LL
LL = Left(LL, Len(LL) - 1)
AddFix TY_TYPEC, "\b" & LL & ".\b", LL & " As Double"
ElseIf RegExTest(LL, "^[a-zA-Z_][a-zA-Z0-9_]*\$$") Then ' $ String Dim V$ = "Secret"
RecordError Errors, ErrorCount, TY_TYPEC, LineN, "Use of Type Character For String deprecated: " & LL
LL = Left(LL, Len(LL) - 1)
AddFix TY_TYPEC, "\b" & LL & ".\b", LL & " As String"
End If
If RegExTest(LL, "^[a-z][a-z0-9_]*[%&@!#$]?$") Then
RecordError Errors, ErrorCount, TY_ARGNA, LineN, "Identifier name declared as all lower-case: " & LL
AddFix TY_ARGNA, "\b" & LL & "\b", WellKnownName(LL), True
End If
End Sub
Public Function WellKnownName(ByVal Str As String) As String
On Error Resume Next
InitWellKnownNames
WellKnownName = ""
WellKnownName = WellKnownNames(LCase(Str))
If WellKnownName = "" Then WellKnownName = Capitalize(Str)
End Function
Private Sub AddWellKnownName(ByVal S As String)
On Error Resume Next
WellKnownNames.Add S, LCase(S)
End Sub
Public Sub InitWellKnownNames()
Dim L As Variant
If WellKnownNames.Count > 0 Then Exit Sub
For Each L In Array("hWnd")
AddWellKnownName L
Next
End Sub
Public Sub TestSignatureName(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal Name As String)
Dim LL As String
LL = Trim(Name)
If RegExTest(LL, "^[a-z][a-z0-9_]*$") Then RecordError Errors, ErrorCount, TY_FSPNA, LineN, "Func/Sub/Prop name declared as all lower-case: " & LL
End Sub
Public Sub TestDeclaration(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal L As String, ByVal InSignature As Boolean)
Dim IsOptional As Boolean, IsByVal As Boolean, IsByRef As Boolean, IsParamArray As Boolean
Dim IsWithEvents As Boolean, IsEvent As Boolean
L = Trim(L)
L = StripLeft(L, "Dim ")
L = StripLeft(L, "Private ")
L = StripLeft(L, "Public ")
L = StripLeft(L, "Const ")
L = StripLeft(L, "Global ")
Dim Item As Variant, LL As String
For Each Item In Split(L, ", ")
Dim IX As Long, ArgName As String, ArgType As String, ArgDefault As String, StandardEvent As Boolean
LL = Item
IsEvent = RecordLeft(LL, "Event ")
IsWithEvents = RecordLeft(LL, "WithEvents ")
IsOptional = RecordLeft(LL, "Optional ")
IsByVal = RecordLeft(LL, "ByVal ")
IsByRef = RecordLeft(LL, "ByRef ")
IsParamArray = RecordLeft(LL, "ParamArray ")
IX = InStr(LL, " = ")
If IX > 0 Then
ArgDefault = Trim(Mid(LL, IX + 3))
LL = Left(LL, IX - 1)
Else
ArgDefault = ""
End If
IX = InStr(LL, " As ")
If IX > 0 Then
ArgType = Trim(Mid(LL, IX + 4))
LL = Left(LL, IX - 1)
Else
ArgType = ""
End If
ArgName = LL
StandardEvent = IsStandardEvent(ArgName, ArgType)
' If IsParamArray Then Stop
If ArgType = "" And Not IsEvent And Not StandardEvent Then
RecordError Errors, ErrorCount, TY_NOTYP, LineN, "Local Parameter Missing Type: [" & ArgName & "]"
AddFix TY_NOTYP, "\b" & ArgName & "\b", ArgName & " As Variant"
End If
If InSignature Then
If IsParamArray Then
If Right(LL, 2) <> "()" Then RecordError Errors, ErrorCount, TY_STYLE, LineN, "ParamArray variable not declared as an Array. Add '()': " & ArgName
Else
If Not IsByVal And Not IsByRef And Not StandardEvent Then
RecordError Errors, ErrorCount, TY_BYRFV, LineN, "ByVal or ByRef not specified on parameter [" & ArgName & "] -- specify one or the other"
AddFix TY_BYRFV, "\b" & Item & "\b", "ByRef " & Item
End If
End If
If IsOptional And IsByRef Then
RecordError Errors, ErrorCount, TY_OPBYR, LineN, "Modifiers 'Optional ByRef' may not migrate well: " & ArgName
End If
If IsOptional And ArgDefault = "" Then
RecordError Errors, ErrorCount, TY_OPDEF, LineN, "Parameter declared OPTIONAL but no default specified. Must specify default: " & ArgName
AddFix TY_OPDEF, "\b" & Item & "\b", Item & " = " & GetTypeDefault(ArgType)
End If
End If
TestArgName Errors, ErrorCount, LineN, LL
If Not StandardEvent Then TestArgType Errors, ErrorCount, LineN, LL, ArgType
Next
End Sub
Public Function GetTypeDefault(ByVal ArgType As String) As String
Select Case LCase(ArgType)
Case "string"
GetTypeDefault = """"""
Case "long", "integer", "short", "byte", "date", "decimal", "float", "double", "currency"
GetTypeDefault = "0"
Case "boolean"
GetTypeDefault = "False"
Case "vbtristate"
GetTypeDefault = "vbUseDefault"
Case Else
GetTypeDefault = "Nothing"
End Select
End Function
Public Function IsStandardEvent(ByVal ArgName As String, ByVal ArgType As String) As Boolean
If ArgName = "Cancel" Then IsStandardEvent = True: Exit Function
If ArgName = "LastRow" Then IsStandardEvent = True: Exit Function
If ArgName = "LastCol" Then IsStandardEvent = True: Exit Function
If ArgName = "newCol" Then IsStandardEvent = True: Exit Function
If ArgName = "newCol" Then IsStandardEvent = True: Exit Function
If ArgName = "newRow" Then IsStandardEvent = True: Exit Function
If ArgName = "OldValue" Then IsStandardEvent = True: Exit Function
If ArgName = "Index" And ArgType = "Integer" Then IsStandardEvent = True: Exit Function
If ArgName = "Offset" And ArgType = "Integer" Then IsStandardEvent = True: Exit Function
If ArgName = "UnloadMode" And ArgType = "Integer" Then IsStandardEvent = True: Exit Function
If ArgName = "KeyCode" And ArgType = "Integer" Then IsStandardEvent = True: Exit Function
If ArgName = "KeyAscii" And ArgType = "Integer" Then IsStandardEvent = True: Exit Function
If ArgName = "Button" And ArgType = "Integer" Then IsStandardEvent = True: Exit Function
If ArgName = "Shift" And ArgType = "Integer" Then IsStandardEvent = True: Exit Function
If ArgName = "X" And ArgType = "Single" Then IsStandardEvent = True: Exit Function
If ArgName = "Y" And ArgType = "Single" Then IsStandardEvent = True: Exit Function
If ArgName = "Source" And ArgType = "Control" Then IsStandardEvent = True: Exit Function
If ArgName = "Item" And ArgType = "Integer" Then IsStandardEvent = True: Exit Function
IsStandardEvent = False
End Function
Public Sub TestArgType(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal Name As String, ByVal Typ As String)
Dim Expect As String
If Typ = "Integer" Then Expect = "Long"
If Typ = "Short" Then Expect = "Long"
If Typ = "Byte" Then Expect = "Long"
If Typ = "Float" Then Expect = "Double"
If Typ = "Any" Then Expect = "String"
If Expect <> "" Then
RecordError Errors, ErrorCount, TY_ARGTY, LineN, "Arg [" & Name & "] is of type [" & Typ & "] -- use " & Expect & " (or disable type linting for file)"
End If
End Sub
Public Sub TestSignature(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal LL As String)
If Not RegExTest(LL, "^[ ]*(Private|Public|Friend) ") Then RecordError Errors, ErrorCount, TY_PRIPU, LineN, "Either Private or Public should be specified, but neither was."
Dim L As String, WithReturn As Boolean
L = LL
L = StripLeft(L, "Private ")
L = StripLeft(L, "Public ")
L = StripLeft(L, "Friend ")
L = StripLeft(L, "Sub ")
If StartsWith(L, "Function ") Or StartsWith(L, "Property Get ") Then WithReturn = True
L = StripLeft(L, "Function ")
L = StripLeft(L, "Property Get ")
L = StripLeft(L, "Property Let ")
L = StripLeft(L, "Property Set ")
Dim IX As Long, Ix2 As Long, Name As String, Args As String, Ret As String
IX = InStr(L, "(")
If IX = 0 Then Exit Sub
Name = Left(L, IX - 1)
If RegExTest(L, "\) As .*\(\)$") Then
Ix2 = InStrRev(L, ")", Len(L) - 2)
Else
Ix2 = InStrRev(L, ")")
End If
Args = Mid(L, IX + 1, Ix2 - IX - 1)
Ret = Mid(L, Ix2 + 1)
TestSignatureName Errors, ErrorCount, LineN, Name
If WithReturn And Ret = "" Then RecordError Errors, ErrorCount, TY_FNCRE, LineN, "Function Return Type Not Specified -- Specify Return Type or Variant"
TestDeclaration Errors, ErrorCount, LineN, Args, True
End Sub
Public Sub TestDefaultControlNames(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal Contents As String)
Dim vTypes() As Variant, vType As Variant
Dim Matcher As String, Results As String, N As Long, I As Long
If IsInStr(Contents, "@NO-LINT-DFCTL") Then Exit Sub
vTypes = Array("CheckBox", "Command", "Option", "Frame", "Label", "TextBox", "RichTextBox", "RichTextBoxNew", "ComboBox", "ListBox", "Timer", "UpDown", "HScrollBar", "Image", "Picture", "MSFlexGrid", "DBGrid", "Line", "Shape", "DTPicker")
For Each vType In vTypes
Matcher = "Begin [a-zA-Z0-9]*.[a-zA-Z0-9]* " & vType & "[0-9]*"
N = RegExCount(Contents, Matcher)
For I = 0 To N - 1
Results = RegExNMatch(Contents, Matcher, I)
RecordError Errors, ErrorCount, TY_DFCTL, 0, "Default control name in use on form: " & Results
Next
Next
End Sub
Public Sub TestCodeLine(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal L As String)
If RegExTest(L, "+ """) Or RegExTest(L, """ +") Then RecordError Errors, ErrorCount, TY_CORRE, LineN, "Possible use of + instead of & on String concatenation"
If RegExTest(L, " Me[.]") Then RecordError Errors, ErrorCount, TY_CORRE, LineN, "Use of 'Me.*' is not required."
If RegExTest(L, "\.Enabled = [-0-9]") Then RecordError Errors, ErrorCount, TY_CORRE, LineN, "Property [Enabled] Should Be Boolean. Numeric found."
If RegExTest(L, "\.Visible = [-0-9]") Then RecordError Errors, ErrorCount, TY_CORRE, LineN, "Property [Visible] Should Be Boolean. Numeric found."
If RegExTest(L, " Call ") Then RecordError Errors, ErrorCount, TY_CORRE, LineN, "Remove keyword 'Call'."
If RegExTest(L, " GoSub ") Or RegExTest(L, " Return$") Then RecordError Errors, ErrorCount, TY_GOSUB, LineN, "Remove uses of 'GoSub' and 'Return'."
If RegExTest(L, " Stop$") Or RegExTest(L, " Return$") Then RecordError Errors, ErrorCount, TY_CSTOP, LineN, "Code contains STOP statement."
End Sub
Public Sub AddFix(ByVal Typ As String, ByVal Find As String, ByVal Repl As String, Optional ByVal RestOfFile As Boolean = False)
Dim N As Long
If InStr(AUTOFIX_LINT_TYPES, Typ) = 0 Then Exit Sub
On Error Resume Next
If RestOfFile Then
N = UBound(AutofixFindRestOfFile)
N = N + 1
ReDim Preserve AutofixFindRestOfFile(1 To N)
ReDim Preserve AutofixReplRestOfFile(1 To N)
AutofixFindRestOfFile(N) = Find
AutofixReplRestOfFile(N) = Repl
Else
N = UBound(AutofixFind)
N = N + 1
ReDim Preserve AutofixFind(1 To N)
ReDim Preserve AutofixRepl(1 To N)
AutofixFind(N) = Find
AutofixRepl(N) = Repl
End If
End Sub
Public Function GetFixCount(Optional ByVal RestOfFile As Boolean = False) As Long
On Error Resume Next
GetFixCount = 0
GetFixCount = UBound(IIf(RestOfFile, AutofixFindRestOfFile, AutofixFind))
End Function
Public Function PerformAutofix(ByVal Line As String) As String
Dim I As Long, N As Long
Dim Find As String, Repl As String
N = GetFixCount(False)
If N > 0 Then
For I = LBound(AutofixFind) To UBound(AutofixFind)
Find = AutofixFind(I)
Repl = AutofixRepl(I)
If Find = "" Then GoTo NextFix
Line = RegExReplace(Line, Find, Repl)
NextFix:
Next
End If
N = GetFixCount(True)
If N > 0 Then
For I = LBound(AutofixFindRestOfFile) To UBound(AutofixFindRestOfFile)
Find = AutofixFindRestOfFile(I)
Repl = AutofixReplRestOfFile(I)
If Find = "" Then GoTo NextFixRestOfFile
Line = RegExReplace(Line, Find, Repl)
NextFixRestOfFile:
Next
End If
Finish:
PerformAutofix = Line
Erase AutofixFind
Erase AutofixRepl
End Function
Public Function TestWithStatement(ByRef Errors As String, ByRef ErrorCount As Long, ByVal LineN As Long, ByVal L As String) As Boolean
Dim Value As String
Value = Trim(L)
Value = StripLeft(Value, "With ")
If Not ValueIsSimple(Value) Then
RecordError Errors, ErrorCount, TY_MIGRA, LineN, "Remove expression from WITH: " & Value
End If
TestWithStatement = True
End Function