Migrate ReactLegacyArchitectureProcessor to kotlin (#49571)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49571

Migrate ReactLegacyArchitectureProcessor to kotlin

changelog: [internal] internal

Reviewed By: cortinico

Differential Revision: D69929877

fbshipit-source-id: 448c8de54cbb1f72eeee747edaf4cbb2a5fd365d
This commit is contained in:
David Vacca
2025-02-20 17:06:11 -08:00
committed by Facebook GitHub Bot
parent 14bb32f4fc
commit e8afcbbc38
2 changed files with 48 additions and 52 deletions
@@ -1,52 +0,0 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.processing;
import com.facebook.annotationprocessors.common.ProcessorBase;
import com.facebook.react.common.annotations.internal.LegacyArchitecture;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import javax.annotation.processing.RoundEnvironment;
import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion;
import javax.lang.model.SourceVersion;
import javax.lang.model.element.Element;
import javax.lang.model.element.TypeElement;
@SupportedAnnotationTypes("com.facebook.react.common.annotations.internal.LegacyArchitecture")
@SupportedSourceVersion(SourceVersion.RELEASE_11)
public class ReactLegacyArchitectureProcessor extends ProcessorBase {
@Override
protected boolean processImpl(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
String outputFileName = System.getenv().get("RN_LEGACY_ARCH_OUTPUT_FILE_NAME");
if (outputFileName == null || outputFileName.trim().isEmpty()) {
return true;
}
Set<? extends Element> elements = roundEnv.getElementsAnnotatedWith(LegacyArchitecture.class);
List<String> classes = new ArrayList<>();
for (Element element : elements) {
TypeElement classType = (TypeElement) element;
String className = classType.getQualifiedName().toString().replace(".", "/");
classes.add("type L" + className + ";");
}
try (FileWriter writer = new FileWriter(outputFileName, true)) {
for (String clazz : classes) {
writer.write(clazz + "\n");
}
} catch (IOException e) {
throw new RuntimeException(e);
}
return true;
}
}
@@ -0,0 +1,48 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.processing
import com.facebook.annotationprocessors.common.ProcessorBase
import com.facebook.react.common.annotations.internal.LegacyArchitecture
import java.io.FileWriter
import java.io.IOException
import javax.annotation.processing.RoundEnvironment
import javax.annotation.processing.SupportedAnnotationTypes
import javax.annotation.processing.SupportedSourceVersion
import javax.lang.model.SourceVersion
import javax.lang.model.element.TypeElement
@SupportedAnnotationTypes("com.facebook.react.common.annotations.internal.LegacyArchitecture")
@SupportedSourceVersion(SourceVersion.RELEASE_11)
class ReactLegacyArchitectureProcessor : ProcessorBase() {
override fun processImpl(annotations: Set<TypeElement>, roundEnv: RoundEnvironment): Boolean {
val outputFileName = System.getenv()["RN_LEGACY_ARCH_OUTPUT_FILE_NAME"]
if (outputFileName.isNullOrEmpty()) {
return true
}
val elements = roundEnv.getElementsAnnotatedWith(LegacyArchitecture::class.java)
val classes: MutableList<String> = mutableListOf()
elements.forEach { element ->
val classType = element as TypeElement
val className = classType.qualifiedName.toString().replace(".", "/")
classes.add("type L$className;")
}
try {
FileWriter(outputFileName, true).use { writer ->
for (clazz in classes) {
writer.write(clazz + "\n")
}
}
} catch (e: IOException) {
throw RuntimeException(e)
}
return true
}
}