blob: 44a95ab737ab7692745006e00c423c1a986c8967 [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.spi;
import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import java.util.Map;
import javax.faces.FacesException;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import org.apache.myfaces.spi.impl.DefaultInjectionProviderFactory;
import org.apache.myfaces.spi.impl.SpiUtils;
public abstract class InjectionProviderFactory
{
private static final String FACTORY_KEY = InjectionProviderFactory.class.getName();
public static InjectionProviderFactory getInjectionProviderFactory()
{
// Since we always provide a StartupFacesContext on initialization time, this is safe:
return getInjectionProviderFactory(FacesContext.getCurrentInstance().getExternalContext());
}
public static InjectionProviderFactory getInjectionProviderFactory(ExternalContext ctx)
{
Map<String, Object> applicationMap = ctx.getApplicationMap();
InjectionProviderFactory instance =
(InjectionProviderFactory) applicationMap.get(FACTORY_KEY);
if (instance != null)
{
return instance;
}
InjectionProviderFactory lpf = null;
try
{
if (System.getSecurityManager() != null)
{
final ExternalContext ectx = ctx;
lpf = (InjectionProviderFactory) AccessController.doPrivileged(
(PrivilegedExceptionAction) () -> SpiUtils.build(ectx,
InjectionProviderFactory.class, DefaultInjectionProviderFactory.class));
}
else
{
lpf = (InjectionProviderFactory) SpiUtils.build(ctx,
InjectionProviderFactory.class,
DefaultInjectionProviderFactory.class);
}
}
catch (PrivilegedActionException pae)
{
throw new FacesException(pae);
}
if (lpf != null)
{
applicationMap.put(FACTORY_KEY, lpf);
}
return lpf;
}
public static void setInjectionProviderFactory(InjectionProviderFactory instance)
{
FacesContext.getCurrentInstance().getExternalContext().getApplicationMap().put(FACTORY_KEY, instance);
}
public abstract InjectionProvider getInjectionProvider(ExternalContext externalContext);
public abstract void release();
}