com.astamuse.asta4d.util.i18n.ResourceBundleHelperBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asta4d-core Show documentation
Show all versions of asta4d-core Show documentation
core functionalities of asta4d framework, including template and snippt implemention
/*
* Copyright 2012 astamuse company,Ltd.
*
* Licensed 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 com.astamuse.asta4d.util.i18n;
import java.util.Locale;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.astamuse.asta4d.Configuration;
import com.astamuse.asta4d.Context;
import com.astamuse.asta4d.util.i18n.format.PlaceholderFormatter;
public abstract class ResourceBundleHelperBase {
private final static Logger LOGGER = LoggerFactory.getLogger(ResourceBundleHelperBase.class);
private Locale locale = Context.getCurrentThreadContext().getCurrentLocale();
private PlaceholderFormatter formatter = Configuration.getConfiguration().getPlaceholderFormatter();
public ResourceBundleHelperBase(Locale locale, PlaceholderFormatter formatter) {
this.locale = locale;
this.formatter = formatter;
}
public ResourceBundleHelperBase(Locale locale) {
this(locale, Configuration.getConfiguration().getPlaceholderFormatter());
}
public ResourceBundleHelperBase(PlaceholderFormatter formatter) {
this(Context.getCurrentThreadContext().getCurrentLocale(), formatter);
}
public ResourceBundleHelperBase() {
this(Context.getCurrentThreadContext().getCurrentLocale(), Configuration.getConfiguration().getPlaceholderFormatter());
}
protected Locale getLocale() {
return locale;
}
protected PlaceholderFormatter getFormatter() {
return this.formatter;
}
public ExternalParamValue getExternalParamValue(String key, Object value) {
return new ExternalParamValue(getFormatter(), locale, key, value);
}
private class ExternalParamValue {
private final PlaceholderFormatter formatter;
private final Locale locale;
private final String key;
private final Object value;
public ExternalParamValue(PlaceholderFormatter formatter, Locale locale, String key, Object value) {
this.value = value;
this.formatter = formatter;
this.locale = locale;
this.key = key;
}
/**
* This method will be invoked implicitly from ResourceBundleUtil. When it tries to write this instance as a value to certain
* parameter, here we retrieve the message again by ResourceBundleUtil.
*/
@Override
public String toString() {
String msgKey = key + '.' + value;
return ResourceBundleUtil.getMessage(formatter, locale, msgKey, value.toString(), null);
}
}
}