com.helger.scope.singleton.AbstractRequestSingleton Maven / Gradle / Ivy
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* 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 com.helger.scope.singleton;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.impl.ICommonsList;
import com.helger.scope.IRequestScope;
import com.helger.scope.mgr.ScopeManager;
/**
* This is the base class for singleton objects that reside in the request
* scope. This class can be used for web scopes and non-web scopes as it handled
* in the same object.
*
* @see com.helger.scope.mgr.EScope#REQUEST
* @author Philip Helger
*/
public abstract class AbstractRequestSingleton extends AbstractSingleton
{
protected AbstractRequestSingleton ()
{}
/**
* @param bMustBePresent
* true
if a request scope must be present,
* false
if it is optional
* @return The scope to be used for this type of singleton.
*/
@Nullable
private static IRequestScope _getStaticScope (final boolean bMustBePresent)
{
return bMustBePresent ? ScopeManager.getRequestScope () : ScopeManager.getRequestScopeOrNull ();
}
/**
* Get the singleton object in the current request scope, using the passed
* class. If the singleton is not yet instantiated, a new instance is created.
*
* @param
* The type to be returned
* @param aClass
* The class to be used. May not be null
. The class must
* be public as needs to have a public no-argument constructor.
* @return The singleton object and never null
.
*/
@Nonnull
public static final T getRequestSingleton (@Nonnull final Class aClass)
{
return getSingleton (_getStaticScope (true), aClass);
}
/**
* Get the singleton object if it is already instantiated inside the current
* request scope or null
if it is not instantiated.
*
* @param
* The type to be returned
* @param aClass
* The class to be checked. May not be null
.
* @return The singleton for the specified class is already instantiated,
* null
otherwise.
*/
@Nullable
public static final T getRequestSingletonIfInstantiated (@Nonnull final Class aClass)
{
return getSingletonIfInstantiated (_getStaticScope (false), aClass);
}
/**
* Check if a singleton is already instantiated inside the current request
* scope
*
* @param aClass
* The class to be checked. May not be null
.
* @return true
if the singleton for the specified class is
* already instantiated, false
otherwise.
*/
public static final boolean isRequestSingletonInstantiated (@Nonnull final Class extends AbstractRequestSingleton> aClass)
{
return isSingletonInstantiated (_getStaticScope (false), aClass);
}
/**
* Get all instantiated singleton objects registered in the current request
* scope.
*
* @return A non-null
list with all instances of this class in
* the current request scope.
*/
@Nonnull
@ReturnsMutableCopy
public static final ICommonsList getAllRequestSingletons ()
{
return getAllSingletons (_getStaticScope (false), AbstractRequestSingleton.class);
}
}