Skip to content

Commit

Permalink
[MCOMPILER-205] Add a boolean to generate missing package-info classe…
Browse files Browse the repository at this point in the history
…s by default (#88)

* [MCOMPILER-205] Add a boolean to generate missing package-info classes by default
* [MCOMPILER-205] Add an integration test
  • Loading branch information
gnodet committed Feb 7, 2022
1 parent 12378bb commit 40dd50f
Show file tree
Hide file tree
Showing 6 changed files with 230 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/it/MCOMPILER-205/invoker.properties
@@ -0,0 +1,19 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

invoker.goals = clean compile
invoker.buildResult = success
44 changes: 44 additions & 0 deletions src/it/MCOMPILER-205/pom.xml
@@ -0,0 +1,44 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

<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>blah</groupId>
<artifactId>blah</artifactId>
<version>1.0</version>
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>@pom.version@</version>
</plugin>
</plugins>
</build>
</project>
28 changes: 28 additions & 0 deletions src/it/MCOMPILER-205/src/main/java/dummy/HelloWorld.java
@@ -0,0 +1,28 @@
package dummy;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/


public class HelloWorld
{
public static void main(String[] argv) {
System.out.println("Hello World");
}
}
23 changes: 23 additions & 0 deletions src/it/MCOMPILER-205/src/main/java/dummy/package-info.java
@@ -0,0 +1,23 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

/**
* This is the package javadoc
*/
package dummy;
21 changes: 21 additions & 0 deletions src/it/MCOMPILER-205/verify.groovy
@@ -0,0 +1,21 @@

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
def packageInfoClassFile = new File( basedir, 'target/classes/dummy/package-info.class' )
assert packageInfoClassFile.exists()
Expand Up @@ -82,6 +82,8 @@
import org.codehaus.plexus.compiler.util.scan.mapping.SuffixMapping;
import org.codehaus.plexus.languages.java.jpms.JavaModuleDescriptor;
import org.codehaus.plexus.languages.java.version.JavaVersion;
import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.Opcodes;

/**
* TODO: At least one step could be optimized, currently the plugin will do two
Expand Down Expand Up @@ -530,6 +532,18 @@ public abstract class AbstractCompilerMojo
@Parameter( defaultValue = "true", property = "maven.compiler.useIncrementalCompilation" )
private boolean useIncrementalCompilation = true;

/**
* Package info source files that only contain javadoc and no annotation on the package
* can lead to no class file being generated by the compiler. This causes a file miss
* on the next compilations and forces an unnecessary recompilation. The default value
* of <code>true</code> causes an empty class file to be generated. This behavior can
* be changed by setting this parameter to <code>false</code>.
*
* @since 3.10
*/
@Parameter( defaultValue = "true", property = "maven.compiler.createMissingPackageInfoClass" )
private boolean createMissingPackageInfoClass = true;

/**
* Resolves the artifacts needed.
*/
Expand Down Expand Up @@ -1192,6 +1206,21 @@ else if ( !values[0].equals( descriptor.name() ) )
throw new MojoExecutionException( "Fatal error compiling", e );
}

if ( createMissingPackageInfoClass && compilerResult.isSuccess()
&& compiler.getCompilerOutputStyle() == CompilerOutputStyle.ONE_OUTPUT_FILE_PER_INPUT_FILE )
{
try
{
SourceMapping sourceMapping = getSourceMapping( compilerConfiguration, compiler );
createMissingPackageInfoClasses( compilerConfiguration, sourceMapping, sources );
}
catch ( Exception e )
{
getLog().warn( "Error creating missing package info classes", e );

}
}

if ( useIncrementalCompilation )
{
if ( incrementalBuildHelperRequest.getOutputDirectory().exists() )
Expand Down Expand Up @@ -1296,6 +1325,72 @@ else if ( message.getKind() == CompilerMessage.Kind.WARNING
}
}

private void createMissingPackageInfoClasses( CompilerConfiguration compilerConfiguration,
SourceMapping sourceMapping,
Set<File> sources )
throws InclusionScanException, IOException
{
for ( File source : sources )
{
String path = source.toString();
if ( path.endsWith( File.separator + "package-info.java" ) )
{
for ( String root : getCompileSourceRoots() )
{
root = root + File.separator;
if ( path.startsWith( root ) )
{
String rel = path.substring( root.length() );
Set<File> files = sourceMapping.getTargetFiles( getOutputDirectory(), rel );
for ( File file : files )
{
if ( !file.exists() )
{
byte[] bytes = generatePackage( compilerConfiguration, rel );
Files.write( file.toPath(), bytes );
}
}
}
}
}
}
}

private byte[] generatePackage( CompilerConfiguration compilerConfiguration, String javaFile )
{
int version = getOpcode( compilerConfiguration );
ClassWriter cw = new ClassWriter( 0 );
cw.visitSource( "package-info.java", null );
cw.visit( version,
Opcodes.ACC_SYNTHETIC | Opcodes.ACC_ABSTRACT | Opcodes.ACC_INTERFACE,
javaFile.substring( 0, javaFile.length() - ".java".length() ),
null, "java/lang/Object", null );
return cw.toByteArray();
}

private int getOpcode( CompilerConfiguration compilerConfiguration )
{
String version = compilerConfiguration.getReleaseVersion();
if ( version == null )
{
version = compilerConfiguration.getTargetVersion();
if ( version == null )
{
version = "1.5";
}
}
if ( version.startsWith( "1." ) )
{
version = version.substring( 2 );
}
int iVersion = Integer.parseInt( version );
if ( iVersion < 2 )
{
throw new IllegalArgumentException( "Unsupported java version '" + version + "'" );
}
return iVersion - 2 + Opcodes.V1_2;
}

protected boolean isTestCompile()
{
return false;
Expand Down

0 comments on commit 40dd50f

Please sign in to comment.