org.gradle.tooling.internal.consumer.connection.InternalBuildActionAdapter 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 2014 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.BuildAction;
import org.gradle.tooling.BuildController;
import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter;
import org.gradle.tooling.internal.consumer.converters.ConsumerTargetTypeProvider;
import org.gradle.tooling.internal.consumer.versioning.ModelMapping;
import org.gradle.tooling.internal.consumer.versioning.VersionDetails;
import org.gradle.tooling.internal.protocol.BuildResult;
import org.gradle.tooling.internal.protocol.InternalBuildAction;
import org.gradle.tooling.internal.protocol.InternalBuildActionVersion2;
import org.gradle.tooling.internal.protocol.InternalBuildController;
import org.gradle.tooling.internal.protocol.InternalBuildControllerVersion2;
import org.gradle.tooling.internal.protocol.ModelIdentifier;
import java.io.File;
/**
* Adapter to create {@link org.gradle.tooling.internal.protocol.InternalBuildAction}
* from an instance of {@link org.gradle.tooling.BuildAction}.
* Used by consumer connections 1.8+.
*/
@SuppressWarnings("deprecation")
public class InternalBuildActionAdapter implements InternalBuildAction, InternalBuildActionVersion2 {
private final BuildAction action;
private final File rootDir;
private final VersionDetails versionDetails;
public InternalBuildActionAdapter(BuildAction action, File rootDir, VersionDetails versionDetails) {
this.action = action;
this.rootDir = rootDir;
this.versionDetails = versionDetails;
}
/**
* This is used by providers 1.8-rc-1 to 4.3
*/
public T execute(final InternalBuildController buildController) {
ProtocolToModelAdapter protocolToModelAdapter = new ProtocolToModelAdapter(new ConsumerTargetTypeProvider());
BuildController buildControllerAdapter = new BuildControllerAdapter(protocolToModelAdapter, new InternalBuildControllerAdapter() {
@Override
public BuildResult> getModel(Object target, ModelIdentifier modelIdentifier, Object parameter) {
return buildController.getModel(target, modelIdentifier);
}
}, new ModelMapping(), rootDir);
buildControllerAdapter = new BuildControllerWithoutParameterSupport(versionDetails, buildControllerAdapter);
return action.execute(buildControllerAdapter);
}
/**
* This is used by providers 4.4 and later
*/
public T execute(final InternalBuildControllerVersion2 buildController) {
ProtocolToModelAdapter protocolToModelAdapter = new ProtocolToModelAdapter(new ConsumerTargetTypeProvider());
BuildController buildControllerAdapter = new BuildControllerAdapter(protocolToModelAdapter, new InternalBuildControllerAdapter() {
@Override
public BuildResult> getModel(Object target, ModelIdentifier modelIdentifier, Object parameter) {
return buildController.getModel(target, modelIdentifier, parameter);
}
}, new ModelMapping(), rootDir);
return action.execute(buildControllerAdapter);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy