All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.phloc.scopes.singleton.RequestSingleton Maven / Gradle / Ivy

There is a newer version: 6.4.4
Show newest version
/**
 * Copyright (C) 2006-2015 phloc systems
 * http://www.phloc.com
 * office[at]phloc[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.phloc.scopes.singleton;

import java.util.List;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import com.phloc.scopes.AbstractSingleton;
import com.phloc.scopes.domain.IRequestScope;
import com.phloc.scopes.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.phloc.scopes.mgr.EScope#REQUEST
 * @author Philip Helger
 */
public abstract class RequestSingleton extends AbstractSingleton
{
  protected RequestSingleton ()
  {
    super ("getRequestSingleton");
  }

  /**
   * @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 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
  protected 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 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  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
  public static final List  getAllRequestSingletons ()
  {
    return getAllSingletons (_getStaticScope (false), RequestSingleton.class);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy