org.apache.camel.maven.packaging.PrepareComponentMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-package-maven-plugin Show documentation
Show all versions of camel-package-maven-plugin Show documentation
Maven plugin to help package Camel components and plugins
/*
* 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.
*/
package org.apache.camel.maven.packaging;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.TreeSet;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.camel.tooling.util.Strings;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.apache.maven.project.MavenProjectHelper;
import org.sonatype.plexus.build.incremental.BuildContext;
import static org.apache.camel.tooling.util.PackageHelper.findCamelDirectory;
import static org.apache.camel.tooling.util.PackageHelper.loadText;
/**
* Prepares a Camel component analyzing if the maven module contains Camel
*
* - components
* - dataformats
* - languages
* - others
*
* And for each of those generates extra descriptors and schema files for easier
* auto-discovery in Camel and tooling.
*/
@Mojo(name = "prepare-components", threadSafe = true)
public class PrepareComponentMojo extends AbstractGeneratorMojo {
/**
* The output directory for generated components file
*/
@Parameter(defaultValue = "${project.basedir}/src/generated/java")
protected File configurerSourceOutDir;
/**
* The output directory for generated components file
*/
@Parameter(defaultValue = "${project.basedir}/src/generated/resources")
protected File configurerResourceOutDir;
/**
* The output directory for generated components file
*/
@Parameter(defaultValue = "${project.basedir}/src/generated/resources")
protected File componentOutDir;
/**
* The output directory for generated dataformats file
*/
@Parameter(defaultValue = "${project.basedir}/src/generated/resources")
protected File dataFormatOutDir;
/**
* The output directory for generated languages file
*/
@Parameter(defaultValue = "${project.basedir}/src/generated/resources")
protected File languageOutDir;
/**
* The output directory for generated others file
*/
@Parameter(defaultValue = "${project.basedir}/src/generated/resources")
protected File otherOutDir;
/**
* The output directory for generated schema file
*/
@Parameter(defaultValue = "${project.basedir}/src/generated/resources")
protected File schemaOutDir;
/**
* The project build directory
*/
@Parameter(defaultValue = "${project.build.directory}")
protected File buildDir;
@Parameter(defaultValue = "${camel-prepare-component}")
protected boolean prepareComponent;
@Override
public void execute(MavenProject project, MavenProjectHelper projectHelper, BuildContext buildContext) throws MojoFailureException, MojoExecutionException {
configurerSourceOutDir = new File(project.getBasedir(), "src/generated/java");
configurerResourceOutDir = componentOutDir
= dataFormatOutDir = languageOutDir
= otherOutDir = schemaOutDir
= new File(project.getBasedir(), "src/generated/resources");
buildDir = new File(project.getBuild().getDirectory());
prepareComponent = Boolean.parseBoolean(project.getProperties().getProperty("camel-prepare-component", "false"));
super.execute(project, projectHelper, buildContext);
}
/**
* Execute goal.
*
* @throws org.apache.maven.plugin.MojoExecutionException execution of the
* main class or one of the threads it generated failed.
* @throws org.apache.maven.plugin.MojoFailureException something bad
* happened...
*/
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
if (!prepareComponent) {
return;
}
int count = 0;
count += new PackageComponentMojo(getLog(), project, projectHelper, buildDir,
componentOutDir, buildContext).prepareComponent();
count += new PackageDataFormatMojo(getLog(), project, projectHelper, dataFormatOutDir, configurerSourceOutDir,
configurerResourceOutDir, schemaOutDir, buildContext).prepareDataFormat();
count += new PackageLanguageMojo(getLog(), project, projectHelper, buildDir, languageOutDir,
schemaOutDir, buildContext).prepareLanguage();
if (count == 0 && new File(project.getBasedir(), "src/main/java").isDirectory()) {
// okay its not any of the above then its other
new PackageOtherMojo(getLog(), project, projectHelper, otherOutDir,
schemaOutDir, buildContext).prepareOthers();
}
// whether to sync pom
Object val = project.getContextValue("syncPomFile");
// Update all component pom sync point
if (count > 0 && (val == null || val.equals("true"))) {
syncPomFile();
}
}
private void syncPomFile() throws MojoExecutionException {
Path root = findCamelDirectory(project.getBasedir(), "core/camel-allcomponents").toPath();
Path pomFile = root.resolve("pom.xml");
final String startDependenciesMarker = "";
final String endDependenciesMarker = " ";
if (!Files.isRegularFile(pomFile)) {
throw new MojoExecutionException("Pom file " + pomFile + " does not exist");
}
try {
final String pomText = loadText(pomFile);
final String before = Strings.before(pomText, startDependenciesMarker);
final String after = Strings.after(pomText, endDependenciesMarker);
final String between = pomText.substring(before.length(), pomText.length() - after.length());
Pattern pattern = Pattern.compile("\\s*(?.*) \\s*(?.*) \\s* ");
Matcher matcher = pattern.matcher(between);
TreeSet dependencies = new TreeSet<>();
while (matcher.find()) {
dependencies.add(matcher.group());
}
dependencies.add("\n"
+ "\t\t\t" + project.getGroupId() + " \n"
+ "\t\t\t" + project.getArtifactId() + " \n"
+ "\t\t ");
final String updatedPom = before + startDependenciesMarker + "\n\t\t"
+ String.join("\n\t\t", dependencies) + "\n\t"
+ endDependenciesMarker + after;
updateResource(buildContext, pomFile, updatedPom);
} catch (IOException e) {
throw new MojoExecutionException("Error reading file " + pomFile + " Reason: " + e, e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy