improve public auto fix API

This commit is contained in:
WebFreak001 2023-07-07 22:33:01 +02:00 committed by Jan Jurzitza
parent 43caad72a8
commit 3345a1953a
3 changed files with 38 additions and 19 deletions

View File

@ -407,14 +407,12 @@ public:
AutoFix.CodeReplacement[] resolveAutoFix( AutoFix.CodeReplacement[] resolveAutoFix(
const Module mod, const Module mod,
scope const(Token)[] tokens, scope const(Token)[] tokens,
const Message message,
const AutoFix.ResolveContext context, const AutoFix.ResolveContext context,
const AutoFixFormatting formatting, const AutoFixFormatting formatting,
) )
{ {
cast(void) mod; cast(void) mod;
cast(void) tokens; cast(void) tokens;
cast(void) message;
cast(void) context; cast(void) context;
cast(void) formatting; cast(void) formatting;
assert(0); assert(0);

View File

@ -996,7 +996,8 @@ MessageSet analyze(string fileName, const Module m, const StaticAnalysisConfig a
foreach (message; check.messages) foreach (message; check.messages)
{ {
if (resolveAutoFixes) if (resolveAutoFixes)
message.resolveMessageFromCheck(check, m, tokens, formattingConfig); foreach (ref autofix; message.autofixes)
autofix.resolveAutoFixFromCheck(check, m, tokens, formattingConfig);
set.insert(message); set.insert(message);
} }
} }
@ -1004,8 +1005,8 @@ MessageSet analyze(string fileName, const Module m, const StaticAnalysisConfig a
return set; return set;
} }
private void resolveMessageFromCheck( private void resolveAutoFixFromCheck(
ref Message message, ref AutoFix autofix,
BaseAnalyzer check, BaseAnalyzer check,
const Module m, const Module m,
scope const(Token)[] tokens, scope const(Token)[] tokens,
@ -1014,16 +1015,12 @@ private void resolveMessageFromCheck(
{ {
import std.sumtype : match; import std.sumtype : match;
foreach (ref autofix; message.autofixes) autofix.replacements.match!(
{ (AutoFix.ResolveContext context) {
autofix.replacements.match!( autofix.replacements = check.resolveAutoFix(m, tokens, context, formattingConfig);
(AutoFix.ResolveContext context) { },
autofix.replacements = check.resolveAutoFix(m, tokens, (_) {}
message, context, formattingConfig); );
},
(_) {}
);
}
} }
void resolveAutoFixes(ref Message message, string fileName, void resolveAutoFixes(ref Message message, string fileName,
@ -1031,6 +1028,30 @@ void resolveAutoFixes(ref Message message, string fileName,
scope const(Token)[] tokens, const Module m, scope const(Token)[] tokens, const Module m,
const StaticAnalysisConfig analysisConfig, const StaticAnalysisConfig analysisConfig,
const AutoFixFormatting overrideFormattingConfig = AutoFixFormatting.invalid) const AutoFixFormatting overrideFormattingConfig = AutoFixFormatting.invalid)
{
resolveAutoFixes(message.checkName, message.autofixes, fileName, moduleCache,
tokens, m, analysisConfig, overrideFormattingConfig);
}
AutoFix.CodeReplacement[] resolveAutoFix(string messageCheckName, AutoFix.ResolveContext context,
string fileName,
ref ModuleCache moduleCache,
scope const(Token)[] tokens, const Module m,
const StaticAnalysisConfig analysisConfig,
const AutoFixFormatting overrideFormattingConfig = AutoFixFormatting.invalid)
{
AutoFix temp;
temp.replacements = context;
resolveAutoFixes(messageCheckName, (&temp)[0 .. 1], fileName, moduleCache,
tokens, m, analysisConfig, overrideFormattingConfig);
return temp.expectReplacements("resolving didn't work?!");
}
void resolveAutoFixes(string messageCheckName, AutoFix[] autofixes, string fileName,
ref ModuleCache moduleCache,
scope const(Token)[] tokens, const Module m,
const StaticAnalysisConfig analysisConfig,
const AutoFixFormatting overrideFormattingConfig = AutoFixFormatting.invalid)
{ {
import dsymbol.symbol : DSymbol; import dsymbol.symbol : DSymbol;
@ -1054,14 +1075,15 @@ void resolveAutoFixes(ref Message message, string fileName,
foreach (BaseAnalyzer check; getAnalyzersForModuleAndConfig(fileName, tokens, m, analysisConfig, moduleScope)) foreach (BaseAnalyzer check; getAnalyzersForModuleAndConfig(fileName, tokens, m, analysisConfig, moduleScope))
{ {
if (check.getName() == message.checkName) if (check.getName() == messageCheckName)
{ {
resolveMessageFromCheck(message, check, m, tokens, formattingConfig); foreach (ref autofix; autofixes)
autofix.resolveAutoFixFromCheck(check, m, tokens, formattingConfig);
return; return;
} }
} }
throw new Exception("Cannot find analyzer " ~ message.checkName throw new Exception("Cannot find analyzer " ~ messageCheckName
~ " to resolve autofix with."); ~ " to resolve autofix with.");
} }

View File

@ -63,7 +63,6 @@ final class StaticIfElse : BaseAnalyzer
override AutoFix.CodeReplacement[] resolveAutoFix( override AutoFix.CodeReplacement[] resolveAutoFix(
const Module mod, const Module mod,
scope const(Token)[] tokens, scope const(Token)[] tokens,
const Message message,
const AutoFix.ResolveContext context, const AutoFix.ResolveContext context,
const AutoFixFormatting formatting, const AutoFixFormatting formatting,
) )