Skip to content

Commit

Permalink
Support javac as a compiler for Tycho
Browse files Browse the repository at this point in the history
Currently Tycho is strictly using ecj as a compiler but in general it
might be there are situations one wants to use javac for compilation
even though it might not has full features supported (e.g. package
restrictions).

This is an attempt to make it possible to use javac at a very basic
level.
  • Loading branch information
laeubi committed Jan 11, 2024
1 parent 36fd6a9 commit 73c53cd
Show file tree
Hide file tree
Showing 9 changed files with 127 additions and 8 deletions.
5 changes: 5 additions & 0 deletions tycho-compiler-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@
<artifactId>bcel</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-javac</artifactId>
<version>2.14.2</version>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@
*/
public abstract class AbstractCompilerMojo extends AbstractMojo {

protected static final String JDT_COMPILER_ID = "jdt";

public static final String DEFAULT_SOURCE_VERSION = "11";

public static final String DEFAULT_TARGET_VERSION = "11";
Expand Down Expand Up @@ -144,8 +146,8 @@ public abstract class AbstractCompilerMojo extends AbstractMojo {
/**
* The compiler id of the compiler to use.
*/
@Parameter(property = "maven.compiler.compilerId", defaultValue = "jdt")
private String compilerId;
@Parameter(property = "maven.compiler.compilerId", defaultValue = JDT_COMPILER_ID)
protected String compilerId;

/**
* Version of the compiler to use, ex. "1.3", "1.5", if fork is set to true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ protected CompilerConfiguration getCompilerConfiguration(List<String> compileSou
List<Entry<String, String>> copy = new ArrayList<>(
compilerConfiguration.getCustomCompilerArgumentsEntries());
compilerConfiguration.getCustomCompilerArgumentsEntries().clear();
compilerConfiguration.addCompilerCustomArgument("-properties", prefsFilePath);
addCompilerCustomArgument(compilerConfiguration, "-properties", prefsFilePath);
compilerConfiguration.getCustomCompilerArgumentsEntries().addAll(copy);
}
}
Expand All @@ -738,7 +738,7 @@ protected CompilerConfiguration getCompilerConfiguration(List<String> compileSou
if (jreClasspathEntry.isModule()) {
Collection<String> modules = jreClasspathEntry.getLimitModules();
if (!modules.isEmpty()) {
compilerConfiguration.addCompilerCustomArgument("--limit-modules", String.join(",", modules));
addCompilerCustomArgument(compilerConfiguration, "--limit-modules", String.join(",", modules));
}
}
}
Expand Down Expand Up @@ -782,7 +782,7 @@ private void configureCompilerLog(CompilerConfiguration compilerConfiguration) t
fileExtension = "log";
}
logPath = logPath + logFileName + "." + fileExtension;
compilerConfiguration.addCompilerCustomArgument("-log", logPath);
addCompilerCustomArgument(compilerConfiguration, "-log", logPath);
}

private void configureBootclasspathAccessRules(CompilerConfiguration compilerConfiguration)
Expand Down Expand Up @@ -811,7 +811,7 @@ private void configureBootclasspathAccessRules(CompilerConfiguration compilerCon
.addAll(getBundleProject().getBootClasspathExtraAccessRules(DefaultReactorProject.adapt(project)));
}
if (!accessRules.isEmpty()) {
compilerConfiguration.addCompilerCustomArgument("org.osgi.framework.system.packages",
addCompilerCustomArgument(compilerConfiguration, "org.osgi.framework.system.packages",
toString(accessRules));
}
}
Expand All @@ -837,7 +837,7 @@ private void configureJavaHome(CompilerConfiguration compilerConfiguration) thro
.orElseThrow(() -> new MojoExecutionException(
"useJDK = BREE configured, but no toolchain of type 'jdk' with id '" + toolchainId
+ "' found. See https://maven.apache.org/guides/mini/guide-using-toolchains.html"));
compilerConfiguration.addCompilerCustomArgument("use.java.home", osgiToolchain.getJavaHome());
addCompilerCustomArgument(compilerConfiguration, "use.java.home", osgiToolchain.getJavaHome());
configureBootClassPath(compilerConfiguration, osgiToolchain);
}
}
Expand All @@ -851,14 +851,20 @@ private void configureBootClassPath(CompilerConfiguration compilerConfiguration,
if (includeParent != null) {
Xpp3Dom[] includes = includeParent.getChildren("include");
if (includes.length > 0) {
compilerConfiguration.addCompilerCustomArgument("-bootclasspath", scanBootclasspath(
addCompilerCustomArgument(compilerConfiguration, "-bootclasspath", scanBootclasspath(
osgiToolchain.getJavaHome(), includes, bootClassPath.getChild("excludes")));
}
}
}
}
}

protected void addCompilerCustomArgument(CompilerConfiguration compilerConfiguration, String key, String value) {
if (JDT_COMPILER_ID.equals(compilerId)) {
compilerConfiguration.addCompilerCustomArgument(key, value);
}
}

private String scanBootclasspath(String javaHome, Xpp3Dom[] includes, Xpp3Dom excludeParent) {
DirectoryScanner scanner = new DirectoryScanner();
scanner.setBasedir(javaHome);
Expand Down
36 changes: 36 additions & 0 deletions tycho-its/projects/tycho-compiler-plugin/javac/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.eclipse.tycho.it</groupId>
<artifactId>javac.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho-version>5.0.0-SNAPSHOT</tycho-version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<compilerId>javac</compilerId>
</configuration>
</plugin>
</plugins>
</build>

<modules>
<module>simple</module>
</modules>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: simple
Bundle-Version: 1.0.0.qualifier
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.
13 changes: 13 additions & 0 deletions tycho-its/projects/tycho-compiler-plugin/javac/simple/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.tycho.it</groupId>
<artifactId>javac.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>simple</artifactId>

<packaging>eclipse-plugin</packaging>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*******************************************************************************
* Copyright (c) 2012 SAP AG and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* SAP AG - initial API and implementation
*******************************************************************************/

public class Test
{
public static void main(String[] args) {
int a = 0;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*******************************************************************************
* Copyright (c) 2024 Christoph Läubrich and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Christoph Läubrich - initial API and implementation
*******************************************************************************/
package org.eclipse.tycho.test;

import org.apache.maven.it.Verifier;
import org.junit.Test;

/**
* Test for the tycho-compiler-plugin
*/
public class CompilerPluginTest extends AbstractTychoIntegrationTest {

@Test
public void testJavac() throws Exception {
Verifier verifier = getVerifier("tycho-compiler-plugin/javac", true, true);
verifier.executeGoal("compile");
verifier.verifyErrorFreeLog();
}

}

0 comments on commit 73c53cd

Please sign in to comment.