guru.nidi.codeassert.detekt.DetektCollector Maven / Gradle / Ivy
/*
* Copyright © 2015 Stefan Niederhauser ([email protected])
*
* 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 guru.nidi.codeassert.detekt;
import guru.nidi.codeassert.config.*;
import java.io.File;
import java.util.List;
import static guru.nidi.codeassert.config.Language.KOTLIN;
import static guru.nidi.codeassert.util.ListUtils.andJoin;
public class DetektCollector extends BaseCollector {
@Override
public DetektCollector config(final CollectorConfig... configs) {
return new DetektCollector() {
@Override
public ActionResult accept(TypedDetektFinding issue) {
return accept(issue, DetektCollector.this, configs);
}
public List unused(UsageCounter counter) {
return unused(counter, DetektCollector.this, configs);
}
@Override
public String toString() {
return andJoin(DetektCollector.this, configs);
}
};
}
@Override
public ActionResult accept(TypedDetektFinding issue) {
return ActionResult.accept(null, 1);
}
@Override
protected ActionResult doAccept(TypedDetektFinding issue, Ignore action) {
final File file = new File(issue.basedir, issue.entity.getLocation().getFile());
final String className = guessClassFromFile(file.getAbsolutePath(), KOTLIN);
return action.accept(new NamedLocation(issue.name, KOTLIN, className, null, true));
}
@Override
public List unused(UsageCounter counter) {
return unusedNullAction(counter, false);
}
@Override
public String toString() {
return "";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy