/* * $Id$ * * 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.struts2.components; import java.io.Writer; import java.util.Locale; import java.util.ResourceBundle; import org.apache.struts2.views.annotations.StrutsTag; import org.apache.struts2.views.annotations.StrutsTagAttribute; import org.apache.struts2.StrutsException; import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.LocaleProvider; import com.opensymphony.xwork2.TextProviderFactory; import com.opensymphony.xwork2.TextProvider; import com.opensymphony.xwork2.inject.Container; import com.opensymphony.xwork2.inject.Inject; import com.opensymphony.xwork2.util.LocalizedTextUtil; import com.opensymphony.xwork2.util.ValueStack; import com.opensymphony.xwork2.util.logging.Logger; import com.opensymphony.xwork2.util.logging.LoggerFactory; /** * <!-- START SNIPPET: javadoc --> * * Gets a resource bundle and place it on the value stack. This allows * the text tag to access messages from any bundle, and not just the bundle * associated with the current action. * * <!-- END SNIPPET: javadoc --> * * <p/> * * <!-- START SNIPPET: params--> * * <ul> * <li>name* - the resource bundle's name (eg foo/bar/customBundle)</li> * </ul> * * <!-- END SNIPPET: params --> * * <p/> * * Example: * * <pre> * <!-- START SNIPPET: example --> * * <s:i18n name="myCustomBundle"> * The i18n value for key aaa.bbb.ccc in myCustomBundle is <s:property value="text('aaa.bbb.ccc')" /> * </s:i18n> * * <!-- END SNIPPET: example --> * </pre> * * * <pre> * <!-- START SNIPPET: i18nExample --> * * <s:i18n name="some.package.bundle" > * <s:text name="some.key" /> * </s:i18n> * * <!-- END SNIPPET: i18nExample --> * </pre> * */ @StrutsTag(name="i18n", tldTagClass="org.apache.struts2.views.jsp.I18nTag", description="Get a resource bundle" + " and place it on the value stack") public class I18n extends Component { private static final Logger LOG = LoggerFactory.getLogger(I18n.class); protected boolean pushed; protected String name; protected Container container; private TextProvider textProvider; public I18n(ValueStack stack) { super(stack); } @Inject public void setContainer(Container container) { this.container = container; } public boolean start(Writer writer) { boolean result = super.start(writer); try { String name = this.findString(this.name, "name", "Resource bundle name is required. Example: foo or foo_en"); ResourceBundle bundle = (ResourceBundle) findValue("getTexts('" + name + "')"); if (bundle == null) { bundle = LocalizedTextUtil.findResourceBundle(name, (Locale) getStack().getContext().get(ActionContext.LOCALE)); } if (bundle != null) { final Locale locale = (Locale) getStack().getContext().get(ActionContext.LOCALE); TextProviderFactory tpf = new TextProviderFactory(); container.inject(tpf); textProvider = tpf.createInstance(bundle, new LocaleProvider() { public Locale getLocale() { return locale; } }); getStack().push(textProvider); pushed = true; } } catch (Exception e) { String msg = "Could not find the bundle " + name; throw new StrutsException(msg, e); } return result; } public boolean end(Writer writer, String body) throws StrutsException { if (pushed) { Object o = getStack().pop(); if ((o == null) || (!o.equals(textProvider))) { LOG.error("A closing i18n tag attempted to pop its own TextProvider from the top of the ValueStack but popped an unexpected object ("+(o != null ? o.getClass() : "null")+"). " + "Refactor the page within the i18n tags to ensure no objects are pushed onto the ValueStack without popping them prior to the closing tag. " + "If you see this message it's likely that the i18n's TextProvider is still on the stack and will continue to provide message resources after the closing tag."); throw new StrutsException("A closing i18n tag attempted to pop its TextProvider from the top of the ValueStack but popped an unexpected object ("+(o != null ? o.getClass() : "null")+")"); } } return super.end(writer, body); } @StrutsTagAttribute(description="Name of resource bundle to use (eg foo/bar/customBundle)", required=true, defaultValue="String") public void setName(String name) { this.name = name; } }