com.sun.faces.el.CompositeComponentAttributesELResolver Maven / Gradle / Ivy
Show all versions of jakarta.faces Show documentation
/*
* Copyright (c) 2023 Contributors to Eclipse Foundation.
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.faces.el;
import static com.sun.faces.component.CompositeComponentStackManager.StackType.Evaluation;
import static com.sun.faces.component.CompositeComponentStackManager.StackType.TreeCreation;
import static com.sun.faces.util.Util.notNull;
import com.sun.faces.component.CompositeComponentStackManager;
import jakarta.el.ELContext;
import jakarta.el.ELResolver;
import jakarta.el.MethodExpression;
import jakarta.el.ValueExpression;
import jakarta.faces.component.UIComponent;
import jakarta.faces.context.FacesContext;
import jakarta.faces.el.CompositeComponentExpressionHolder;
import java.beans.BeanInfo;
import java.beans.PropertyDescriptor;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
/**
*
* This {@link ELResolver} will handle the resolution of attrs
when processing a composite component
* instance.
*
*/
public class CompositeComponentAttributesELResolver extends ELResolver {
/**
* Implicit object related only to the cc implicitObject.
*/
private static final String COMPOSITE_COMPONENT_ATTRIBUTES_NAME = "attrs";
/**
* Implicit object related only to the cc implicit object and refers to the composite component parent (if any).
*/
private static final String COMPOSITE_COMPONENT_PARENT_NAME = "parent";
/**
* Key to which we store the mappings between composite component instances and their ExpressionEvalMap.
*/
private static final String EVAL_MAP_KEY = CompositeComponentAttributesELResolver.class.getName() + "_EVAL_MAP";
// ------------------------------------------------- Methods from ELResolver
/**
*
* If base
is a composite component and property
is attrs
, return a new
* ExpressionEvalMap
which wraps the composite component's attributes map.
*
*
*
* The ExpressionEvalMap
simple evaluates any {@link ValueExpression} instances stored in the composite
* component's attribute map and returns the result.
*
*
*
* If base
is a composite component and property
is parent
attempt to resolve the
* composite componet parent of the current composite component by calling
* {@link UIComponent#getCompositeComponentParent(jakarta.faces.component.UIComponent)}) and returning that value.
*
*
* @see jakarta.el.ELResolver#getValue(jakarta.el.ELContext, Object, Object)
* @see com.sun.faces.el.CompositeComponentAttributesELResolver.ExpressionEvalMap
*/
@Override
public Object getValue(ELContext context, Object base, Object property) {
notNull("context", context);
if (base instanceof UIComponent && UIComponent.isCompositeComponent((UIComponent) base) && property != null) {
String propertyName = property.toString();
if (COMPOSITE_COMPONENT_ATTRIBUTES_NAME.equals(propertyName)) {
UIComponent c = (UIComponent) base;
context.setPropertyResolved(true);
FacesContext ctx = (FacesContext) context.getContext(FacesContext.class);
return getEvalMapFor(c, ctx);
}
if (COMPOSITE_COMPONENT_PARENT_NAME.equals(propertyName)) {
UIComponent c = (UIComponent) base;
context.setPropertyResolved(true);
FacesContext ctx = (FacesContext) context.getContext(FacesContext.class);
CompositeComponentStackManager m = CompositeComponentStackManager.getManager(ctx);
UIComponent ccp = m.getParentCompositeComponent(TreeCreation, ctx, c);
if (ccp == null) {
ccp = m.getParentCompositeComponent(Evaluation, ctx, c);
}
return ccp;
}
}
return null;
}
/**
*
* Readonly, so return null
.
*
*
* @see ELResolver#getType(jakarta.el.ELContext, Object, Object)
*/
@Override
public Class> getType(ELContext context, Object base, Object property) {
notNull("context", context);
if (!(base instanceof ExpressionEvalMap && property instanceof String)) {
return null;
}
Class> exprType = null;
Class> metaType = null;
ExpressionEvalMap evalMap = (ExpressionEvalMap) base;
ValueExpression ve = evalMap.getExpression((String) property);
if (ve != null) {
exprType = ve.getType(context);
}
if (!"".equals(property)) {
FacesContext facesContext = (FacesContext) context.getContext(FacesContext.class);
UIComponent cc = UIComponent.getCurrentCompositeComponent(facesContext);
BeanInfo metadata = (BeanInfo) cc.getAttributes().get(UIComponent.BEANINFO_KEY);
assert null != metadata;
PropertyDescriptor[] attributes = metadata.getPropertyDescriptors();
if (null != attributes) {
for (PropertyDescriptor cur : attributes) {
if (property.equals(cur.getName())) {
Object type = cur.getValue("type");
if (null != type) {
assert type instanceof Class;
metaType = (Class>) type;
break;
}
}
}
}
}
if (metaType != null) {
// override exprType only if metaType is narrower:
if (exprType == null || exprType.isAssignableFrom(metaType)) {
context.setPropertyResolved(true);
return metaType;
}
}
return exprType;
}
/**
*
* This is a no-op.
*
*
* @see ELResolver#setValue(jakarta.el.ELContext, Object, Object, Object)
*/
@Override
public void setValue(ELContext context, Object base, Object property, Object value) {
notNull("context", context);
}
/**
*
* Readonly, so return true
*
*
* @see jakarta.el.ELResolver#isReadOnly(jakarta.el.ELContext, Object, Object)
*/
@Override
public boolean isReadOnly(ELContext context, Object base, Object property) {
notNull("context", context);
return true;
}
/**
*
* attrs
is considered a String
property.
*
*
* @see jakarta.el.ELResolver#getCommonPropertyType(jakarta.el.ELContext, Object)
*/
@Override
public Class> getCommonPropertyType(ELContext context, Object base) {
notNull("context", context);
return String.class;
}
// --------------------------------------------------------- Private Methods
/**
*
* Creates (if necessary) and caches an ExpressionEvalMap
instance associated with the owning
* {@link UIComponent}
*
*
* @param c the owning {@link UIComponent}
* @param ctx the {@link FacesContext} for the current request
* @return an ExpressionEvalMap
for the specified component
*/
public Map getEvalMapFor(UIComponent c, FacesContext ctx) {
Map