
org.nuiton.i18n.plugin.GetterMojo Maven / Gradle / Ivy
/*
* #%L
* I18n :: Maven Plugin
* %%
* Copyright (C) 2007 - 2017 Code Lutin, Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
package org.nuiton.i18n.plugin;
import java.io.File;
import java.util.Arrays;
import java.util.Locale;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.util.DirectoryScanner;
import org.nuiton.io.SortedProperties;
import org.nuiton.plugin.PluginHelper;
/**
* Recupere les différents fichiers des parsers en un fichier de proprietes.
*
* @author Julien Ruchaud - [email protected]
*/
@Mojo(name = "get", defaultPhase = LifecyclePhase.GENERATE_RESOURCES)
@Execute(goal = "collect-i18n-artifacts")
public class GetterMojo extends AbstractI18nGenerateMojo {
/**
* To keep generated getter files.
*
* Note: By default, this property is not active.
*/
@Parameter(property = "i18n.keepGetters", defaultValue = "false")
private boolean keepGetters;
static final String FROM_GETTERS = "-fromGetters";
@Override
protected boolean checkSkip() {
boolean result = true;
if (!needGeneration()) {
getLog().info("No getter detected - all files are up to date.");
result = false;
}
return result;
}
@Override
protected void doAction() throws Exception {
if (!silent) {
getLog().info(String.format("config - basedir : %s", out.getAbsolutePath()));
getLog().info(String.format("config - locales : %s", Arrays.toString(locales)));
}
File bundleGetters = new File(out.getAbsoluteFile(),
artifactId + ".properties");
createDirectoryIfNecessary(bundleGetters.getParentFile());
SortedProperties propertiesOut = new SortedProperties(encoding);
DirectoryScanner ds = new DirectoryScanner();
ds.setBasedir(out);
ds.setIncludes(new String[]{"*.getter"});
ds.scan();
String[] files = ds.getIncludedFiles();
// Fusion des fichiers propriétés des différents parsers
for (String file : files) {
long t0 = System.nanoTime();
File bundleGetter = getGetterFile(out, file, false);
// chargement du getter
SortedProperties propertiesIn =
new SortedProperties(encoding).load(bundleGetter);
// ajout des entrées dans le bundle
propertiesOut.putAll(propertiesIn);
if (!keepGetters) {
if (isVerbose()) {
getLog().info(String.format("Will delete getter %s", bundleGetter));
}
deleteFile(bundleGetter);
}
if (!silent) {
String time = PluginHelper.convertTime(System.nanoTime() - t0);
getLog().info(String.format("import getter %s in %s", bundleGetter.getName(), time));
}
}
// sauvegarde du fichier des getters
propertiesOut.store(bundleGetters);
// Création des bundles
for (Locale locale : locales) {
if (getLog().isDebugEnabled()) {
getLog().debug(String.format("generate bundle for locale %s", locale));
}
File bundleOut = getI18nFile(out, artifactId + FROM_GETTERS, locale, false);
copyFile(bundleGetters, bundleOut);
if (!silent && verbose) {
getLog().info(String.format("generate bundle %s", locale));
}
}
if (!keepGetters) {
deleteFile(bundleGetters);
}
}
}