Skip to content

Commit

Permalink
[MRRESOURCES-155] Allow to override bundle resources by project works…
Browse files Browse the repository at this point in the history
…pace files
  • Loading branch information
slawekjaranowski committed Dec 21, 2024
1 parent 800fe4f commit a6ef71e
Show file tree
Hide file tree
Showing 5 changed files with 189 additions and 36 deletions.
18 changes: 18 additions & 0 deletions src/it/process-project-file/common2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 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.

using project's workspace file
18 changes: 18 additions & 0 deletions src/it/process-project-file/invoker.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 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 = generate-resources
56 changes: 56 additions & 0 deletions src/it/process-project-file/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<?xml version='1.0' encoding='UTF-8'?>
<!--
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.apache.maven.its</groupId>
<artifactId>mrrp-process</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>@project.version@</version>
<configuration>
<resourceBundles>
<resourceBundle>org.apache.maven.its:mrrp-bundle-a:1.0-SNAPSHOT</resourceBundle>
</resourceBundles>
<useProjectFiles>true</useProjectFiles>
</configuration>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
28 changes: 28 additions & 0 deletions src/it/process-project-file/verify.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* 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.
*/

dir = new File( basedir, 'target/maven-shared-archive-resources' )

assert new File( dir, 'a/a.txt' ).text.contains( 'mrrp-bundle-a' )

assert new File( dir, 'common.txt' ).text.contains( 'mrrp-bundle-a' ) // bundle a is first in classpath
assert new File( dir, 'common-vm.txt' ).text.contains( 'mrrp-bundle-a org.apache.maven.its:mrrp-process' )

// bundle content overridden by local project's workspace file
assert new File( dir, 'common2.txt' ).text.contains( 'using project\'s workspace file' )
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,14 @@ public abstract class AbstractProcessRemoteResourcesMojo extends AbstractMojo {
@Parameter(defaultValue = "${project.build.outputTimestamp}")
private String outputTimestamp;

/**
* Indicate if project workspace files with teh same name should be used instead of from bundle.
*
* @since 3.3.0
*/
@Parameter(defaultValue = "false")
private boolean useProjectFiles;

/**
* Map of artifacts to supplemental project object models.
*/
Expand Down Expand Up @@ -605,7 +613,7 @@ protected Map<Organization, List<MavenProject>> getProjectsSortedByOrganization(
return organizations;
}

protected boolean copyResourceIfExists(File file, String relFileName, VelocityContext context)
protected boolean copyResourceIfExists(File outputFile, String relFileName, VelocityContext context)
throws IOException, MojoExecutionException {
for (Resource resource : project.getResources()) {
File resourceDirectory = new File(resource.getDirectory());
Expand All @@ -622,9 +630,10 @@ protected boolean copyResourceIfExists(File file, String relFileName, VelocityCo
source = templateSource;
}

if (source.exists() && !source.equals(file)) {
if (source.exists() && !source.equals(outputFile)) {
if (source == templateSource) {
try (CachingOutputStream os = new CachingOutputStream(file)) {
getLog().debug("Use project resource '" + source + "' as resource with Velocity");
try (CachingOutputStream os = new CachingOutputStream(outputFile)) {
try (Reader reader = getReader(source);
Writer writer = getWriter(os)) {
velocity.evaluate(context, writer, "", reader);
Expand All @@ -633,16 +642,18 @@ protected boolean copyResourceIfExists(File file, String relFileName, VelocityCo
}
}
} else if (resource.isFiltering()) {
getLog().debug("Use project resource '" + source + "' as resource with filtering");

MavenFileFilterRequest req = setupRequest(resource, source, file);
MavenFileFilterRequest req = setupRequest(resource, source, outputFile);

try {
fileFilter.copyFile(req);
} catch (MavenFilteringException e) {
throw new MojoExecutionException("Error filtering resource: " + source, e);
}
} else {
FilteringUtils.copyFile(source, file, null, null);
getLog().debug("Use project resource '" + source + "' as resource");
FilteringUtils.copyFile(source, outputFile, null, null);
}

// exclude the original (so eclipse doesn't complain about duplicate resources)
Expand All @@ -654,6 +665,21 @@ protected boolean copyResourceIfExists(File file, String relFileName, VelocityCo
return false;
}

private boolean copyProjectRootIfExists(File outputFile, String projectResource) throws IOException {
if (!useProjectFiles) {
return false;
}

File source = new File(project.getBasedir(), projectResource);
if (source.exists()) {
getLog().debug("Use project file '" + source + "' as resource");
FilteringUtils.copyFile(source, outputFile, null, null);
return true;
}

return false;
}

private Reader getReader(File source) throws IOException {
return Files.newBufferedReader(source.toPath(), Charset.forName(encoding));
}
Expand Down Expand Up @@ -906,46 +932,53 @@ protected void processResourceBundles(ClassLoader classLoader, VelocityContext c

// Don't overwrite resource that are already being provided.

File f = new File(outputDirectory, projectResource);
File outputFile = new File(outputDirectory, projectResource);

FileUtils.mkdir(outputFile.getParentFile().getAbsolutePath());

// resource exists in project resources
if (copyResourceIfExists(outputFile, projectResource, context)) {
continue;
}

FileUtils.mkdir(f.getParentFile().getAbsolutePath());
if (copyProjectRootIfExists(outputFile, projectResource)) {
continue;
}

if (!copyResourceIfExists(f, projectResource, context)) {
if (doVelocity) {
try (CachingOutputStream os = new CachingOutputStream(f)) {
String bundleEncoding = bundle.getSourceEncoding();
if (bundleEncoding == null) {
bundleEncoding = encoding;
}
try (Writer writer = new OutputStreamWriter(os, bundleEncoding)) {
velocity.mergeTemplate(bundleResource, bundleEncoding, context, writer);
}
if (doVelocity) {
try (CachingOutputStream os = new CachingOutputStream(outputFile)) {
String bundleEncoding = bundle.getSourceEncoding();
if (bundleEncoding == null) {
bundleEncoding = encoding;
}
} else {
URL resUrl = classLoader.getResource(bundleResource);
if (resUrl != null) {
FileUtils.copyURLToFile(resUrl, f);
try (Writer writer = new OutputStreamWriter(os, bundleEncoding)) {
velocity.mergeTemplate(bundleResource, bundleEncoding, context, writer);
}
}
} else {
URL resUrl = classLoader.getResource(bundleResource);
if (resUrl != null) {
FileUtils.copyURLToFile(resUrl, outputFile);
}
}

File appendedResourceFile = new File(appendedResourcesDirectory, projectResource);
File appendedVmResourceFile = new File(appendedResourcesDirectory, projectResource + ".vm");
File appendedResourceFile = new File(appendedResourcesDirectory, projectResource);
File appendedVmResourceFile = new File(appendedResourcesDirectory, projectResource + ".vm");

if (appendedResourceFile.exists()) {
getLog().info("Copying appended resource: " + projectResource);
try (InputStream in = Files.newInputStream(appendedResourceFile.toPath());
OutputStream out = new FileOutputStream(f, true)) {
IOUtil.copy(in, out);
}
if (appendedResourceFile.exists()) {
getLog().info("Copying appended resource: " + projectResource);
try (InputStream in = Files.newInputStream(appendedResourceFile.toPath());
OutputStream out = new FileOutputStream(outputFile, true)) {
IOUtil.copy(in, out);
}

} else if (appendedVmResourceFile.exists()) {
getLog().info("Filtering appended resource: " + projectResource + ".vm");
} else if (appendedVmResourceFile.exists()) {
getLog().info("Filtering appended resource: " + projectResource + ".vm");

try (Reader reader = new FileReader(appendedVmResourceFile);
Writer writer = getWriter(bundle, f)) {
Velocity.init();
Velocity.evaluate(context, writer, "remote-resources", reader);
}
try (Reader reader = new FileReader(appendedVmResourceFile);
Writer writer = getWriter(bundle, outputFile)) {
Velocity.init();
Velocity.evaluate(context, writer, "remote-resources", reader);
}
}
}
Expand Down

0 comments on commit a6ef71e

Please sign in to comment.