All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.logging.processor.util.TranslationHelper Maven / Gradle / Ivy

/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2016, Red Hat, Inc., and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This 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 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.jboss.logging.processor.util;

import java.io.File;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * Utility class to work with translation filename.
 *
 * @author Kevin Pollet - SERLI - ([email protected])
 */
public final class TranslationHelper {

    private static final String TRANSLATION_FILE_NAME_EXTENSION = ".properties";

    /**
     * Private constructor to
     * disable instantiation.
     */
    private TranslationHelper() {
    }

    /**
     * Get the class name suffix to be added to the
     * generated class for the given translation file name.
     *
     * @param translationFileName the translation file name
     *
     * @return the class name suffix corresponding to the given translation filename
     *
     * @throws IllegalArgumentException if translationFileName is null or not valid
     */
    public static String getTranslationClassNameSuffix(final String translationFileName) {
        if (translationFileName == null) {
            throw new IllegalArgumentException("The translationFileName parameter cannot be null");
        }

        Pattern pattern = Pattern.compile("[^_]*((_[^_.]*){1,3}).*");
        Matcher matcher = pattern.matcher(translationFileName);
        boolean found = matcher.find();

        if (!found) {
            throw new IllegalArgumentException("The given filename is not a valid property filename");
        }

        return matcher.group(1);
    }

    /**
     * Returns the enclosing translation file name for the given
     * translation file name.
     * 

* If the given translation file name is InterfaceName.i18n_locale * the given translation file name is returned. * * @param translationFile the translation file * * @return the enclosing file name * * @throws IllegalArgumentException if translationFileName is null */ public static String getEnclosingTranslationFileName(final File translationFile) { if (translationFile == null) { throw new IllegalArgumentException("The translationClassName parameter cannot be null"); } final String translationFileName = translationFile.getName(); int lastUnderscore = translationFileName.lastIndexOf('_'); if (translationFileName.indexOf('_') == lastUnderscore) { return translationFileName; } else { return translationFileName.substring(0, lastUnderscore).concat(TRANSLATION_FILE_NAME_EXTENSION); } } /** * Returns the enclosing translation class name for * the given translation class name. If the given translation * class name is the upper class name then the parameter class * name is returned. * * @param translationClassName the translation class name * * @return the enclosing class name * * @throws IllegalArgumentException if translationClassName is null */ public static String getEnclosingTranslationClassName(final String translationClassName) { if (translationClassName == null) { throw new IllegalArgumentException("The translationClassName parameter cannot be null"); } int lastUnderScore = translationClassName.lastIndexOf("_"); return lastUnderScore != -1 ? translationClassName.substring(0, lastUnderScore) : translationClassName; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy