blob: a7c9a60aa96eddd331cb919ad997e87b5c3748a4 [file] [log] [blame]
// Copyright 2016 The Bazel Authors. All rights reserved.
//
// 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 com.google.devtools.build.lib.rules.objc;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import com.google.devtools.build.lib.actions.Artifact;
import com.google.devtools.build.lib.actions.MutableActionGraph.ActionConflictException;
import com.google.devtools.build.lib.analysis.RuleContext;
import com.google.devtools.build.lib.analysis.platform.ConstraintValueInfo;
import com.google.devtools.build.lib.analysis.starlark.StarlarkRuleContext;
import com.google.devtools.build.lib.collect.nestedset.Depset;
import com.google.devtools.build.lib.collect.nestedset.NestedSet;
import com.google.devtools.build.lib.packages.NativeProvider;
import com.google.devtools.build.lib.packages.Provider;
import com.google.devtools.build.lib.packages.RuleClass.ConfiguredTargetFactory.RuleErrorException;
import com.google.devtools.build.lib.packages.StarlarkAspect;
import com.google.devtools.build.lib.packages.StarlarkInfo;
import com.google.devtools.build.lib.packages.StructImpl;
import com.google.devtools.build.lib.rules.apple.AppleConfiguration;
import com.google.devtools.build.lib.rules.apple.ApplePlatform;
import com.google.devtools.build.lib.rules.apple.ApplePlatform.PlatformType;
import com.google.devtools.build.lib.rules.apple.AppleToolchain;
import com.google.devtools.build.lib.rules.apple.DottedVersion;
import com.google.devtools.build.lib.rules.apple.XcodeConfigInfo;
import com.google.devtools.build.lib.rules.apple.XcodeVersionProperties;
import com.google.devtools.build.lib.rules.objc.AppleBinary.AppleBinaryOutput;
import com.google.devtools.build.lib.rules.objc.ObjcProvider.Key;
import com.google.devtools.build.lib.starlarkbuildapi.SplitTransitionProviderApi;
import com.google.devtools.build.lib.starlarkbuildapi.apple.AppleCommonApi;
import com.google.devtools.build.lib.syntax.Dict;
import com.google.devtools.build.lib.syntax.EvalException;
import com.google.devtools.build.lib.syntax.Location;
import com.google.devtools.build.lib.syntax.Sequence;
import com.google.devtools.build.lib.syntax.Starlark;
import com.google.devtools.build.lib.syntax.StarlarkSemantics;
import com.google.devtools.build.lib.syntax.StarlarkThread;
import com.google.devtools.build.lib.syntax.StarlarkValue;
import java.util.Map;
import javax.annotation.Nullable;
/** A class that exposes apple rule implementation internals to Starlark. */
public class AppleStarlarkCommon
implements AppleCommonApi<
Artifact,
ConstraintValueInfo,
StarlarkRuleContext,
ObjcProvider,
XcodeConfigInfo,
ApplePlatform> {
@VisibleForTesting
public static final String DEPRECATED_KEY_ERROR =
"Key '%s' no longer supported in ObjcProvider (use CcInfo instead).";
@VisibleForTesting
public static final String BAD_DIRECT_DEP_PROVIDERS_ERROR =
"Argument 'direct_dep_providers' no longer supported. Please use 'strict_include' field "
+ "in ObjcProvider.";
@VisibleForTesting
public static final String BAD_KEY_ERROR =
"Argument %s not a recognized key,"
+ " 'strict_include', 'providers', or 'direct_dep_providers'.";
@VisibleForTesting
public static final String BAD_FRAMEWORK_PATH_ERROR =
"Value for key framework_search_paths must end in .framework; instead found %s.";
@VisibleForTesting
public static final String BAD_PROVIDERS_ITER_ERROR =
"Value for argument 'providers' must be a list of ObjcProvider instances, instead found %s.";
@VisibleForTesting
public static final String BAD_PROVIDERS_ELEM_ERROR =
"Value for argument 'providers' must be a list of ObjcProvider instances, instead found "
+ "iterable with %s.";
@VisibleForTesting
public static final String BAD_DIRECT_DEPENDENCY_KEY_ERROR =
"Key %s not allowed to be in direct_dep_provider.";
@VisibleForTesting
public static final String NOT_SET_ERROR = "Value for key %s must be a set, instead found %s.";
@VisibleForTesting
public static final String MISSING_KEY_ERROR = "No value for required key %s was present.";
@Nullable private StructImpl platformType;
@Nullable private StructImpl platform;
private ObjcProtoAspect objcProtoAspect;
public AppleStarlarkCommon(ObjcProtoAspect objcProtoAspect) {
this.objcProtoAspect = objcProtoAspect;
}
@Override
public AppleToolchain getAppleToolchain() {
return new AppleToolchain();
}
@Override
public StructImpl getPlatformTypeStruct() {
if (platformType == null) {
platformType = PlatformType.getStarlarkStruct();
}
return platformType;
}
@Override
public StructImpl getPlatformStruct() {
if (platform == null) {
platform = ApplePlatform.getStarlarkStruct();
}
return platform;
}
@Override
public Provider getXcodeVersionPropertiesConstructor() {
return XcodeVersionProperties.STARLARK_CONSTRUCTOR;
}
@Override
public Provider getXcodeVersionConfigConstructor() {
return XcodeConfigInfo.PROVIDER;
}
@Override
public Provider getObjcProviderConstructor() {
return ObjcProvider.STARLARK_CONSTRUCTOR;
}
@Override
public Provider getAppleDynamicFrameworkConstructor() {
return AppleDynamicFrameworkInfo.STARLARK_CONSTRUCTOR;
}
@Override
public Provider getAppleDylibBinaryConstructor() {
return AppleDylibBinaryInfo.STARLARK_CONSTRUCTOR;
}
@Override
public Provider getAppleExecutableBinaryConstructor() {
return AppleExecutableBinaryInfo.STARLARK_CONSTRUCTOR;
}
@Override
public AppleStaticLibraryInfo.Provider getAppleStaticLibraryProvider() {
return AppleStaticLibraryInfo.STARLARK_CONSTRUCTOR;
}
@Override
public Provider getAppleDebugOutputsConstructor() {
return AppleDebugOutputsInfo.STARLARK_CONSTRUCTOR;
}
@Override
public Provider getAppleLoadableBundleBinaryConstructor() {
return AppleLoadableBundleBinaryInfo.STARLARK_CONSTRUCTOR;
}
@Override
public ImmutableMap<String, String> getAppleHostSystemEnv(XcodeConfigInfo xcodeConfig) {
return AppleConfiguration.getXcodeVersionEnv(xcodeConfig.getXcodeVersion());
}
@Override
public ImmutableMap<String, String> getTargetAppleEnvironment(
XcodeConfigInfo xcodeConfigApi, ApplePlatform platformApi) {
XcodeConfigInfo xcodeConfig = xcodeConfigApi;
ApplePlatform platform = (ApplePlatform) platformApi;
return AppleConfiguration.appleTargetPlatformEnv(
platform, xcodeConfig.getSdkVersionForPlatform(platform));
}
@Override
public SplitTransitionProviderApi getMultiArchSplitProvider() {
return new MultiArchSplitTransitionProvider();
}
@Override
// This method is registered statically for Starlark, and never called directly.
public ObjcProvider newObjcProvider(Boolean usesSwift, Dict<?, ?> kwargs, StarlarkThread thread)
throws EvalException {
StarlarkSemantics semantics = thread.getSemantics();
ObjcProvider.StarlarkBuilder resultBuilder = new ObjcProvider.StarlarkBuilder(semantics);
if (usesSwift) {
resultBuilder.add(ObjcProvider.FLAG, ObjcProvider.Flag.USES_SWIFT);
}
for (Map.Entry<?, ?> entry : kwargs.entrySet()) {
Key<?> key = ObjcProvider.getStarlarkKeyForString((String) entry.getKey());
if (key != null) {
resultBuilder.addElementsFromStarlark(key, entry.getValue());
} else if (entry.getKey().equals("strict_include")) {
resultBuilder.addStrictIncludeFromStarlark(entry.getValue());
} else if (entry.getKey().equals("providers")) {
resultBuilder.addProvidersFromStarlark(entry.getValue());
} else if (entry.getKey().equals("direct_dep_providers")) {
if (semantics.incompatibleObjcProviderRemoveCompileInfo()) {
throw new EvalException(BAD_DIRECT_DEP_PROVIDERS_ERROR);
}
resultBuilder.addDirectDepProvidersFromStarlark(entry.getValue());
} else {
throw Starlark.errorf(BAD_KEY_ERROR, entry.getKey());
}
}
return resultBuilder.build();
}
@Override
public AppleDynamicFrameworkInfo newDynamicFrameworkProvider(
Object dylibBinary,
ObjcProvider depsObjcProvider,
Object dynamicFrameworkDirs,
Object dynamicFrameworkFiles)
throws EvalException {
NestedSet<String> frameworkDirs =
Depset.noneableCast(dynamicFrameworkDirs, String.class, "framework_dirs");
NestedSet<Artifact> frameworkFiles =
Depset.noneableCast(dynamicFrameworkFiles, Artifact.class, "framework_files");
Artifact binary = (dylibBinary != Starlark.NONE) ? (Artifact) dylibBinary : null;
return new AppleDynamicFrameworkInfo(
binary, depsObjcProvider, frameworkDirs, frameworkFiles);
}
@Override
public StructImpl linkMultiArchBinary(
StarlarkRuleContext starlarkRuleContext,
Sequence<?> extraLinkopts,
Sequence<?> extraLinkInputs,
StarlarkThread thread)
throws EvalException, InterruptedException {
try {
RuleContext ruleContext = starlarkRuleContext.getRuleContext();
AppleBinaryOutput appleBinaryOutput =
AppleBinary.linkMultiArchBinary(
ruleContext,
ImmutableList.copyOf(Sequence.cast(extraLinkopts, String.class, "extra_linkopts")),
Sequence.cast(extraLinkInputs, Artifact.class, "extra_link_inputs"));
return createAppleBinaryOutputStarlarkStruct(appleBinaryOutput, thread);
} catch (RuleErrorException | ActionConflictException exception) {
throw new EvalException(exception);
}
}
@Override
public DottedVersion dottedVersion(String version) throws EvalException {
try {
return DottedVersion.fromString(version);
} catch (DottedVersion.InvalidDottedVersionException e) {
throw new EvalException(e.getMessage());
}
}
@Override
public StarlarkAspect getObjcProtoAspect() {
return objcProtoAspect;
}
/**
* Creates a Starlark struct that contains the results of the {@code link_multi_arch_binary}
* function.
*/
private StructImpl createAppleBinaryOutputStarlarkStruct(
AppleBinaryOutput output, StarlarkThread thread) {
Provider constructor =
new NativeProvider<StructImpl>(StructImpl.class, "apple_binary_output") {};
// We have to transform the output group dictionary into one that contains StarlarkValues
// instead
// of plain NestedSets because the Starlark caller may want to return this directly from their
// implementation function.
Map<String, StarlarkValue> outputGroups =
Maps.transformValues(output.getOutputGroups(), v -> Depset.of(Artifact.TYPE, v));
ImmutableMap<String, Object> fields =
ImmutableMap.of(
"binary_provider", output.getBinaryInfoProvider(),
"debug_outputs_provider", output.getDebugOutputsProvider(),
"output_groups", Dict.copyOf(thread.mutability(), outputGroups));
return StarlarkInfo.create(constructor, fields, Location.BUILTIN);
}
}