org.gradle.api.tasks.diagnostics.PropertyReportTask 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 2008 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.api.tasks.diagnostics;
import org.gradle.api.Incubating;
import org.gradle.api.Project;
import org.gradle.api.provider.Property;
import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.Internal;
import org.gradle.api.tasks.Optional;
import org.gradle.api.tasks.diagnostics.internal.ProjectDetails;
import org.gradle.api.tasks.diagnostics.internal.PropertyReportRenderer;
import org.gradle.api.tasks.diagnostics.internal.ReportRenderer;
import org.gradle.api.tasks.options.Option;
import org.gradle.internal.Pair;
import org.gradle.internal.instrumentation.api.annotations.ToBeReplacedByLazyProperty;
import org.gradle.work.DisableCachingByDefault;
import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
/**
* Displays the properties of a project. An instance of this type is used when you execute the {@code properties} task
* from the command-line.
*/
@DisableCachingByDefault(because = "Not worth caching")
public abstract class PropertyReportTask extends AbstractProjectBasedReportTask {
private PropertyReportRenderer renderer = new PropertyReportRenderer();
private final Property property = getProject().getObjects().property(String.class);
/**
* Defines a specific property to report. If not set then all properties will appear in the report.
*
* @since 7.5
*/
@Incubating
@Input
@Optional
@Option(option = "property", description = "A specific property to output")
public Property getProperty() {
return property;
}
@Internal
@Override
@ToBeReplacedByLazyProperty
public ReportRenderer getRenderer() {
return renderer;
}
public void setRenderer(PropertyReportRenderer renderer) {
this.renderer = renderer;
}
@Override
protected PropertyReportModel calculateReportModelFor(Project project) {
return computePropertyReportModel(project);
}
private PropertyReportTask.PropertyReportModel computePropertyReportModel(Project project) {
PropertyReportModel model = new PropertyReportModel();
Map projectProperties = project.getProperties();
if (property.isPresent()) {
String propertyName = property.get();
if ("properties".equals(propertyName)) {
model.putProperty(propertyName, "{...}");
} else {
model.putProperty(propertyName, projectProperties.get(propertyName));
}
} else {
for (Map.Entry entry : new TreeMap<>(projectProperties).entrySet()) {
if ("properties".equals(entry.getKey())) {
model.putProperty(entry.getKey(), "{...}");
} else {
model.putProperty(entry.getKey(), entry.getValue());
}
}
}
return model;
}
@Override
protected void generateReportFor(ProjectDetails project, PropertyReportModel model) {
for (PropertyWarning warning : model.warnings) {
getLogger().warn(
"Rendering of the property '{}' with value type '{}' failed with exception",
warning.name, warning.valueClass, warning.exception
);
}
for (Pair entry : model.properties) {
renderer.addProperty(entry.getLeft(), entry.getRight());
}
}
/**
* Model for the report.
*
* @since 7.6
*/
@Incubating
public static final class PropertyReportModel {
private PropertyReportModel() {
}
private final List warnings = new ArrayList<>();
private final List> properties = new ArrayList<>();
private void putProperty(String name, @Nullable Object value) {
String strValue;
try {
strValue = String.valueOf(value);
} catch (Exception e) {
String valueClass = value != null ? String.valueOf(value.getClass()) : "null";
warnings.add(new PropertyWarning(name, valueClass, e));
strValue = valueClass + " [Rendering failed]";
}
properties.add(Pair.of(name, strValue));
}
}
private static class PropertyWarning {
private final String name;
private final String valueClass;
private final Exception exception;
private PropertyWarning(String name, String valueClass, Exception exception) {
this.name = name;
this.valueClass = valueClass;
this.exception = exception;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy