introduce variable expandedArgs

This commit is contained in:
Axel Ricard 2023-10-10 08:41:17 +02:00 committed by Jan Jurzitza
parent 3bf3f25f9a
commit 69d824f4f7
1 changed files with 24 additions and 21 deletions

View File

@ -199,20 +199,23 @@ else
} }
} }
if (excludePaths.length) auto expandedArgs = () {
{ auto expanded = expandArgs(args);
args = expandArgs(args); if (excludePaths.length)
string[] newArgs = [args[0]];
foreach(arg; args[1 .. $])
{ {
if(!excludePaths.map!(p => arg.isSubpathOf(p)) string[] newArgs = [expanded[0]];
.fold!((a, b) => a || b)) foreach(arg; args[1 .. $])
newArgs ~= arg; {
} if(!excludePaths.map!(p => arg.isSubpathOf(p))
.fold!((a, b) => a || b))
newArgs ~= arg;
}
args = newArgs; return newArgs;
} }
else
return expanded;
}();
if (!errorFormat.length) if (!errorFormat.length)
errorFormat = defaultErrorFormat; errorFormat = defaultErrorFormat;
@ -300,15 +303,15 @@ else
} }
else if (symbolName !is null) else if (symbolName !is null)
{ {
stdout.findDeclarationOf(symbolName, expandArgs(args)); stdout.findDeclarationOf(symbolName, expandedArgs);
} }
else if (ctags) else if (ctags)
{ {
stdout.printCtags(expandArgs(args)); stdout.printCtags(expandedArgs);
} }
else if (etags || etagsAll) else if (etags || etagsAll)
{ {
stdout.printEtags(etagsAll, expandArgs(args)); stdout.printEtags(etagsAll, expandedArgs);
} }
else if (styleCheck || autofix || resolveMessage.length) else if (styleCheck || autofix || resolveMessage.length)
{ {
@ -321,7 +324,7 @@ else
if (autofix) if (autofix)
{ {
return .autofix(expandArgs(args), config, errorFormat, cache, moduleCache, applySingleFixes) ? 1 : 0; return .autofix(expandedArgs, config, errorFormat, cache, moduleCache, applySingleFixes) ? 1 : 0;
} }
else if (resolveMessage.length) else if (resolveMessage.length)
{ {
@ -337,19 +340,19 @@ else
goto case; goto case;
case "": case "":
case "dscanner": case "dscanner":
generateReport(expandArgs(args), config, cache, moduleCache, reportFile); generateReport(expandedArgs, config, cache, moduleCache, reportFile);
break; break;
case "sonarQubeGenericIssueData": case "sonarQubeGenericIssueData":
generateSonarQubeGenericIssueDataReport(expandArgs(args), config, cache, moduleCache, reportFile); generateSonarQubeGenericIssueDataReport(expandedArgs, config, cache, moduleCache, reportFile);
break; break;
} }
} }
else else
return analyze(expandArgs(args), config, errorFormat, cache, moduleCache, true) ? 1 : 0; return analyze(expandedArgs, config, errorFormat, cache, moduleCache, true) ? 1 : 0;
} }
else if (syntaxCheck) else if (syntaxCheck)
{ {
return .syntaxCheck(usingStdin ? ["stdin"] : expandArgs(args), errorFormat, cache, moduleCache) ? 1 : 0; return .syntaxCheck(usingStdin ? ["stdin"] : expandedArgs, errorFormat, cache, moduleCache) ? 1 : 0;
} }
else else
{ {
@ -368,7 +371,7 @@ else
else else
{ {
ulong count; ulong count;
foreach (f; expandArgs(args)) foreach (f; expandedArgs)
{ {
LexerConfig config; LexerConfig config;