/** * 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.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Properties; import java.util.Set; import java.util.TreeSet; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.project.MavenProject; import org.apache.maven.project.MavenProjectHelper; /** * Analyses the Camel EIPs in a project and generates extra descriptor information for easier auto-discovery in Camel. * * @goal generate-eips-list */ public class PackageModelMojo extends AbstractMojo { /** * The maven project. * * @parameter property="project" * @required * @readonly */ protected MavenProject project; /** * The camel-core directory * * @parameter default-value="${project.build.directory}" */ protected File buildDir; /** * The output directory for generated models file * * @parameter default-value="${project.build.directory}/generated/camel/models" */ protected File outDir; /** * Maven ProjectHelper. * * @component * @readonly */ private MavenProjectHelper projectHelper; /** * 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... */ public void execute() throws MojoExecutionException, MojoFailureException { File camelMetaDir = new File(outDir, "META-INF/services/org/apache/camel/"); Set<File> jsonFiles = new TreeSet<File>(); // find all json files in camel-core if (buildDir != null && buildDir.isDirectory()) { File target = new File(buildDir, "classes/org/apache/camel/model"); PackageHelper.findJsonFiles(target, jsonFiles, new PackageHelper.CamelComponentsModelFilter()); } File outFile = new File(camelMetaDir, "model.properties"); try { camelMetaDir.mkdirs(); Properties properties = new Properties(); properties.store(new FileWriter(outFile), "Generated by camel-package-maven-plugin"); List<String> models = new ArrayList<String>(); // sort the names for (File file : jsonFiles) { String name = file.getName(); if (name.endsWith(".json")) { // strip out .json from the name String modelName = name.substring(0, name.length() - 5); models.add(modelName); } } Collections.sort(models); FileOutputStream fos = new FileOutputStream(outFile, true); for (String name : models) { fos.write(name.getBytes()); fos.write("\n".getBytes()); } fos.close(); getLog().info("Generated " + outFile + " containing " + models.size() + " Camel models"); } catch (IOException e) { throw new MojoFailureException("Error writing to file " + outFile); } } }