org.gradle.tooling.internal.consumer.connection.BuildControllerAdapter 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 2013 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.tooling.internal.consumer.connection;
import org.gradle.tooling.BuildController;
import org.gradle.tooling.UnknownModelException;
import org.gradle.tooling.internal.adapter.ObjectGraphAdapter;
import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter;
import org.gradle.tooling.internal.connection.DefaultProjectIdentifier;
import org.gradle.tooling.internal.consumer.converters.FixedBuildIdentifierProvider;
import org.gradle.tooling.internal.consumer.versioning.ModelMapping;
import org.gradle.tooling.internal.protocol.BuildResult;
import org.gradle.tooling.internal.protocol.InternalBuildController;
import org.gradle.tooling.internal.protocol.InternalUnsupportedModelException;
import org.gradle.tooling.internal.protocol.ModelIdentifier;
import org.gradle.tooling.model.GradleProject;
import org.gradle.tooling.model.HasGradleProject;
import org.gradle.tooling.model.Model;
import org.gradle.tooling.model.gradle.BasicGradleProject;
import org.gradle.tooling.model.gradle.GradleBuild;
import org.gradle.tooling.model.internal.Exceptions;
import java.io.File;
class BuildControllerAdapter implements BuildController {
private final InternalBuildController buildController;
private final ProtocolToModelAdapter adapter;
private final ObjectGraphAdapter resultAdapter;
private final ModelMapping modelMapping;
private final File rootDir;
public BuildControllerAdapter(ProtocolToModelAdapter adapter, InternalBuildController buildController, ModelMapping modelMapping, File rootDir) {
this.adapter = adapter;
this.buildController = buildController;
this.modelMapping = modelMapping;
this.rootDir = rootDir;
// Treat all models returned to the action as part of the same object graph
resultAdapter = adapter.newGraph();
}
public T getModel(Class modelType) throws UnknownModelException {
return getModel(null, modelType);
}
public T findModel(Class modelType) {
try {
return getModel(modelType);
} catch (UnknownModelException e) {
// Ignore
return null;
}
}
public GradleBuild getBuildModel() {
return getModel(null, GradleBuild.class);
}
public T findModel(Model target, Class modelType) {
try {
return getModel(target, modelType);
} catch (UnknownModelException e) {
// Ignore
return null;
}
}
public T getModel(Model target, Class modelType) throws UnknownModelException {
ModelIdentifier modelIdentifier = modelMapping.getModelIdentifierFromModelType(modelType);
Object originalTarget = target == null ? null : adapter.unpack(target);
BuildResult> result;
try {
result = buildController.getModel(originalTarget, modelIdentifier);
} catch (InternalUnsupportedModelException e) {
throw Exceptions.unknownModel(modelType, e);
}
if (rootDir != null) {
FixedBuildIdentifierProvider identifierProvider = new FixedBuildIdentifierProvider(new DefaultProjectIdentifier(rootDir, getProjectPath(target)));
return identifierProvider.applyTo(resultAdapter.builder(modelType)).build(result.getModel());
}
return resultAdapter.adapt(modelType, result.getModel());
}
private String getProjectPath(Model target) {
if (target instanceof GradleProject) {
return ((GradleProject) target).getPath();
}
if (target instanceof BasicGradleProject) {
return ((BasicGradleProject) target).getPath();
}
if (target instanceof HasGradleProject) {
return ((HasGradleProject) target).getGradleProject().getPath();
}
return ":";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy