Package org.apache.wicket.markup.parser.filter

Source Code of org.apache.wicket.markup.parser.filter.WicketMessageTagHandler

/*
* 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.wicket.markup.parser.filter;

import java.text.ParseException;

import org.apache.wicket.Component;
import org.apache.wicket.MarkupContainer;
import org.apache.wicket.WicketRuntimeException;
import org.apache.wicket.behavior.Behavior;
import org.apache.wicket.markup.ComponentTag;
import org.apache.wicket.markup.MarkupElement;
import org.apache.wicket.markup.MarkupResourceStream;
import org.apache.wicket.markup.MarkupStream;
import org.apache.wicket.markup.html.TransparentWebMarkupContainer;
import org.apache.wicket.markup.html.WebComponent;
import org.apache.wicket.markup.parser.AbstractMarkupFilter;
import org.apache.wicket.markup.resolver.IComponentResolver;
import org.apache.wicket.util.string.Strings;


/**
* This is a markup inline filter and a component resolver. It identifies wicket:message attributes
* and adds an attribute modifier to the component tag that can localize
* wicket:message="attr-name:i18n-key,attr-name-2:i18n-key-2,..." expressions, replacing values of
* attributes specified by attr-name with a localizer lookup with key i18n-key. If an attribute
* being localized has a set value that value will be used as the default value for the localization
* lookup. This handler also resolves and localizes raw markup with wicket:message attribute.
*
* @author Juergen Donnerstag
* @author Igor Vaynberg
*/
public final class WicketMessageTagHandler extends AbstractMarkupFilter
  implements
    IComponentResolver
{
  /** */
  private static final long serialVersionUID = 1L;

  /**
   * The id automatically assigned to tags with wicket:message attribute but without id
   */
  public final static String WICKET_MESSAGE_CONTAINER_ID = "_message_attr_";

  /**
   * Constructor for the IComponentResolver role.
   */
  public WicketMessageTagHandler()
  {
    this(null);
  }

  /**
   * Constructor for the IMarkupFilter role.
   */
  public WicketMessageTagHandler(final MarkupResourceStream markupResourceStream)
  {
    super(markupResourceStream);
  }

  @Override
  protected final MarkupElement onComponentTag(ComponentTag tag) throws ParseException
  {
    if (tag.isClose())
    {
      return tag;
    }

    final String wicketMessageAttribute = tag.getAttributes().getString(
      getWicketMessageAttrName());

    if ((wicketMessageAttribute != null) && (wicketMessageAttribute.trim().length() > 0))
    {
      // check if this tag is raw markup
      if (tag.getId() == null)
      {
        // if this is a raw tag we need to set the id to something so
        // that wicket will not merge this as raw markup and instead
        // pass it on to a resolver
        tag.setId(WICKET_MESSAGE_CONTAINER_ID);
        tag.setAutoComponentTag(true);
        tag.setModified(true);
      }
      tag.addBehavior(new AttributeLocalizer(getWicketMessageAttrName()));
    }

    return tag;
  }

  /**
   * Attribute localizing behavior. See the javadoc of {@link WicketMessageTagHandler} for
   * details.
   *
   * @author Igor Vaynberg (ivaynberg)
   */
  public static class AttributeLocalizer extends Behavior
  {
    private static final long serialVersionUID = 1L;

    private final String wicketMessageAttrName;

    public AttributeLocalizer(String wicketMessageAttrName)
    {
      this.wicketMessageAttrName = wicketMessageAttrName;
    }
   
    @Override
    public void onComponentTag(final Component component, final ComponentTag tag)
    {
      String expr = tag.getAttributes().getString(wicketMessageAttrName);
      if (!Strings.isEmpty(expr))
      {
        expr = expr.trim();

        String[] attrsAndKeys = Strings.split(expr, ',');

        for (String attrAndKey : attrsAndKeys)
        {
          int colon = attrAndKey.lastIndexOf(":");
          // make sure the attribute-key pair is valid
          if (attrAndKey.length() < 3 || colon < 1 || colon > attrAndKey.length() - 2)
          {
            throw new WicketRuntimeException(
              "wicket:message attribute contains an invalid value [[" + expr +
                "]], must be of form (attr:key)+");
          }

          String attr = attrAndKey.substring(0, colon);
          String key = attrAndKey.substring(colon + 1);

          // we need to call the proper getString() method based on
          // whether or not we have a default value
          final String value;
          if (tag.getAttributes().containsKey(attr))
          {
            value = component.getString(key, null, tag.getAttributes().getString(attr));
          }
          else
          {
            value = component.getString(key);
          }
          tag.put(attr, value);
        }
      }
    }
  }

  @Override
  public Component resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
  {
    // localize any raw markup that has wicket:message attrs
    if ((tag != null) && (tag.getId().startsWith(WICKET_MESSAGE_CONTAINER_ID)))
    {
      Component wc = null;
      int autoIndex = container.getPage().getAutoIndex();
      String id = WICKET_MESSAGE_CONTAINER_ID + autoIndex;

      if (tag.isOpenClose())
      {
        wc = new WebComponent(id);
      }
      else
      {
        wc = new TransparentWebMarkupContainer(id);
      }

      return wc;
    }
    return null;
  }
 
  private String getWicketMessageAttrName()
  {
    String wicketNamespace = getWicketNamespace();
    return wicketNamespace + ':' + "message";
  }
}
TOP

Related Classes of org.apache.wicket.markup.parser.filter.WicketMessageTagHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.