com.seitenbau.commentanalyzer.CommentAnalyzer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of comment-analyzer-maven-plugin
Show all versions of comment-analyzer-maven-plugin
Plugin for finding code areas by a defined tag in comments.
/*-
* -\-\-
* com.github.seitenbau:comment-analyzer-maven-plugin
* --
* Copyright (C) 2019 SEITENBAU GmbH
* --
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* -/-/-
*/
package com.seitenbau.commentanalyzer;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.io.FilenameUtils;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import com.seitenbau.commentanalyzer.analyzer.AnalyzerBase;
import com.seitenbau.commentanalyzer.model.CommentInfo;
import com.seitenbau.commentanalyzer.util.HtmlGenerator;
import com.seitenbau.commentanalyzer.util.Reflection;
import lombok.Getter;
/**
* Plugin for finding code areas by a defined tag in comments.
* The plugin will generate an overview with related code areas.
*/
@Mojo(name = "check", defaultPhase = LifecyclePhase.GENERATE_RESOURCES)
public final class CommentAnalyzer extends AbstractMojo
{
@Getter
@Parameter(property = "commentanalyzer.checkTag", defaultValue = "DEBT")
private String checkTag;
@Parameter(property = "commentanalyzer.dirToCheck", defaultValue = "./")
private String dirToCheck;
@Parameter(property = "commentanalyzer.htmlResultPath", defaultValue = "generated.html")
private String htmlResultPath;
/**
* Method called by the maven check goal during the "generate resources" lifecycle phase.
*/
@Override
public void execute()
{
Map analyzerMap = new HashMap<>();
Reflection.getAnalyzerClasses().forEach(aClass ->
{
try
{
AnalyzerBase base = (AnalyzerBase) aClass.newInstance();
analyzerMap.put(base.getFileExtension(), base);
}
catch (InstantiationException e)
{
e.printStackTrace();
}
catch (IllegalAccessException e)
{
e.printStackTrace();
}
});
List commentList = new ArrayList<>();
for (File file : getAllJavaFiles(new File(dirToCheck)))
{
try
{
String fileEnding = "." + FilenameUtils.getExtension(file.getName());
List result = analyzerMap.get(fileEnding).scanFile(file, checkTag);
commentList.addAll(result);
}
catch (IOException e)
{
e.printStackTrace();
}
}
try
{
HtmlGenerator.generate(commentList, htmlResultPath, checkTag);
}
catch (IOException e)
{
e.printStackTrace();
}
}
/**
* loops through directory and return all files
*
* @return list with all files
*/
private List getAllJavaFiles(File dir)
{
List list = new ArrayList<>();
Arrays.stream(dir.listFiles()).forEach(file ->
{
if (file.isDirectory())
{
list.addAll(getAllJavaFiles(file));
}
else if (file.isFile())
{
list.add(file);
}
});
return list;
}
}