blob: 5af8f655af92c10e53deabfbcfd94a61aa970be4 [file] [log] [blame]
brandjon60be5312017-10-04 23:06:41 +02001// Copyright 2017 The Bazel Authors. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package com.google.devtools.build.lib.syntax;
16
17import com.google.auto.value.AutoValue;
laurentlbe5894f02018-10-25 13:02:00 -070018import com.google.common.base.Ascii;
cparsons507b00f2018-09-12 11:59:07 -070019import com.google.common.base.Preconditions;
plf7e41f9b2018-08-03 01:47:22 -070020import com.google.common.collect.ImmutableList;
21import java.util.List;
cparsons507b00f2018-09-12 11:59:07 -070022import java.util.function.Function;
brandjon60be5312017-10-04 23:06:41 +020023
24/**
25 * Options that affect Skylark semantics.
26 *
27 * <p>For descriptions of what these options do, see {@link SkylarkSemanticsOptions}.
28 */
29// TODO(brandjon): User error messages that reference options should maybe be substituted with the
30// option name outside of the core Skylark interpreter?
31// TODO(brandjon): Eventually these should be documented in full here, and SkylarkSemanticsOptions
32// should refer to this class for documentation. But this doesn't play nice with the options
33// parser's annotation mechanism.
34@AutoValue
35public abstract class SkylarkSemantics {
36
cparsons6622e6f2018-10-17 15:00:09 -070037 /**
38 * Enum where each element represents a skylark semantics flag. The name of each value should
39 * be the exact name of the flag transformed to upper case (for error representation).
40 */
cparsons507b00f2018-09-12 11:59:07 -070041 public enum FlagIdentifier {
cparsons645a35e2018-10-01 13:03:23 -070042 EXPERIMENTAL_ANALYSIS_TESTING_IMPROVEMENTS(
43 SkylarkSemantics::experimentalAnalysisTestingImprovements),
Googler91eb3d22018-10-18 00:05:29 -070044 EXPERIMENTAL_ENABLE_ANDROID_MIGRATION_APIS(
45 SkylarkSemantics::experimentalEnableAndroidMigrationApis),
cparsons140c0762018-10-05 14:07:19 -070046 EXPERIMENTAL_PLATFORM_API(SkylarkSemantics::experimentalPlatformsApi),
cparsons507b00f2018-09-12 11:59:07 -070047 INCOMPATIBLE_DISABLE_OBJC_PROVIDER_RESOURCES(
48 SkylarkSemantics::incompatibleDisableObjcProviderResources),
cparsons3cb3a5d2018-10-01 10:36:08 -070049 INCOMPATIBLE_NO_TARGET_OUTPUT_GROUP(
50 SkylarkSemantics::incompatibleNoTargetOutputGroup),
laurentlbd8d37762018-10-26 14:08:33 -070051 INCOMPATIBLE_NO_ATTR_LICENSE(SkylarkSemantics::incompatibleNoAttrLicense),
cparsons507b00f2018-09-12 11:59:07 -070052 NONE(null);
53
54 // Using a Function here makes the enum definitions far cleaner, and, since this is
55 // a private field, and we can ensure no callers treat this field as mutable.
56 @SuppressWarnings("ImmutableEnumChecker")
57 private final Function<SkylarkSemantics, Boolean> semanticsFunction;
58
59 FlagIdentifier(Function<SkylarkSemantics, Boolean> semanticsFunction) {
60 this.semanticsFunction = semanticsFunction;
61 }
cparsons6622e6f2018-10-17 15:00:09 -070062
63 /**
64 * Returns the name of the flag that this identifier controls. For example, EXPERIMENTAL_FOO
65 * would return 'experimental_foo'.
66 */
67 public String getFlagName() {
laurentlbe5894f02018-10-25 13:02:00 -070068 return Ascii.toLowerCase(this.name());
cparsons6622e6f2018-10-17 15:00:09 -070069 }
cparsons507b00f2018-09-12 11:59:07 -070070 }
71
72 /**
73 * Returns true if a feature attached to the given toggling flags should be enabled.
74 *
75 * <ul>
76 * <li>If both parameters are {@code NONE}, this indicates the feature is not
77 * controlled by flags, and should thus be enabled.</li>
78 * <li>If the {@code enablingFlag} parameter is non-{@code NONE}, this returns
79 * true if and only if that flag is true. (This represents a feature that is only on
80 * if a given flag is *on*).</li>
81 * <li>If the {@code disablingFlag} parameter is non-{@code NONE}, this returns
82 * true if and only if that flag is false. (This represents a feature that is only on
83 * if a given flag is *off*).</li>
84 * <li>It is illegal to pass both parameters as non-{@code NONE}.</li>
85 * </ul>
86 */
87 public boolean isFeatureEnabledBasedOnTogglingFlags(
88 FlagIdentifier enablingFlag,
89 FlagIdentifier disablingFlag) {
90 Preconditions.checkArgument(enablingFlag == FlagIdentifier.NONE
91 || disablingFlag == FlagIdentifier.NONE,
92 "at least one of 'enablingFlag' or 'disablingFlag' must be NONE");
93 if (enablingFlag != FlagIdentifier.NONE) {
94 return enablingFlag.semanticsFunction.apply(this);
95 } else {
96 return disablingFlag == FlagIdentifier.NONE || !disablingFlag.semanticsFunction.apply(this);
97 }
98 }
99
brandjon617f8ff2017-10-06 06:07:13 +0200100 /**
101 * The AutoValue-generated concrete class implementing this one.
102 *
103 * <p>AutoValue implementation classes are usually package-private. We expose it here for the
104 * benefit of code that relies on reflection.
105 */
106 public static final Class<? extends SkylarkSemantics> IMPL_CLASS =
107 AutoValue_SkylarkSemantics.class;
108
brandjon60be5312017-10-04 23:06:41 +0200109 // <== Add new options here in alphabetic order ==>
cparsons645a35e2018-10-01 13:03:23 -0700110 public abstract boolean experimentalAnalysisTestingImprovements();
111
plf7e41f9b2018-08-03 01:47:22 -0700112 public abstract List<String> experimentalCcSkylarkApiEnabledPackages();
113
Googlerc2cd9572018-10-02 14:38:15 -0700114 public abstract boolean experimentalEnableAndroidMigrationApis();
115
dannarkf2a358e2018-06-05 11:39:18 -0700116 public abstract boolean experimentalEnableRepoMapping();
117
dannarked598bc2018-08-07 16:31:52 -0700118 public abstract boolean experimentalRemapMainRepo();
119
cparsons140c0762018-10-05 14:07:19 -0700120 public abstract boolean experimentalPlatformsApi();
121
cparsonse0efc142018-10-17 09:39:10 -0700122 public abstract boolean experimentalStarlarkConfigTransitions();
123
brandjon60be5312017-10-04 23:06:41 +0200124 public abstract boolean incompatibleBzlDisallowLoadAfterStatement();
laurentlb1cbce0f2018-03-27 12:43:22 -0700125
brandjon60be5312017-10-04 23:06:41 +0200126 public abstract boolean incompatibleDepsetIsNotIterable();
laurentlb1cbce0f2018-03-27 12:43:22 -0700127
laurentlb2bbda4a2017-12-07 10:38:46 -0800128 public abstract boolean incompatibleDepsetUnion();
laurentlb1cbce0f2018-03-27 12:43:22 -0700129
cparsonse5068582018-07-16 13:33:33 -0700130 public abstract boolean incompatibleDisableDeprecatedAttrParams();
131
cparsons99be8b42018-03-01 15:16:46 -0800132 public abstract boolean incompatibleDisableObjcProviderResources();
laurentlb1cbce0f2018-03-27 12:43:22 -0700133
cparsons5a6fc8d2018-08-15 14:36:43 -0700134 public abstract boolean incompatibleDisallowConflictingProviders();
135
gregcebceecab2018-06-27 17:44:45 -0700136 public abstract boolean incompatibleDisallowDataTransition();
137
brandjon60be5312017-10-04 23:06:41 +0200138 public abstract boolean incompatibleDisallowDictPlus();
laurentlb1cbce0f2018-03-27 12:43:22 -0700139
laurentlb707acfe2018-04-13 06:09:30 -0700140 public abstract boolean incompatibleDisallowFileType();
141
tomlue3749702018-05-02 09:38:00 -0700142 public abstract boolean incompatibleDisallowLegacyJavaInfo();
143
nharmatad86b5092018-10-16 15:50:21 -0700144 public abstract boolean incompatibleDisallowLoadLabelsToCrossPackageBoundaries();
145
tomlubeafd7e2018-04-05 15:03:19 -0700146 public abstract boolean incompatibleDisallowOldStyleArgsAdd();
147
laurentlbc381cf12018-04-11 04:12:14 -0700148 public abstract boolean incompatibleDisallowSlashOperator();
149
tomlu774bfe02018-08-24 14:15:44 -0700150 public abstract boolean incompatibleExpandDirectories();
151
elenairina1458c612018-06-29 08:10:12 -0700152 public abstract boolean incompatibleGenerateJavaCommonSourceJar();
153
brandjon60be5312017-10-04 23:06:41 +0200154 public abstract boolean incompatibleNewActionsApi();
laurentlb1cbce0f2018-03-27 12:43:22 -0700155
laurentlbd8d37762018-10-26 14:08:33 -0700156 public abstract boolean incompatibleNoAttrLicense();
157
cparsonsfbc828b2018-10-04 14:38:50 -0700158 public abstract boolean incompatibleNoOutputAttrDefault();
159
tomluaaf11e92018-06-02 10:20:16 -0700160 public abstract boolean incompatibleNoSupportToolsInActionInputs();
161
cparsons3cb3a5d2018-10-01 10:36:08 -0700162 public abstract boolean incompatibleNoTargetOutputGroup();
163
laurentlb9d179e12018-09-27 08:15:42 -0700164 public abstract boolean incompatibleNoTransitiveLoads();
165
laurentlb1cbce0f2018-03-27 12:43:22 -0700166 public abstract boolean incompatiblePackageNameIsAFunction();
167
Taras Tsugrii9de215d2018-07-17 08:56:13 -0700168 public abstract boolean incompatibleRangeType();
169
Klaus Aehligddd1c9a2018-03-01 05:54:39 -0800170 public abstract boolean incompatibleRemoveNativeGitRepository();
laurentlb1cbce0f2018-03-27 12:43:22 -0700171
Klaus Aehliga7b34a12018-02-20 09:31:37 -0800172 public abstract boolean incompatibleRemoveNativeHttpArchive();
laurentlb1cbce0f2018-03-27 12:43:22 -0700173
laurentlb09ec2612018-08-27 12:35:56 -0700174 public abstract boolean incompatibleStaticNameResolution();
175
brandjon60be5312017-10-04 23:06:41 +0200176 public abstract boolean incompatibleStringIsNotIterable();
laurentlb1cbce0f2018-03-27 12:43:22 -0700177
brandjon60be5312017-10-04 23:06:41 +0200178 public abstract boolean internalSkylarkFlagTestCanary();
179
brandjon6ac92f92017-12-06 13:57:15 -0800180 /** Returns a {@link Builder} initialized with the values of this instance. */
181 public abstract Builder toBuilder();
182
brandjon60be5312017-10-04 23:06:41 +0200183 public static Builder builder() {
184 return new AutoValue_SkylarkSemantics.Builder();
185 }
186
brandjon6ac92f92017-12-06 13:57:15 -0800187 /** Returns a {@link Builder} initialized with default values for all options. */
188 public static Builder builderWithDefaults() {
189 return DEFAULT_SEMANTICS.toBuilder();
190 }
191
vladmos1df46352017-11-30 03:02:36 -0800192 public static final SkylarkSemantics DEFAULT_SEMANTICS =
193 builder()
194 // <== Add new options here in alphabetic order ==>
cparsons645a35e2018-10-01 13:03:23 -0700195 .experimentalAnalysisTestingImprovements(false)
plf7e41f9b2018-08-03 01:47:22 -0700196 .experimentalCcSkylarkApiEnabledPackages(ImmutableList.of())
Googlerc2cd9572018-10-02 14:38:15 -0700197 .experimentalEnableAndroidMigrationApis(false)
dannarkf2a358e2018-06-05 11:39:18 -0700198 .experimentalEnableRepoMapping(false)
dannarked598bc2018-08-07 16:31:52 -0700199 .experimentalRemapMainRepo(false)
cparsons140c0762018-10-05 14:07:19 -0700200 .experimentalPlatformsApi(false)
cparsonse0efc142018-10-17 09:39:10 -0700201 .experimentalStarlarkConfigTransitions(false)
vladmos1df46352017-11-30 03:02:36 -0800202 .incompatibleBzlDisallowLoadAfterStatement(false)
vladmos1df46352017-11-30 03:02:36 -0800203 .incompatibleDepsetIsNotIterable(false)
laurentlb2bbda4a2017-12-07 10:38:46 -0800204 .incompatibleDepsetUnion(false)
cparsonse5068582018-07-16 13:33:33 -0700205 .incompatibleDisableDeprecatedAttrParams(false)
cparsons99be8b42018-03-01 15:16:46 -0800206 .incompatibleDisableObjcProviderResources(false)
cparsons5a6fc8d2018-08-15 14:36:43 -0700207 .incompatibleDisallowConflictingProviders(false)
gregcebceecab2018-06-27 17:44:45 -0700208 .incompatibleDisallowDataTransition(false)
vladmos1df46352017-11-30 03:02:36 -0800209 .incompatibleDisallowDictPlus(false)
laurentlb707acfe2018-04-13 06:09:30 -0700210 .incompatibleDisallowFileType(false)
tomlue3749702018-05-02 09:38:00 -0700211 .incompatibleDisallowLegacyJavaInfo(false)
nharmatad86b5092018-10-16 15:50:21 -0700212 .incompatibleDisallowLoadLabelsToCrossPackageBoundaries(false)
tomlubeafd7e2018-04-05 15:03:19 -0700213 .incompatibleDisallowOldStyleArgsAdd(false)
laurentlbc381cf12018-04-11 04:12:14 -0700214 .incompatibleDisallowSlashOperator(false)
tomlu774bfe02018-08-24 14:15:44 -0700215 .incompatibleExpandDirectories(false)
elenairina1458c612018-06-29 08:10:12 -0700216 .incompatibleGenerateJavaCommonSourceJar(false)
vladmos1df46352017-11-30 03:02:36 -0800217 .incompatibleNewActionsApi(false)
laurentlbd8d37762018-10-26 14:08:33 -0700218 .incompatibleNoAttrLicense(false)
cparsonsfbc828b2018-10-04 14:38:50 -0700219 .incompatibleNoOutputAttrDefault(false)
tomluaaf11e92018-06-02 10:20:16 -0700220 .incompatibleNoSupportToolsInActionInputs(false)
cparsons3cb3a5d2018-10-01 10:36:08 -0700221 .incompatibleNoTargetOutputGroup(false)
laurentlb9d179e12018-09-27 08:15:42 -0700222 .incompatibleNoTransitiveLoads(false)
laurentlb0211ef82018-09-10 11:04:57 -0700223 .incompatiblePackageNameIsAFunction(false)
Taras Tsugrii9de215d2018-07-17 08:56:13 -0700224 .incompatibleRangeType(false)
Klaus Aehliga55714c2018-10-23 02:16:02 -0700225 .incompatibleRemoveNativeGitRepository(true)
226 .incompatibleRemoveNativeHttpArchive(true)
laurentlb09ec2612018-08-27 12:35:56 -0700227 .incompatibleStaticNameResolution(false)
Klaus Aehliga7b34a12018-02-20 09:31:37 -0800228 .incompatibleStringIsNotIterable(false)
229 .internalSkylarkFlagTestCanary(false)
230 .build();
brandjon60be5312017-10-04 23:06:41 +0200231
232 /** Builder for {@link SkylarkSemantics}. All fields are mandatory. */
233 @AutoValue.Builder
234 public abstract static class Builder {
235
236 // <== Add new options here in alphabetic order ==>
cparsons645a35e2018-10-01 13:03:23 -0700237 public abstract Builder experimentalAnalysisTestingImprovements(boolean value);
238
plf7e41f9b2018-08-03 01:47:22 -0700239 public abstract Builder experimentalCcSkylarkApiEnabledPackages(List<String> value);
240
Googlerc2cd9572018-10-02 14:38:15 -0700241 public abstract Builder experimentalEnableAndroidMigrationApis(boolean value);
242
dannarkf2a358e2018-06-05 11:39:18 -0700243 public abstract Builder experimentalEnableRepoMapping(boolean value);
244
dannarked598bc2018-08-07 16:31:52 -0700245 public abstract Builder experimentalRemapMainRepo(boolean value);
246
cparsons140c0762018-10-05 14:07:19 -0700247 public abstract Builder experimentalPlatformsApi(boolean value);
248
cparsonse0efc142018-10-17 09:39:10 -0700249 public abstract Builder experimentalStarlarkConfigTransitions(boolean value);
250
brandjon60be5312017-10-04 23:06:41 +0200251 public abstract Builder incompatibleBzlDisallowLoadAfterStatement(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700252
brandjon60be5312017-10-04 23:06:41 +0200253 public abstract Builder incompatibleDepsetIsNotIterable(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700254
laurentlb2bbda4a2017-12-07 10:38:46 -0800255 public abstract Builder incompatibleDepsetUnion(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700256
cparsonse5068582018-07-16 13:33:33 -0700257 public abstract Builder incompatibleDisableDeprecatedAttrParams(boolean value);
258
cparsons99be8b42018-03-01 15:16:46 -0800259 public abstract Builder incompatibleDisableObjcProviderResources(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700260
cparsons5a6fc8d2018-08-15 14:36:43 -0700261 public abstract Builder incompatibleDisallowConflictingProviders(boolean value);
262
gregcebceecab2018-06-27 17:44:45 -0700263 public abstract Builder incompatibleDisallowDataTransition(boolean value);
264
brandjon60be5312017-10-04 23:06:41 +0200265 public abstract Builder incompatibleDisallowDictPlus(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700266
laurentlb707acfe2018-04-13 06:09:30 -0700267 public abstract Builder incompatibleDisallowFileType(boolean value);
268
tomlue3749702018-05-02 09:38:00 -0700269 public abstract Builder incompatibleDisallowLegacyJavaInfo(boolean value);
270
nharmatad86b5092018-10-16 15:50:21 -0700271 public abstract Builder incompatibleDisallowLoadLabelsToCrossPackageBoundaries(boolean value);
272
tomlubeafd7e2018-04-05 15:03:19 -0700273 public abstract Builder incompatibleDisallowOldStyleArgsAdd(boolean value);
274
laurentlbc381cf12018-04-11 04:12:14 -0700275 public abstract Builder incompatibleDisallowSlashOperator(boolean value);
276
tomlu774bfe02018-08-24 14:15:44 -0700277 public abstract Builder incompatibleExpandDirectories(boolean value);
278
elenairina1458c612018-06-29 08:10:12 -0700279 public abstract Builder incompatibleGenerateJavaCommonSourceJar(boolean value);
280
brandjon60be5312017-10-04 23:06:41 +0200281 public abstract Builder incompatibleNewActionsApi(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700282
laurentlbd8d37762018-10-26 14:08:33 -0700283 public abstract Builder incompatibleNoAttrLicense(boolean value);
284
cparsonsfbc828b2018-10-04 14:38:50 -0700285 public abstract Builder incompatibleNoOutputAttrDefault(boolean value);
286
tomluaaf11e92018-06-02 10:20:16 -0700287 public abstract Builder incompatibleNoSupportToolsInActionInputs(boolean value);
288
cparsons3cb3a5d2018-10-01 10:36:08 -0700289 public abstract Builder incompatibleNoTargetOutputGroup(boolean value);
290
laurentlb9d179e12018-09-27 08:15:42 -0700291 public abstract Builder incompatibleNoTransitiveLoads(boolean value);
292
laurentlb1cbce0f2018-03-27 12:43:22 -0700293 public abstract Builder incompatiblePackageNameIsAFunction(boolean value);
294
Taras Tsugrii9de215d2018-07-17 08:56:13 -0700295 public abstract Builder incompatibleRangeType(boolean value);
296
Klaus Aehligddd1c9a2018-03-01 05:54:39 -0800297 public abstract Builder incompatibleRemoveNativeGitRepository(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700298
Klaus Aehliga7b34a12018-02-20 09:31:37 -0800299 public abstract Builder incompatibleRemoveNativeHttpArchive(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700300
laurentlb09ec2612018-08-27 12:35:56 -0700301 public abstract Builder incompatibleStaticNameResolution(boolean value);
302
brandjon60be5312017-10-04 23:06:41 +0200303 public abstract Builder incompatibleStringIsNotIterable(boolean value);
laurentlb1cbce0f2018-03-27 12:43:22 -0700304
brandjon60be5312017-10-04 23:06:41 +0200305 public abstract Builder internalSkylarkFlagTestCanary(boolean value);
306
brandjon60be5312017-10-04 23:06:41 +0200307 public abstract SkylarkSemantics build();
308 }
309}