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

ch.qos.cal10n.MessageConveyor Maven / Gradle / Ivy

There is a newer version: 3.0.0.Alpha1
Show newest version
/*
 * Copyright (c) 2009 QOS.ch All rights reserved.
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS  IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package ch.qos.cal10n;

import java.text.MessageFormat;
import java.util.Locale;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import ch.qos.cal10n.util.AnnotationExtractor;
import ch.qos.cal10n.util.CAL10NResourceBundle;
import ch.qos.cal10n.util.CAL10NResourceBundleFinder;

/**
 * The default implementation for {@link IMessageConveyor} based on resource
 * bundles.
 * 
 * 

* See also {@link #getMessage(Enum, Object...)} for details. * * @author Ceki Gülcü */ public class MessageConveyor implements IMessageConveyor { final Locale locale; final Map cache = new ConcurrentHashMap(); /** * The {@link Locale} associated with this instance. * * @param locale */ public MessageConveyor(Locale locale) { this.locale = locale; } /** * Given an enum as key, find the corresponding resource bundle and return * the corresponding internationalized. * *

* The name of the resource bundle is defined via the {@link BaseName} * annotation whereas the locale is specified in this MessageConveyor * instance's constructor. * * @param key * an enum instance used as message key * */ public > String getMessage(E key, Object... args) throws MessageConveyorException { String declararingClassName = key.getDeclaringClass().getName(); CAL10NResourceBundle rb = cache.get(declararingClassName); if (rb == null || rb.hasChanged()) { rb = lookup(key); cache.put(declararingClassName, rb); } String keyAsStr = key.toString(); String value = rb.getString(keyAsStr); if (value == null) { return "No key found for " + keyAsStr; } else { if (args == null || args.length == 0) { return value; } else { return MessageFormat.format(value, args); } } } private > CAL10NResourceBundle lookup(E key) throws MessageConveyorException { Class declaringClass = key.getDeclaringClass(); String baseName = AnnotationExtractor.getBaseName(key .getDeclaringClass()); if (baseName == null) { throw new MessageConveyorException( "Missing @BaseName annotation in enum type [" + key.getClass().getName() + "]. See also " + Cal10nConstants.MISSING_BN_ANNOTATION_URL); } String charset = AnnotationExtractor.getCharset(declaringClass, locale); // use the declaring class' loader instead of // this.getClass().getClassLoader() // see also http://jira.qos.ch/browse/CAL-8 CAL10NResourceBundle rb = CAL10NResourceBundleFinder.getBundle( declaringClass.getClassLoader(), baseName, locale, charset); if (rb == null) { throw new MessageConveyorException( "Failed to locate resource bundle [" + baseName + "] for locale [" + locale + "] for enum type [" + key.getDeclaringClass().getName() + "]"); } return rb; } public String getMessage(MessageParameterObj mpo) throws MessageConveyorException { if (mpo == null) { throw new IllegalArgumentException( "MessageParameterObj argumument cannot be null"); } return getMessage(mpo.getKey(), mpo.getArgs()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy