1 /* 2 * Copyright (c) 2002, 2024, Oracle and/or its affiliates. All rights reserved. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * This code is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. Oracle designates this 8 * particular file as subject to the "Classpath" exception as provided 9 * by Oracle in the LICENSE file that accompanied this code. 10 * 11 * This code is distributed in the hope that it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 * version 2 for more details (a copy is included in the LICENSE file that 15 * accompanied this code). 16 * 17 * You should have received a copy of the GNU General Public License version 18 * 2 along with this work; if not, write to the Free Software Foundation, 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 * 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 */ 25 26 package com.sun.tools.javac.code; 27 28 import java.util.*; 29 30 import javax.lang.model.SourceVersion; 31 import static javax.lang.model.SourceVersion.*; 32 33 import com.sun.tools.javac.jvm.Target; 34 import com.sun.tools.javac.resources.CompilerProperties.Errors; 35 import com.sun.tools.javac.resources.CompilerProperties.Fragments; 36 import com.sun.tools.javac.util.*; 37 import com.sun.tools.javac.util.JCDiagnostic.Error; 38 import com.sun.tools.javac.util.JCDiagnostic.Fragment; 39 40 import static com.sun.tools.javac.main.Option.*; 41 42 /** The source language version accepted. 43 * 44 * <p><b>This is NOT part of any supported API. 45 * If you write code that depends on this, you do so at your own risk. 46 * This code and its internal interfaces are subject to change or 47 * deletion without notice.</b> 48 */ 49 public enum Source { 50 /* 1.0 had no inner classes, and so could not pass the JCK. */ 51 // public static final Source JDK1_0 = new Source("1.0"); 52 53 /* 1.1 did not have strictfp, and so could not pass the JCK. */ 54 // public static final Source JDK1_1 = new Source("1.1"); 55 56 /** 1.2 introduced strictfp. */ 57 JDK1_2("1.2"), 58 59 /** 1.3 is the same language as 1.2. */ 60 JDK1_3("1.3"), 61 62 /** 1.4 introduced assert. */ 63 JDK1_4("1.4"), 64 65 /** 1.5 introduced generics, attributes, foreach, boxing, static import, 66 * covariant return, enums, varargs, et al. */ 67 JDK5("5"), 68 69 /** 1.6 reports encoding problems as errors instead of warnings. */ 70 JDK6("6"), 71 72 /** 1.7 introduced try-with-resources, multi-catch, string switch, etc. */ 73 JDK7("7"), 74 75 /** 1.8 lambda expressions and default methods. */ 76 JDK8("8"), 77 78 /** 1.9 modularity. */ 79 JDK9("9"), 80 81 /** 1.10 local-variable type inference (var). */ 82 JDK10("10"), 83 84 /** 1.11 local-variable syntax for lambda parameters */ 85 JDK11("11"), 86 87 /** 12, no language features; switch expression in preview */ 88 JDK12("12"), 89 90 /** 91 * 13, no language features; text blocks and revised switch 92 * expressions in preview 93 */ 94 JDK13("13"), 95 96 /** 97 * 14, switch expressions; pattern matching, records, and revised 98 * text blocks in preview 99 */ 100 JDK14("14"), 101 102 /** 103 * 15, text blocks 104 */ 105 JDK15("15"), 106 107 /** 108 * 16, records and pattern matching for instanceof 109 */ 110 JDK16("16"), 111 112 /** 113 * 17, sealed classes, restoration of always-strict floating-point 114 */ 115 JDK17("17"), 116 117 /** 118 * 18, no major changes 119 */ 120 JDK18("18"), 121 122 /** 123 * 19, no major changes 124 */ 125 JDK19("19"), 126 127 /** 128 * 20, no major changes 129 */ 130 JDK20("20"), 131 132 /** 133 * 21, tbd 134 */ 135 JDK21("21"), 136 137 /** 138 * 22, tbd 139 */ 140 JDK22("22"), 141 142 /** 143 * 23, tbd 144 */ 145 JDK23("23"), 146 147 /** 148 * 24, tbd 149 */ 150 JDK24("24"), 151 ; // Reduce code churn when appending new constants 152 153 private static final Context.Key<Source> sourceKey = new Context.Key<>(); 154 155 public static Source instance(Context context) { 156 Source instance = context.get(sourceKey); 157 if (instance == null) { 158 Options options = Options.instance(context); 159 String sourceString = options.get(SOURCE); 160 if (sourceString != null) instance = lookup(sourceString); 161 if (instance == null) instance = DEFAULT; 162 context.put(sourceKey, instance); 163 } 164 return instance; 165 } 166 167 public final String name; 168 169 private static final Map<String,Source> tab = new HashMap<>(); 170 static { 171 for (Source s : values()) { 172 tab.put(s.name, s); 173 } 174 tab.put("1.5", JDK5); // Make 5 an alias for 1.5 175 tab.put("1.6", JDK6); // Make 6 an alias for 1.6 176 tab.put("1.7", JDK7); // Make 7 an alias for 1.7 177 tab.put("1.8", JDK8); // Make 8 an alias for 1.8 178 tab.put("1.9", JDK9); // Make 9 an alias for 1.9 179 tab.put("1.10", JDK10); // Make 10 an alias for 1.10 180 // Decline to make 1.11 an alias for 11. 181 } 182 183 private Source(String name) { 184 this.name = name; 185 } 186 187 public static final Source MIN = Source.JDK8; 188 189 private static final Source MAX = values()[values().length - 1]; 190 191 public static final Source DEFAULT = MAX; 192 193 public static Source lookup(String name) { 194 return tab.get(name); 195 } 196 197 public boolean isSupported() { 198 return this.compareTo(MIN) >= 0; 199 } 200 201 public Target requiredTarget() { 202 return switch(this) { 203 case JDK24 -> Target.JDK1_24; 204 case JDK23 -> Target.JDK1_23; 205 case JDK22 -> Target.JDK1_22; 206 case JDK21 -> Target.JDK1_21; 207 case JDK20 -> Target.JDK1_20; 208 case JDK19 -> Target.JDK1_19; 209 case JDK18 -> Target.JDK1_18; 210 case JDK17 -> Target.JDK1_17; 211 case JDK16 -> Target.JDK1_16; 212 case JDK15 -> Target.JDK1_15; 213 case JDK14 -> Target.JDK1_14; 214 case JDK13 -> Target.JDK1_13; 215 case JDK12 -> Target.JDK1_12; 216 case JDK11 -> Target.JDK1_11; 217 case JDK10 -> Target.JDK1_10; 218 case JDK9 -> Target.JDK1_9; 219 case JDK8 -> Target.JDK1_8; 220 case JDK7 -> Target.JDK1_7; 221 case JDK6 -> Target.JDK1_6; 222 case JDK5 -> Target.JDK1_5; 223 case JDK1_4 -> Target.JDK1_4; 224 default -> Target.JDK1_1; 225 }; 226 } 227 228 /** 229 * Models a feature of the Java programming language. Each feature can be associated with a 230 * minimum source level, a maximum source level and a diagnostic fragment describing the feature, 231 * which is used to generate error messages of the kind {@code feature XYZ not supported in source N}. 232 */ 233 public enum Feature { 234 235 MODULES(JDK9, Fragments.FeatureModules, DiagKind.PLURAL), 236 EFFECTIVELY_FINAL_VARIABLES_IN_TRY_WITH_RESOURCES(JDK9, Fragments.FeatureVarInTryWithResources, DiagKind.PLURAL), 237 DEPRECATION_ON_IMPORT(MIN, JDK8), 238 PRIVATE_SAFE_VARARGS(JDK9), 239 DIAMOND_WITH_ANONYMOUS_CLASS_CREATION(JDK9, Fragments.FeatureDiamondAndAnonClass, DiagKind.NORMAL), 240 UNDERSCORE_IDENTIFIER(MIN, JDK8), 241 PRIVATE_INTERFACE_METHODS(JDK9, Fragments.FeaturePrivateIntfMethods, DiagKind.PLURAL), 242 LOCAL_VARIABLE_TYPE_INFERENCE(JDK10), 243 VAR_SYNTAX_IMPLICIT_LAMBDAS(JDK11, Fragments.FeatureVarSyntaxInImplicitLambda, DiagKind.PLURAL), 244 IMPORT_ON_DEMAND_OBSERVABLE_PACKAGES(JDK1_2, JDK8), 245 SWITCH_MULTIPLE_CASE_LABELS(JDK14, Fragments.FeatureMultipleCaseLabels, DiagKind.PLURAL), 246 SWITCH_RULE(JDK14, Fragments.FeatureSwitchRules, DiagKind.PLURAL), 247 SWITCH_EXPRESSION(JDK14, Fragments.FeatureSwitchExpressions, DiagKind.PLURAL), 248 NO_TARGET_ANNOTATION_APPLICABILITY(JDK14), 249 TEXT_BLOCKS(JDK15, Fragments.FeatureTextBlocks, DiagKind.PLURAL), 250 PATTERN_MATCHING_IN_INSTANCEOF(JDK16, Fragments.FeaturePatternMatchingInstanceof, DiagKind.NORMAL), 251 REIFIABLE_TYPES_INSTANCEOF(JDK16, Fragments.FeatureReifiableTypesInstanceof, DiagKind.PLURAL), 252 RECORDS(JDK16, Fragments.FeatureRecords, DiagKind.PLURAL), 253 SEALED_CLASSES(JDK17, Fragments.FeatureSealedClasses, DiagKind.PLURAL), 254 CASE_NULL(JDK21, Fragments.FeatureCaseNull, DiagKind.NORMAL), 255 PATTERN_SWITCH(JDK21, Fragments.FeaturePatternSwitch, DiagKind.PLURAL), 256 REDUNDANT_STRICTFP(JDK17), 257 UNCONDITIONAL_PATTERN_IN_INSTANCEOF(JDK21, Fragments.FeatureUnconditionalPatternsInInstanceof, DiagKind.PLURAL), 258 RECORD_PATTERNS(JDK21, Fragments.FeatureDeconstructionPatterns, DiagKind.PLURAL), 259 IMPLICIT_CLASSES(JDK21, Fragments.FeatureImplicitClasses, DiagKind.PLURAL), 260 WARN_ON_ILLEGAL_UTF8(MIN, JDK21), 261 UNNAMED_VARIABLES(JDK22, Fragments.FeatureUnnamedVariables, DiagKind.PLURAL), 262 PRIMITIVE_PATTERNS(JDK23, Fragments.FeaturePrimitivePatterns, DiagKind.PLURAL), 263 FLEXIBLE_CONSTRUCTORS(JDK22, Fragments.FeatureFlexibleConstructors, DiagKind.NORMAL), 264 MODULE_IMPORTS(JDK23, Fragments.FeatureModuleImports, DiagKind.PLURAL), 265 ; 266 267 enum DiagKind { 268 NORMAL, 269 PLURAL; 270 } 271 272 private final Source minLevel; 273 private final Source maxLevel; 274 private final Fragment optFragment; 275 private final DiagKind optKind; 276 277 Feature(Source minLevel) { 278 this(minLevel, null, null); 279 } 280 281 Feature(Source minLevel, Fragment optFragment, DiagKind optKind) { 282 this(minLevel, MAX, optFragment, optKind); 283 } 284 285 Feature(Source minLevel, Source maxLevel) { 286 this(minLevel, maxLevel, null, null); 287 } 288 289 Feature(Source minLevel, Source maxLevel, Fragment optFragment, DiagKind optKind) { 290 this.minLevel = minLevel; 291 this.maxLevel = maxLevel; 292 this.optFragment = optFragment; 293 this.optKind = optKind; 294 } 295 296 public boolean allowedInSource(Source source) { 297 return source.compareTo(minLevel) >= 0 && 298 source.compareTo(maxLevel) <= 0; 299 } 300 301 public boolean isPlural() { 302 Assert.checkNonNull(optKind); 303 return optKind == DiagKind.PLURAL; 304 } 305 306 public Fragment nameFragment() { 307 Assert.checkNonNull(optFragment); 308 return optFragment; 309 } 310 311 public Fragment fragment(String sourceName) { 312 Assert.checkNonNull(optFragment); 313 return optKind == DiagKind.NORMAL ? 314 Fragments.FeatureNotSupportedInSource(optFragment, sourceName, minLevel.name) : 315 Fragments.FeatureNotSupportedInSourcePlural(optFragment, sourceName, minLevel.name); 316 } 317 318 public Error error(String sourceName) { 319 Assert.checkNonNull(optFragment); 320 return optKind == DiagKind.NORMAL ? 321 Errors.FeatureNotSupportedInSource(optFragment, sourceName, minLevel.name) : 322 Errors.FeatureNotSupportedInSourcePlural(optFragment, sourceName, minLevel.name); 323 } 324 } 325 326 public static SourceVersion toSourceVersion(Source source) { 327 return switch(source) { 328 case JDK1_2 -> RELEASE_2; 329 case JDK1_3 -> RELEASE_3; 330 case JDK1_4 -> RELEASE_4; 331 case JDK5 -> RELEASE_5; 332 case JDK6 -> RELEASE_6; 333 case JDK7 -> RELEASE_7; 334 case JDK8 -> RELEASE_8; 335 case JDK9 -> RELEASE_9; 336 case JDK10 -> RELEASE_10; 337 case JDK11 -> RELEASE_11; 338 case JDK12 -> RELEASE_12; 339 case JDK13 -> RELEASE_13; 340 case JDK14 -> RELEASE_14; 341 case JDK15 -> RELEASE_15; 342 case JDK16 -> RELEASE_16; 343 case JDK17 -> RELEASE_17; 344 case JDK18 -> RELEASE_18; 345 case JDK19 -> RELEASE_19; 346 case JDK20 -> RELEASE_20; 347 case JDK21 -> RELEASE_21; 348 case JDK22 -> RELEASE_22; 349 case JDK23 -> RELEASE_23; 350 case JDK24 -> RELEASE_24; 351 default -> null; 352 }; 353 } 354 }