/* * Copyright 2017 OmniFaces * * Licensed 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.omnifaces.cdi.viewscope; import static org.omnifaces.util.Beans.getReference; import java.lang.annotation.Annotation; import javax.enterprise.context.ContextNotActiveException; import javax.enterprise.context.spi.Context; import javax.enterprise.context.spi.Contextual; import javax.enterprise.context.spi.CreationalContext; import javax.faces.component.UIViewRoot; import javax.faces.context.FacesContext; import org.omnifaces.cdi.ViewScoped; /** * Provide a context for the <code>@</code>{@link ViewScoped} annotation wherein beans are managed by * {@link ViewScopeManager}. * * @author Radu Creanga {@literal <rdcrng@gmail.com>} * @author Bauke Scholtz * @see ViewScoped * @see ViewScopeManager * @since 1.6 */ public class ViewScopeContext implements Context { // Variables ------------------------------------------------------------------------------------------------------ private ViewScopeManager viewScopeManager; // Actions -------------------------------------------------------------------------------------------------------- /** * Returns {@link ViewScoped} class. */ @Override public Class<? extends Annotation> getScope() { return ViewScoped.class; } /** * Returns <code>true</code> if there is a {@link FacesContext}, and it has a {@link UIViewRoot}, and * {@link #isInitialized()} has returned <code>true</code>. */ @Override public boolean isActive() { FacesContext context = FacesContext.getCurrentInstance(); return context != null && context.getViewRoot() != null && isInitialized(); } @Override public <T> T get(Contextual<T> type) { checkActive(); return viewScopeManager.getBean(type); } @Override public <T> T get(Contextual<T> type, CreationalContext<T> context) { T instance = get(type); return (instance != null) ? instance : viewScopeManager.createBean(type, context); } // Helpers -------------------------------------------------------------------------------------------------------- /** * Check and initialize the view scope manager. * @return <code>true</code> if it has been initialized. */ private boolean isInitialized() { if (viewScopeManager == null) { viewScopeManager = getReference(ViewScopeManager.class); } return viewScopeManager != null; } /** * Throws {@link ContextNotActiveException} when {@link #isActive()} returns <code>false</code>. * @throws ContextNotActiveException When context is not active. */ private void checkActive() { if (!isActive()) { throw new ContextNotActiveException(); } } }