All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jetty.toolchain.modifysources.ModifyEE9ToEE8 Maven / Gradle / Ivy

Go to download

Maven Plugin used for Jetty 12 to transform sources and resources using jakarta namespace to EE8 javax namespace

The newest version!
package org.eclipse.jetty.toolchain.modifysources;


import com.github.javaparser.JavaParser;
import com.github.javaparser.ParseResult;
import com.github.javaparser.ParserConfiguration;
import com.github.javaparser.ast.CompilationUnit;
import com.github.javaparser.ast.ImportDeclaration;
import com.github.javaparser.ast.Node;
import com.github.javaparser.ast.PackageDeclaration;
import com.github.javaparser.ast.body.ConstructorDeclaration;
import com.github.javaparser.ast.body.FieldDeclaration;
import com.github.javaparser.ast.body.VariableDeclarator;
import com.github.javaparser.ast.comments.BlockComment;
import com.github.javaparser.ast.comments.JavadocComment;
import com.github.javaparser.ast.comments.LineComment;
import com.github.javaparser.ast.expr.CastExpr;
import com.github.javaparser.ast.expr.ClassExpr;
import com.github.javaparser.ast.expr.Expression;
import com.github.javaparser.ast.expr.FieldAccessExpr;
import com.github.javaparser.ast.expr.IntegerLiteralExpr;
import com.github.javaparser.ast.expr.MethodCallExpr;
import com.github.javaparser.ast.expr.Name;
import com.github.javaparser.ast.expr.NameExpr;
import com.github.javaparser.ast.expr.StringLiteralExpr;
import com.github.javaparser.ast.expr.TextBlockLiteralExpr;
import com.github.javaparser.ast.expr.VariableDeclarationExpr;
import com.github.javaparser.ast.modules.ModuleDeclaration;
import com.github.javaparser.ast.modules.ModuleExportsDirective;
import com.github.javaparser.ast.modules.ModuleOpensDirective;
import com.github.javaparser.ast.modules.ModuleProvidesDirective;
import com.github.javaparser.ast.modules.ModuleRequiresDirective;
import com.github.javaparser.ast.modules.ModuleUsesDirective;
import com.github.javaparser.ast.nodeTypes.NodeWithName;
import com.github.javaparser.ast.nodeTypes.NodeWithSimpleName;
import com.github.javaparser.ast.nodeTypes.NodeWithType;
import com.github.javaparser.ast.stmt.BlockStmt;
import com.github.javaparser.ast.stmt.ExpressionStmt;
import com.github.javaparser.ast.type.ClassOrInterfaceType;
import com.github.javaparser.ast.visitor.ModifierVisitor;
import com.github.javaparser.ast.visitor.Visitable;
import com.github.javaparser.utils.SourceRoot;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;

import java.io.File;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Comparator;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

/**
 * Modify sources from EE9 project to be compiled with EE8 dependencies
 */
@Mojo( name = "modify-sources-ee9-to-ee8", defaultPhase = LifecyclePhase.GENERATE_SOURCES, threadSafe = true )
public class ModifyEE9ToEE8
    extends AbstractMojo
{
    /**
     * Location of the project to convert.
     */
    @Parameter( property = "sourceProjectLocation", required = true )
    private File sourceProjectLocation;

    /**
     * Location of the modified sources.
     */
    @Parameter( defaultValue = "${project.build.directory}/generated-sources/ee8", property = "outputLocation", required = true )
    private File outputDirectory;

    @Parameter( property = "jetty.modifysources.EE9toEE8.skip" )
    private boolean skip;
    /**
     * move generated sources org/eclipse/jetty/ee9 to org/eclipse/jetty/ee8
     */
    @Parameter( property = "jetty.modifysources.EE9toEE8.moveDirectoryStructure" )
    private boolean moveDirectoryStructure = true;

    @Parameter( property = "jetty.modifysources.testSources" )
    private boolean testSources = true;

    @Parameter( property = "jetty.modifysources.addToCompileSourceRoot" )
    private boolean addToCompileSourceRoot = false;

    /**
     * Maven Project.
     */
    @Parameter( defaultValue = "${project}", readonly = true )
    protected MavenProject project;

    /**
     * this is a list of String to not translate if starting with
     */
    @Parameter
    protected Set notTranslateStartsWith = Set.of("https://jakarta.ee/xml/ns/", "http://jakarta.ee/xml/ns/");

    private static final ThreadLocal TRANSLATE = ThreadLocal.withInitial(() -> true);

    public void execute()
        throws MojoExecutionException
    {
        if(skip)
        {
            getLog().debug( "EE9toEE8 skip" );
            return;
        }
        if (project.getPackaging().equals( "pom" ))
        {
            getLog().debug( "EE9toEE8 skip pom packaging" );
            return;
        }
        if(!sourceProjectLocation.exists())
        {
            getLog().info( "EE9toEE8 sourceProjectLocation not exists" );
            return;
        }

        getLog().info("Transforming sources from " + sourceProjectLocation + " to " + outputDirectory);

        List compilationUnitsToRename = new ArrayList<>();

        try
        {

            SourceRoot sourceRoot = new SourceRoot(sourceProjectLocation.toPath());
            sourceRoot.getParserConfiguration().setLanguageLevel(ParserConfiguration.LanguageLevel.JAVA_17);

            // Our sample is in the root of this directory, so no package name.
            List> parseResults = sourceRoot.tryToParse( "" );

            Path out = outputDirectory.toPath();
            if ( Files.exists( out ) )
            {
                Files.walk(out).sorted(Comparator.reverseOrder()).map(Path::toFile).forEach(File::delete);
            }

            Files.createDirectories(out);

            for (ParseResult parseResult : parseResults) {
                CompilationUnit cu = parseResult.getResult().get();

                // as the classes with names started with Jakarta will be renamed to Javax we need to rename all usage of those classes
                cu.findAll(VariableDeclarator.class).forEach(vd -> {
                    if (vd.getType() instanceof ClassOrInterfaceType) {
                        String nameAsString = ((ClassOrInterfaceType)vd.getType()).getNameAsString();
                        if (nameAsString.contains("Jakarta")) {
                            ((ClassOrInterfaceType)vd.getType()).setName(nameAsString.replace("Jakarta", "Javax"));
                        }
                    }
                    if (StringUtils.equals(vd.getNameAsString(), "SERVLET_MAJOR_VERSION")) {
                        vd.setInitializer(new IntegerLiteralExpr("4"));
                    }
                    //changeEE9TypeToEE8(vd);
                });

                cu.findAll(ConstructorDeclaration.class).forEach(cd -> {
                    String typeName = cd.getNameAsString();
                    if(typeName.contains("Jakarta")) {
                        cd.setName(typeName.replace("Jakarta", "Javax"));
                    }
                    cd.getParameters().forEach(parameter -> {
                        if(parameter.getType() instanceof ClassOrInterfaceType) {
                            ClassOrInterfaceType cit = ((ClassOrInterfaceType)parameter.getType());
                            String name = cit.getNameAsString();
                            if(name.contains("Jakarta")) {
                                cit.setName(name.replace("Jakarta", "Javax"));
                            }
                        }
                    });
                });

                cu.findAll(FieldDeclaration.class).stream()
                        .filter(fd -> fd.getVariables().get(0).getType() instanceof ClassOrInterfaceType)
                        .map(fd -> (ClassOrInterfaceType) fd.getVariables().get(0).getType())
                        .filter(cif -> cif.getTypeArguments().isPresent())
                        .forEach(cif ->
                            cif.getTypeArguments().get().stream()
                                    .filter(type -> type instanceof ClassOrInterfaceType)
                                    .map(type -> (ClassOrInterfaceType) type)
                                    .forEach(classOrInterfaceType -> {
                                        String currentName = classOrInterfaceType.getNameAsString();
                                        if (currentName.contains("Jakarta")) {
                                            classOrInterfaceType.setName(currentName.replace("Jakarta", "Javax"));
                                        }
                                    })
                );

                cu.findAll(FieldAccessExpr.class).stream()
                                .filter(FieldAccessExpr::isFieldAccessExpr)
                                .filter(fieldAccessExpr -> fieldAccessExpr.getNameAsString().equals("ee9"))
                                .forEach(fieldAccessExpr -> fieldAccessExpr.setName("ee8"));

                cu.findAll(NameExpr.class).stream()
                        .filter(nameExpr -> nameExpr.getNameAsString().contains("Jakarta"))
                        .forEach(nameExpr -> {
                            String className = nameExpr.getNameAsString();
                            nameExpr.setName(className.replace("Jakarta", "Javax"));
                        });

                cu.accept(
                    new ModifierVisitor()
                    {

                        @Override
                        public Node visit(ImportDeclaration n, Void arg) {
                            changeEE9NameToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(PackageDeclaration n, Void arg) {
                            changeEE9NameToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(com.github.javaparser.ast.body.Parameter n, Void arg) {
                            changeEE9TypeToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(VariableDeclarationExpr n, Void arg) {
                            List  variables = n.getVariables();
                            for (VariableDeclarator variable: variables) {
                                changeEE9TypeToEE8(variable);
                            }
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(MethodCallExpr n, Void arg) {
                            String fullString = n.toString();
                            if(StringUtils.startsWith(fullString, "org.eclipse.jetty.ee9.") && n.getScope().isPresent()) {
                                // org.eclipse.jetty.ee9.nested.Response.unwrap(event.getSuppliedResponse())
                                Expression expression = n.getScope().get();
                                if(expression.isFieldAccessExpr()) {
                                    FieldAccessExpr fieldAccessExpr = expression.asFieldAccessExpr();
                                    // Response
                                    String classSimpleName = fieldAccessExpr.getName().asString();
                                    // org.eclipse.jetty.ee9.nested
                                    String ee9PackageName = StringUtils.substringBefore(fullString, "." + classSimpleName);
                                    // org.eclipse.jetty.ee8.nested
                                    String ee8PackageName = StringUtils.replace(ee9PackageName,
                                            "org.eclipse.jetty.ee9",
                                            "org.eclipse.jetty.ee8");
                                    NameExpr nameExpr = new NameExpr(ee8PackageName + "." + classSimpleName);
                                    n.setScope(nameExpr);
                                }
                            }
                            fullString = n.toString();
                            if(StringUtils.startsWith(fullString, "EE9") && n.getScope().isPresent()) {
                                Expression expression = n.getScope().get();
                                if(expression.isNameExpr()) {
                                    NameExpr nameExpr = n.getScope().get().asNameExpr();;
                                    String oldExp = nameExpr.getNameAsString();
                                    n.setScope(new NameExpr(oldExp.replaceFirst("EE9", "EE8")));
                                }
                            }
                            replaceMethodCallExpr(n, "Jakarta", "Javax");
                            replaceMethodCallExpr(n, "EE9", "EE8");
                            replaceMethodCallExpr(n, "org.eclipse.jetty.ee9", "org.eclipse.jetty.ee8");
                            if(n.getComment().isPresent() && n.getComment().get().getContent().contains("//EE8EE9-TRANSLATE")) {
                                getLog().debug("//EE8EE9-TRANSLATE");
                            }
                            return super.visit(n, arg);
                        }


                        private void replaceMethodCallExpr(MethodCallExpr n, String contains, String replace) {
                            String fullString = n.toString();
                            if(StringUtils.contains(fullString, contains) && n.getScope().isPresent()){

                                n.getArguments().stream().filter(node -> node instanceof NodeWithSimpleName)
                                        .map(node -> (NodeWithSimpleName)node)
                                        .filter(nameExpr -> nameExpr.getNameAsString().contains(contains))
                                        .forEach(nameExpr -> {
                                            String className = nameExpr.getNameAsString();
                                            nameExpr.setName(className.replace(contains, replace));
                                        });

                                n.getChildNodes().stream().filter(node -> node instanceof FieldAccessExpr)
                                        .map(node -> (FieldAccessExpr)node)
                                        .filter(fieldAccessExpr -> fieldAccessExpr.getScope().isNameExpr())
                                        .map(nameExpr -> (NameExpr)nameExpr.getScope())
                                        .forEach(nameExpr -> {
                                            String fullClassName = nameExpr.getNameAsString();
                                            if(fullClassName.contains(contains)) {
                                                nameExpr.setName(fullClassName.replace(contains, replace));
                                            }
                                        });

                                n.getChildNodes().stream().filter(node -> node instanceof FieldAccessExpr)
                                        .map(node -> (FieldAccessExpr)node)
                                        .forEach(fieldAccessExpr -> {
                                            String fullClassName = fieldAccessExpr.getNameAsString();
                                            if(fullClassName.contains(contains)) {
                                                fieldAccessExpr.setName(fullClassName.replace(contains, replace));
                                            }
                                        });

                                n.getChildNodes().stream().filter(node -> node instanceof NameExpr)
                                        .map(node -> (NameExpr)node)
                                        .filter(nameExpr -> nameExpr.getNameAsString().contains(contains))
                                        .forEach(nameExpr -> {
                                            String className = nameExpr.getNameAsString();
                                            nameExpr.setName(className.replace(contains, replace));
                                        });

                                n.getChildNodes().stream().filter(node -> node instanceof ClassExpr)
                                        .map(node -> (ClassExpr)node)
                                        .filter(classExpr -> classExpr.getTypeAsString().contains(contains))
                                        .forEach(classExpr -> {
                                            String className = classExpr.getTypeAsString();
                                            classExpr.setType(className.replace(contains, replace));
                                        });
                            }
                        }

                        @Override
                        public Visitable visit(ClassExpr n, Void arg) {
                            changeEE9TypeToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(ClassOrInterfaceType n, Void arg) {
                            String currentName = n.toString();
                            JavaParser javaParser = new JavaParser();

                            if (currentName.startsWith("org.eclipse.jetty.ee9.")) {
                                String newName = StringUtils.replace(currentName, "org.eclipse.jetty.ee9.", "org.eclipse.jetty.ee8.");
                                ParseResult parseResult = javaParser.parseClassOrInterfaceType(newName);
                                if (parseResult.isSuccessful() && parseResult.getResult().isPresent()) {
                                    n = parseResult.getResult().get();
                                }

                            }
                            if (currentName.contains("jakarta")) {
                                String newName = StringUtils.replace(currentName, "jakarta", "javax");
                                ParseResult parseResult = javaParser.parseClassOrInterfaceType(newName);
                                if (parseResult.isSuccessful() && parseResult.getResult().isPresent()) {
                                    n = parseResult.getResult().get();
                                }
                            }
                            if(currentName.contains("Jakarta")) {
                                String newName = StringUtils.replace(currentName, "Jakarta", "Javax");
                                ParseResult parseResult = javaParser.parseClassOrInterfaceType(newName);
                                if (parseResult.isSuccessful() && parseResult.getResult().isPresent()) {
                                    n = parseResult.getResult().get();
                                }
                            }
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(LineComment n, Void arg) {
                            return super.visit(n, arg);
                        }
                        @Override
                        public Visitable visit(BlockStmt n, Void arg) {
                            if(n.toString().contains("//EE9EE8-NO-TRANSLATE")){
                                TRANSLATE.set(false);
                            }
                            Visitable visitable = super.visit(n, arg);
                            if(n.toString().contains("//EE9EE8-NO-TRANSLATE")){
                                TRANSLATE.set(true);
                            }
                            if(n.toString().contains("//EE8EE9-TRANSLATE")) {
                                getLog().debug("found //EE8EE9-TRANSLATE");
                            }
                            return visitable;
                        }

                        @Override
                        public Visitable visit(BlockComment n, Void arg) {
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(TextBlockLiteralExpr n, Void arg) {
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(ExpressionStmt n, Void arg) {
                            Visitable visitable = super.visit(n, arg);
                            return visitable;
                        }

                        @Override
                        public Visitable visit(FieldDeclaration n, Void arg) {
                            if(n.getComment().isPresent() && n.getComment().get().getContent().contains("EE8EE9-TRANSLATE")) {
                                getLog().debug("found EE8EE9-TRANSLATE");
                                TRANSLATE.set(false);
                                n.getChildNodes().stream().filter(node -> node instanceof VariableDeclarator)
                                        .map(node -> (VariableDeclarator)node)
                                        .forEach(vd -> vd.getChildNodes().stream()
                                                .filter(node -> node instanceof StringLiteralExpr)
                                                .map((node -> (StringLiteralExpr)node))
                                                .forEach(ste -> ste.setString(StringUtils.replace(ste.getValue(), "javax.", "jakarta."))));


                            }
                            Visitable visitable = super.visit(n, arg);
                            TRANSLATE.set(true);
                            return visitable;
                        }

                        @Override
                        public Visitable visit(StringLiteralExpr n, Void arg) {
                            if(!TRANSLATE.get()) {
                                return super.visit(n, arg);
                            }
                            if (startsWith(n.getValue(), notTranslateStartsWith)) {
                                return super.visit(n, arg);
                            }
                            if(StringUtils.contains(n.getValue(), "javax.servlet")) {
                                getLog().debug("found javax.servlet");
                            }
                            if(StringUtils.contains(n.getValue(), "jakarta")) {
                                n.setString(StringUtils.replace(n.getValue(), "jakarta", "javax"));
                            }
                            if(StringUtils.contains(n.getValue(), "Jakarta")) {
                                n.setString(StringUtils.replace(n.getValue(), "Jakarta", "Javax"));
                            }
                            if(StringUtils.contains(n.getValue(), "jetty-ee9")) {
                                n.setString(StringUtils.replace(n.getValue(), "jetty-ee9", "jetty-ee8"));
                            }
                            if(StringUtils.equals(n.getValue(), "ee9")) {
                                n.setString(StringUtils.replace(n.getValue(), "ee9", "ee8"));
                            }
                            if(StringUtils.contains(n.getValue(), "ee9")) {
                                n.setString(StringUtils.replace(n.getValue(), "ee9", "ee8"));
                            }
                            if(StringUtils.contains(n.getValue(), "EE9")) {
                                n.setString(StringUtils.replace(n.getValue(), "EE9", "EE8"));
                            }
                            if(StringUtils.contains(n.getValue(), "org.eclipse.jetty.ee9")) {
                                n.setString(StringUtils.replace(n.getValue(), "org.eclipse.jetty.ee9", "org.eclipse.jetty.ee8"));
                            }
                            if(StringUtils.contains(n.getValue(), "org/eclipse/jetty/ee9")) {
                                n.setString(StringUtils.replace(n.getValue(), "org/eclipse/jetty/ee9", "org/eclipse/jetty/ee8"));
                            }
                            if(StringUtils.contains(n.getValue(), "webdefault-ee9.xml")) {
                                n.setString(StringUtils.replace(n.getValue(), "webdefault-ee9.xml", "webdefault-ee8.xml"));
                            }
                            if(StringUtils.contains(n.getValue(), "servlet5")) {
                                n.setString(StringUtils.replace(n.getValue(), "servlet5", "servlet4"));
                            }

                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(CastExpr n, Void arg) {
                            changeEE9TypeToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(ModuleDeclaration n, Void arg) {
                            changeEE9NameToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(ModuleExportsDirective n, Void arg) {
                            changeEE9NameToEE8(n);
                            if (!n.getModuleNames().isEmpty()) {
                                n.getModuleNames().stream()
                                        .filter(name -> name.getQualifier().isPresent())
                                        .filter(name -> StringUtils.contains(name.getQualifier().get().asString(),"org.eclipse.jetty.ee9."))
                                        .forEach(name -> name.setQualifier(new Name(StringUtils.replace(name.getQualifier().get().asString(),
                                                "org.eclipse.jetty.ee9.",
                                                "org.eclipse.jetty.ee8."))));

                                n.getModuleNames().stream()
                                        .filter(name -> name.getQualifier().isPresent())
                                        .filter(name -> StringUtils.contains(name.getQualifier().get().asString(),".jakarta"))
                                        .forEach(name -> name.setQualifier(new Name(StringUtils.replace(name.getQualifier().get().asString(),
                                                ".jakarta",
                                                ".javax"))));
                            }
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(ModuleRequiresDirective n, Void arg) {
                            String currentName = n.getName().asString();
                            if (StringUtils.equals("jakarta.mail", currentName) && n.isStatic()) {
                                n.setName("javax.mail.glassfish");
                            }
                            if (StringUtils.contains(currentName, "jakarta.transaction")) {
                                String newName = StringUtils.replace(currentName, "jakarta.transaction", "java.transaction");
                                n.setName(newName);
                            }
                            if (StringUtils.contains(currentName, "jakarta.annotation")) {
                                String newName = StringUtils.replace(currentName, "jakarta.annotation", "java.annotation");
                                n.setName(newName);
                            }
                            changeEE9NameToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(ModuleProvidesDirective n, Void arg) {
                            changeEE9NameToEE8(n);
                            if (!n.getWith().isEmpty()) {
                                n.getWith().stream()
                                        .filter(name -> name.getQualifier().isPresent())
                                        .filter(name -> StringUtils.contains(name.getQualifier().get().asString(),"org.eclipse.jetty.ee9."))
                                        .forEach(name -> name.setQualifier(new Name(StringUtils.replace(name.getQualifier().get().asString(),
                                                "org.eclipse.jetty.ee9.",
                                                "org.eclipse.jetty.ee8."))));
                                n.getWith().stream()
                                        .filter(name -> name.getQualifier().isPresent())
                                        .filter(name -> StringUtils.contains(name.getQualifier().get().asString(),".jakarta"))
                                        .forEach(name -> name.setQualifier(new Name(StringUtils.replace(name.getQualifier().get().asString(),
                                                ".jakarta",
                                                ".javax"))));
                                n.getWith().stream()
                                        .filter(name -> StringUtils.contains(name.getIdentifier(),"Jakarta"))
                                        .forEach(name -> name.setIdentifier(StringUtils.replace(name.getIdentifier(),
                                                "Jakarta",
                                                "Javax")));


                            }
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(ModuleUsesDirective n, Void arg) {
                            changeEE9NameToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(ModuleOpensDirective n, Void arg) {
                            changeEE9NameToEE8(n);
                            return super.visit(n, arg);
                        }

                        @Override
                        public Visitable visit(JavadocComment n, Void arg) {

                            if (StringUtils.contains(n.getContent(), "jakarta")) {
                                n.setContent(StringUtils.replace(n.getContent(),"jakarta", "javax"));
                            }
                            if (StringUtils.contains(n.getContent(), "Jakarta")) {
                                n.setContent(StringUtils.replace(n.getContent(),"Jakarta", "Javax"));
                            }
                            if (StringUtils.contains(n.getContent(), "ee9")) {
                                n.setContent(StringUtils.replace(n.getContent(),"ee9", "ee8"));
                            }
                            return super.visit(n, arg);
                        }

                    }, null );


                if (cu.getPrimaryTypeName().isPresent() && ( cu.getPrimaryTypeName().get().contains("Jakarta")
                        ||  cu.getPrimaryTypeName().get().contains("ee9"))
                        ||  cu.getPrimaryTypeName().get().contains("EE9") ) {
                    // we cannot as we have some demo packages as well
                        //&& cu.getPackageDeclaration().get().getName().toString().startsWith("org.eclipse.jetty.ee8")) {
                    compilationUnitsToRename.add(cu);
                }

            }

            sourceRoot.saveAll(out);

            File ee9Directory = new File(outputDirectory, "org/eclipse/jetty/ee9");

            if (moveDirectoryStructure && Files.isDirectory(ee9Directory.toPath())) {
                File ee8Directory = new File(outputDirectory, "org/eclipse/jetty/ee8");
                FileUtils.moveDirectory(ee9Directory, ee8Directory);
                List pathsEndedJakarta = Files.walk(ee8Directory.toPath())
                        .filter(Files::isDirectory)
                        .filter(path -> path.getFileName().endsWith("jakarta"))
                        .collect(Collectors.toList());
                pathsEndedJakarta.forEach(path -> {
                    try {
                        FileUtils.moveDirectory(path.toFile(),
                                new File(path.toFile().getParentFile(), "javax"));
                    } catch (IOException e) {
                        throw new RuntimeException(e);
                    }
                });
            }

            for (CompilationUnit cu : compilationUnitsToRename) {

                // at this stage everything has been renamed but the old file will be still save as we cannot change that
                String previousPackage = cu.getPackageDeclaration().get().getName().toString();
                String previousFullClassName = previousPackage + "." + cu.getPrimaryTypeName().get();
                String className = replaceClassName(cu.getPrimaryTypeName().get());
                String fullClassName = previousPackage + "." + className;

                cu.getPrimaryType().get().setName(className);

                Path newPath = out.resolve(fullClassName.replace('.', '/') + ".java");

                String newClassSource = cu.toString();

                Files.createDirectories(newPath.getParent());
                Files.createFile(newPath);
                Files.write(newPath, newClassSource.getBytes(StandardCharsets.UTF_8));

                Path oldPath = out.resolve(previousFullClassName.replace('.', '/') + ".java");
                Files.deleteIfExists(oldPath);
            }

            if (addToCompileSourceRoot) {
                if (testSources) {
                    project.getTestCompileSourceRoots().add(outputDirectory.getAbsolutePath());
                } else {
                    project.getCompileSourceRoots().add(outputDirectory.getAbsolutePath());
                }
            }

        }
        catch (IOException e)
        {
            throw new MojoExecutionException("fail to modify jetty sources", e);
        }

    }


    private String replaceClassName(String previousClassName) {
        String className = StringUtils.replace(previousClassName, "Jakarta", "Javax");
        className = StringUtils.replace(className, "ee9", "ee8");
        className = StringUtils.replace(className, "EE9", "EE8");
        return className;
    }

    private static void changeEE9NameToEE8(NodeWithName n) {
        //org.eclipse.jetty.ee9.nested to org.eclipse.jetty.ee8.nested
        String currentName = n.getName().asString();
        String newName = changeEE9TypeToEE8(currentName);
        if(newName != null) {
            n.setName(newName);
        }
    }

    private static void changeEE9TypeToEE8(NodeWithType n) {
        //org.eclipse.jetty.ee9.nested to org.eclipse.jetty.ee8.nested
        String currentType = n.getTypeAsString();
        String newType = changeEE9TypeToEE8(currentType);
        if (newType != null ) {
            n.setType(newType);
        }
    }

    /**
     *
     * @param currentType
     * @return will return null if there is nothing to change
     */
    public static String changeEE9TypeToEE8(String currentType) {
        currentType = currentType.replaceFirst("Jakarta", "Javax");
        if (currentType.contains("jakarta")) {
            String newType = StringUtils.replace(currentType, "jakarta",
                    "javax");
            currentType = newType;
            if (!currentType.startsWith("org.eclipse.jetty.ee9")) {
                return currentType;
            }
        }
        //org.eclipse.jetty.ee9.nested to org.eclipse.jetty.ee8.nested
        if (currentType.startsWith("org.eclipse.jetty.ee9")) {
            String newType = StringUtils.replace(currentType, "org.eclipse.jetty.ee9", "org.eclipse.jetty.ee8");
            if(StringUtils.contains(newType, "EE9")) {
                newType = StringUtils.replace(newType, "EE9", "EE8");
            }
            if(StringUtils.contains(newType, "ee9")) {
                newType = StringUtils.replace(newType, "ee9", "ee8");
            }

            return newType;
        }
        return null;
    }

    private static boolean startsWith(String str, Collection startList) {
        return startList.stream().anyMatch(str::startsWith);
    }

    protected void setSourceProjectLocation(File sourceProjectLocation) {
        this.sourceProjectLocation = sourceProjectLocation;
    }

    protected void setMoveDirectoryStructure(boolean moveDirectoryStructure) {
        this.moveDirectoryStructure = moveDirectoryStructure;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy