
org.gradle.model.internal.inspect.FormattingValidationProblemCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2015 the original author or authors.
*
* 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 org.gradle.model.internal.inspect;
import org.gradle.internal.reflect.MethodDescription;
import org.gradle.model.internal.type.ModelType;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
public class FormattingValidationProblemCollector implements ValidationProblemCollector {
private final String role;
private final ModelType> source;
private final List problems = new ArrayList();
public FormattingValidationProblemCollector(String role, ModelType> source) {
this.role = role;
this.source = source;
}
@Override
public boolean hasProblems() {
return !problems.isEmpty();
}
@Override
public void add(String problem) {
problems.add(problem);
}
@Override
public void add(Field field, String problem) {
if (field.getDeclaringClass().equals(source.getConcreteClass())) {
problems.add("Field " + field.getName() + " is not valid: " + problem);
} else {
problems.add("Field " + ModelType.of(field.getDeclaringClass()).getDisplayName() + '.' + field.getName() + " is not valid: " + problem);
}
}
@Override
public void add(Method method, String role, String problem) {
MethodDescription description = MethodDescription.name(method.getName())
.takes(method.getGenericParameterTypes());
StringBuilder message = new StringBuilder("Method ");
if (method.getDeclaringClass().equals(source.getConcreteClass())) {
message.append(description);
} else {
message.append(ModelType.of(method.getDeclaringClass()).getDisplayName()).append('.').append(description);
}
message.append(" is not a valid");
if (role != null) {
message.append(' ').append(role);
}
message.append(" method: ");
message.append(problem);
problems.add(message.toString());
}
@Override
public void add(Constructor> constructor, String problem) {
String description = MethodDescription.name(ModelType.of(constructor.getDeclaringClass()).getDisplayName())
.takes(constructor.getGenericParameterTypes())
.toString();
problems.add("Constructor " + description + " is not valid: " + problem);
}
public String format() {
StringBuilder errorString = new StringBuilder(String.format("Type %s is not a valid %s:", source.getName(), role));
if (problems.size() == 1 && errorString.length() + problems.get(0).length() < 80) {
errorString.append(' ');
errorString.append(problems.get(0));
} else {
for (String problem : problems) {
errorString.append(String.format("\n- %s", problem));
}
}
return errorString.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy