Package org.apache.myfaces.tobago.facelets

Source Code of org.apache.myfaces.tobago.facelets.AttributeHandler

package org.apache.myfaces.tobago.facelets;

/*
* 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.
*/

import javax.el.ELException;
import javax.el.MethodExpression;
import javax.el.ExpressionFactory;
import javax.el.ValueExpression;
import javax.faces.FacesException;
import javax.faces.convert.Converter;
import javax.faces.component.UIComponent;
import javax.faces.component.EditableValueHolder;
import javax.faces.component.ActionSource;
import javax.faces.component.ValueHolder;

import com.sun.facelets.FaceletContext;
import com.sun.facelets.el.ELAdaptor;
import com.sun.facelets.el.LegacyMethodBinding;
import com.sun.facelets.el.TagMethodExpression;
import com.sun.facelets.tag.TagAttribute;
import com.sun.facelets.tag.TagConfig;
import com.sun.facelets.tag.TagException;
import com.sun.facelets.tag.TagHandler;
import com.sun.facelets.tag.jsf.ComponentSupport;
import org.apache.myfaces.tobago.TobagoConstants;
import org.apache.myfaces.tobago.component.ComponentUtil;
import org.apache.myfaces.tobago.component.UICommand;
import org.apache.myfaces.tobago.component.SupportsMarkup;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;


public final class AttributeHandler extends TagHandler {
  private static final Log LOG = LogFactory.getLog(AttributeHandler.class);

  private final TagAttribute name;

  private final TagAttribute value;

  public AttributeHandler(TagConfig config) {
    super(config);
    this.name = getRequiredAttribute(TobagoConstants.ATTR_NAME);
    this.value = getRequiredAttribute(TobagoConstants.ATTR_VALUE);
  }

  public void apply(FaceletContext faceletContext, UIComponent parent)
      throws FacesException, ELException {
    if (parent == null) {
      throw new TagException(tag, "Parent UIComponent was null");
    }

    if (ComponentSupport.isNew(parent)) {
      String nameValue = name.getValue(faceletContext);
      if (TobagoConstants.ATTR_RENDERED.equals(nameValue)) {
        if (value.isLiteral()) {
          parent.setRendered(value.getBoolean(faceletContext));
        } else {
          ELAdaptor.setExpression(parent, nameValue, value.getValueExpression(faceletContext, Object.class));
        }
      } else if (TobagoConstants.ATTR_RENDERED_PARTIALLY.equals(nameValue) && parent instanceof UICommand) {
        // TODO expression
        ComponentUtil.setRenderedPartially((UICommand) parent, value.getValue());
      } else if (TobagoConstants.ATTR_STYLE_CLASS.equals(nameValue)) {
        // TODO expression
        ComponentUtil.setStyleClasses(parent, value.getValue());
      } else if (TobagoConstants.ATTR_MARKUP.equals(nameValue)) {
        if (parent instanceof SupportsMarkup) {
          if (value.isLiteral()) {
            ComponentUtil.setMarkup(parent, value.getValue());
          } else {
            ValueExpression expression = value.getValueExpression(faceletContext, Object.class);
            ELAdaptor.setExpression(parent, nameValue, expression);
          }
        } else {
          LOG.error("Component is not instanceof SupportsMarkup. Instance is: " + parent.getClass().getName());
        }
      } else if (parent instanceof EditableValueHolder && TobagoConstants.ATTR_VALIDATOR.equals(nameValue)) {
        MethodExpression methodExpression = getMethodExpression(faceletContext, null, ComponentUtil.VALIDATOR_ARGS);
        if (methodExpression != null) {
          // TODO jsf 1.2
          ((EditableValueHolder) parent).setValidator(new LegacyMethodBinding(methodExpression));
        }
      } else if (parent instanceof ValueHolder && TobagoConstants.ATTR_CONVERTER.equals(nameValue)) {
        setConverter(faceletContext, parent, nameValue)
      } else if (parent instanceof EditableValueHolder
          && TobagoConstants.ATTR_VALUE_CHANGE_LISTENER.equals(nameValue)) {
        MethodExpression methodExpression =
            getMethodExpression(faceletContext, null, ComponentUtil.VALUE_CHANGE_LISTENER_ARGS);
        if (methodExpression != null) {
          // TODO jsf 1.2
          ((EditableValueHolder) parent).setValueChangeListener(new LegacyMethodBinding(methodExpression));
        }
      } else if (parent instanceof ActionSource && TobagoConstants.ATTR_ACTION.equals(nameValue)) {
        MethodExpression action = getMethodExpression(faceletContext, String.class, ComponentUtil.ACTION_ARGS);
        if (action != null) {
          // TODO jsf 1.2
          ((ActionSource) parent).setAction(new LegacyMethodBinding(action));
        }
      } else if (parent instanceof ActionSource && TobagoConstants.ATTR_ACTION_LISTENER.equals(nameValue)) {
        MethodExpression action = getMethodExpression(faceletContext, null, ComponentUtil.ACTION_LISTENER_ARGS);
        if (action != null) {
          // TODO jsf 1.2
          ((ActionSource) parent).setActionListener(new LegacyMethodBinding(action));
        }
      } else if (!parent.getAttributes().containsKey(nameValue)) {
        if (value.isLiteral()) {
          parent.getAttributes().put(nameValue, value.getValue());
        } else {
          ELAdaptor.setExpression(parent, nameValue, value.getValueExpression(faceletContext, Object.class));
        }
      }
    }
  }

  private MethodExpression getMethodExpression(FaceletContext faceletContext, Class returnType, Class[] args) {
    // in a composition may be we get the method expression string from the current variable mapper
    // the expression can be empty
    // in this case return nothing
    if (value.getValue().startsWith("${")) {
      String myValue = value.getValue().replaceAll("(\\$\\{)|(\\})", "");
      ValueExpression expression = faceletContext.getVariableMapper().resolveVariable(myValue);
      if (expression != null) {
        ExpressionFactory expressionFactory = faceletContext.getExpressionFactory();
        return new TagMethodExpression(value, expressionFactory.createMethodExpression(faceletContext,
            expression.getExpressionString(), returnType, args));
      }
    } else {
      return value.getMethodExpression(faceletContext, returnType, args);
    }
    return null;
  }

  private void setConverter(FaceletContext faceletContext, UIComponent parent, String nameValue) {
    // in a composition may be we get the converter expression string from the current variable mapper
    // the expression can be empty
    // in this case return nothing
    if (value.getValue().startsWith("${")) {
      String myValue = value.getValue().replaceAll("(\\$\\{)|(\\})", "");
      ValueExpression expression = faceletContext.getVariableMapper().resolveVariable(myValue);
      if (expression != null) {
        setConverter(faceletContext, parent, nameValue, expression);
      }
    } else {
      setConverter(faceletContext, parent, nameValue, value.getValueExpression(faceletContext, Object.class));
    }
  }

  private void setConverter(FaceletContext faceletContext, UIComponent parent, String nameValue,
      ValueExpression expression) {
    if (expression.isLiteralText()) {
      Converter converter =
          faceletContext.getFacesContext().getApplication().createConverter(expression.getExpressionString());
      ((ValueHolder) parent).setConverter(converter);
    } else {
      ELAdaptor.setExpression(parent, nameValue, expression);
    }
  }
}
TOP

Related Classes of org.apache.myfaces.tobago.facelets.AttributeHandler

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.