blob: 50089d98e89ee73502703f052e899a7a203714cb [file] [log] [blame]
/*
* 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.myfaces.el;
import org.apache.myfaces.el.resolver.FlashELResolver;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import javax.el.ArrayELResolver;
import javax.el.BeanELResolver;
import javax.el.CompositeELResolver;
import javax.el.ELResolver;
import javax.el.ExpressionFactory;
import javax.el.ListELResolver;
import javax.el.MapELResolver;
import javax.el.ResourceBundleELResolver;
import javax.enterprise.inject.spi.BeanManager;
import javax.faces.context.FacesContext;
import org.apache.myfaces.cdi.util.CDIUtils;
import org.apache.myfaces.config.RuntimeConfig;
import org.apache.myfaces.el.resolver.CompositeComponentELResolver;
import org.apache.myfaces.el.resolver.FacesCompositeELResolver.Scope;
import org.apache.myfaces.el.resolver.ImportConstantsELResolver;
import org.apache.myfaces.el.resolver.ImportHandlerResolver;
import org.apache.myfaces.el.resolver.ResourceBundleResolver;
import org.apache.myfaces.el.resolver.ResourceResolver;
import org.apache.myfaces.el.resolver.ScopedAttributeResolver;
import org.apache.myfaces.el.resolver.implicitobject.ImplicitObjectResolver;
import org.apache.myfaces.config.MyfacesConfig;
import org.apache.myfaces.core.api.shared.lang.PropertyDescriptorUtils;
import org.apache.myfaces.el.resolver.LambdaBeanELResolver;
import org.apache.myfaces.util.lang.ClassUtils;
/**
* Create the el resolver for faces. see 1.2 spec section 5.6.2
*
* @author Mathias Broekelmann (latest modification by $Author$)
* @version $Revision$ $Date$
*/
public class ELResolverBuilderForFaces extends ELResolverBuilder
{
private static final Class STATIC_FIELD_EL_RESOLVER_CLASS;
private static final Method GET_STREAM_EL_RESOLVER_METHOD;
static
{
Class staticFieldELResolverClass = null;
Method getStreamELResolverMethod = null;
try
{
staticFieldELResolverClass = ClassUtils.classForName("javax.el.StaticFieldELResolver");
getStreamELResolverMethod = ExpressionFactory.class.getMethod("getStreamELResolver");
}
catch (NoSuchMethodException | SecurityException | ClassNotFoundException ex)
{
//No op
}
STATIC_FIELD_EL_RESOLVER_CLASS = staticFieldELResolverClass;
GET_STREAM_EL_RESOLVER_METHOD = getStreamELResolverMethod;
}
public ELResolverBuilderForFaces(RuntimeConfig runtimeConfig, MyfacesConfig myfacesConfig)
{
super(runtimeConfig, myfacesConfig);
}
@Override
public void build(FacesContext facesContext, CompositeELResolver compositeElResolver)
{
MyfacesConfig config = MyfacesConfig.getCurrentInstance(FacesContext.getCurrentInstance());
// add the ELResolvers to a List first to be able to sort them
List<ELResolver> list = new ArrayList<>();
// Add CDI ELResolver for JSF 2.3
if (isReplaceImplicitObjectResolverWithCDIResolver(facesContext))
{
list.add(ImplicitObjectResolver.makeResolverForFacesCDI());
list.add(getCDIELResolver());
}
else
{
list.add(ImplicitObjectResolver.makeResolverForFaces());
}
list.add(new CompositeComponentELResolver(config));
addFromRuntimeConfig(list);
//Flash object is instanceof Map, so it is necessary to resolve
//before MapELResolver. Better to put this one before
list.add(new FlashELResolver());
list.add(new ResourceResolver());
list.add(new ResourceBundleELResolver());
list.add(new ResourceBundleResolver());
list.add(new ImportConstantsELResolver());
if (STATIC_FIELD_EL_RESOLVER_CLASS != null &&
GET_STREAM_EL_RESOLVER_METHOD != null)
{
try
{
ELResolver streamElResolver = (ELResolver) GET_STREAM_EL_RESOLVER_METHOD.invoke(
runtimeConfig.getExpressionFactory());
if (streamElResolver != null)
{
// By default return null, but in a EL 3 implementation it should be there,
// this is just to avoid exceptions in junit testing
list.add(streamElResolver);
}
list.add((ELResolver) STATIC_FIELD_EL_RESOLVER_CLASS.newInstance());
}
catch (IllegalAccessException
| IllegalArgumentException
| InvocationTargetException
| InstantiationException ex)
{
}
}
list.add(new MapELResolver());
list.add(new ListELResolver());
list.add(new ArrayELResolver());
if (PropertyDescriptorUtils.isUseLambdaMetafactory(facesContext.getExternalContext()))
{
list.add(new LambdaBeanELResolver(facesContext.getExternalContext()));
}
else
{
list.add(new BeanELResolver());
}
// give the user a chance to sort the resolvers
sortELResolvers(list, Scope.Faces);
// give the user a chance to filter the resolvers
Iterable<ELResolver> filteredELResolvers = filterELResolvers(list, Scope.Faces);
// add the resolvers from the list to the CompositeELResolver
for (ELResolver resolver : filteredELResolvers)
{
compositeElResolver.add(resolver);
}
// Only add this resolver if the user wants to use the EL ImportHandler
if (config.isSupportEL3ImportHandler())
{
compositeElResolver.add(new ImportHandlerResolver());
}
// the ScopedAttributeResolver has to be the last one in every
// case, because it always sets propertyResolved to true (per the spec)
compositeElResolver.add(new ScopedAttributeResolver());
}
protected ELResolver getCDIELResolver()
{
BeanManager beanManager = CDIUtils.getBeanManager(
FacesContext.getCurrentInstance().getExternalContext());
return beanManager.getELResolver();
}
}