com.helger.commons.scope.ScopeHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-commons Show documentation
Show all versions of ph-commons Show documentation
Java 1.6+ Library with tons of utility classes required in all projects
/**
* Copyright (C) 2014-2016 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.commons.scope;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.GuardedBy;
import javax.annotation.concurrent.ThreadSafe;
import org.slf4j.Logger;
import com.helger.commons.concurrent.SimpleReadWriteLock;
/**
* Global scope utility methods that don't nicely fit somewhere else.
*
* @author Philip Helger
*/
@ThreadSafe
public final class ScopeHelper
{
public static final boolean DEFAULT_DEBUG_LIFE_CYCLE = false;
public static final boolean DEFAULT_DEBUG_GLOBAL_SCOPE = false;
public static final boolean DEFAULT_DEBUG_APPLICATION_SCOPE = false;
public static final boolean DEFAULT_DEBUG_SESSION_SCOPE = false;
public static final boolean DEFAULT_DEBUG_SESSION_APPLICATION_SCOPE = false;
public static final boolean DEFAULT_DEBUG_REQUEST_SCOPE = false;
public static final boolean DEFAULT_DEBUG_WITH_STACK_TRACE = false;
private static final SimpleReadWriteLock s_aRWLock = new SimpleReadWriteLock ();
@GuardedBy ("s_aRWLock")
private static boolean s_bDebugLifeCycle = DEFAULT_DEBUG_LIFE_CYCLE;
@GuardedBy ("s_aRWLock")
private static boolean s_bDebugGlobalScope = DEFAULT_DEBUG_GLOBAL_SCOPE;
@GuardedBy ("s_aRWLock")
private static boolean s_bDebugApplicationScope = DEFAULT_DEBUG_APPLICATION_SCOPE;
@GuardedBy ("s_aRWLock")
private static boolean s_bDebugSessionScope = DEFAULT_DEBUG_SESSION_SCOPE;
@GuardedBy ("s_aRWLock")
private static boolean s_bDebugSessionApplicationScope = DEFAULT_DEBUG_SESSION_APPLICATION_SCOPE;
@GuardedBy ("s_aRWLock")
private static boolean s_bDebugRequestScope = DEFAULT_DEBUG_REQUEST_SCOPE;
@GuardedBy ("s_aRWLock")
private static boolean s_bDebugWithStackTrace = DEFAULT_DEBUG_WITH_STACK_TRACE;
private ScopeHelper ()
{}
/**
* Enable or disable scope life cycle debugging for all scopes.
*
* @param bDebugLifeCycle
* true
if the scope life cycle should be debugged,
* false
to disable it. By default is is disabled.
*/
public static void setLifeCycleDebuggingEnabled (final boolean bDebugLifeCycle)
{
s_aRWLock.writeLocked ( () -> s_bDebugLifeCycle = bDebugLifeCycle);
}
/**
* @return true
if life cycle debugging for all scopes is
* enabled, false
if it is disabled. The default value is
* disabled.
*/
public static boolean isLifeCycleDebuggingEnabled ()
{
return s_aRWLock.readLocked ( () -> s_bDebugLifeCycle);
}
/**
* Enable or disable global scope life cycle debugging.
*
* @param bDebugScope
* true
if the global scope life cycle should be debugged,
* false
to disable it. By default is is disabled.
*/
public static void setDebugGlobalScopeEnabled (final boolean bDebugScope)
{
s_aRWLock.writeLocked ( () -> s_bDebugGlobalScope = bDebugScope);
}
/**
* @return true
if global scope life cycle debugging is enabled,
* false
if it is disabled. The default value is
* disabled.
*/
public static boolean isDebugGlobalScopeEnabled ()
{
return s_aRWLock.readLocked ( () -> s_bDebugGlobalScope);
}
/**
* Enable or disable application scope life cycle debugging.
*
* @param bDebugScope
* true
if the application scope life cycle should be
* debugged, false
to disable it. By default is is
* disabled.
*/
public static void setDebugApplicationScopeEnabled (final boolean bDebugScope)
{
s_aRWLock.writeLocked ( () -> s_bDebugApplicationScope = bDebugScope);
}
/**
* @return true
if application scope life cycle debugging is
* enabled, false
if it is disabled. The default value is
* disabled.
*/
public static boolean isDebugApplicationScopeEnabled ()
{
return s_aRWLock.readLocked ( () -> s_bDebugApplicationScope);
}
/**
* Enable or disable session scope life cycle debugging.
*
* @param bDebugScope
* true
if the session scope life cycle should be
* debugged, false
to disable it. By default is is
* disabled.
*/
public static void setDebugSessionScopeEnabled (final boolean bDebugScope)
{
s_aRWLock.writeLocked ( () -> s_bDebugSessionScope = bDebugScope);
}
/**
* @return true
if session scope life cycle debugging is enabled,
* false
if it is disabled. The default value is
* disabled.
*/
public static boolean isDebugSessionScopeEnabled ()
{
return s_aRWLock.readLocked ( () -> s_bDebugSessionScope);
}
/**
* Enable or disable session application scope life cycle debugging.
*
* @param bDebugScope
* true
if the session application scope life cycle should
* be debugged, false
to disable it. By default is is
* disabled.
*/
public static void setDebugSessionApplicationScopeEnabled (final boolean bDebugScope)
{
s_aRWLock.writeLocked ( () -> s_bDebugSessionApplicationScope = bDebugScope);
}
/**
* @return true
if session application scope life cycle debugging
* is enabled, false
if it is disabled. The default value
* is disabled.
*/
public static boolean isDebugSessionApplicationScopeEnabled ()
{
return s_aRWLock.readLocked ( () -> s_bDebugSessionApplicationScope);
}
/**
* Enable or disable request scope life cycle debugging.
*
* @param bDebugScope
* true
if the request scope life cycle should be
* debugged, false
to disable it. By default is is
* disabled.
*/
public static void setDebugRequestScopeEnabled (final boolean bDebugScope)
{
s_aRWLock.writeLocked ( () -> s_bDebugRequestScope = bDebugScope);
}
/**
* @return true
if request scope life cycle debugging is enabled,
* false
if it is disabled. The default value is
* disabled.
*/
public static boolean isDebugRequestScopeEnabled ()
{
return s_aRWLock.readLocked ( () -> s_bDebugRequestScope);
}
/**
* Enable or disable stack traces when debugging scopes.
*
* @param bDebugWithStackTrace
* true
to enable stack traces, false
to
* disable them. By default is is disabled.
*/
public static void setDebugWithStackTrace (final boolean bDebugWithStackTrace)
{
s_aRWLock.writeLocked ( () -> s_bDebugWithStackTrace = bDebugWithStackTrace);
}
/**
* @return true
if stack traces should be logged,
* false
if not. The default value is disabled.
*/
public static boolean isDebugWithStackTrace ()
{
return s_aRWLock.readLocked ( () -> s_bDebugWithStackTrace);
}
/**
* This is a just a helper method to determine whether global scope
* creation/deletion issues should be logged or not.
*
* @param aLogger
* The logger to check.
* @return true
if global scope creation/deletion should be
* logged, false
otherwise.
*/
public static boolean debugGlobalScopeLifeCycle (@Nonnull final Logger aLogger)
{
// Also debug scopes, if debug logging is enabled
if (aLogger.isDebugEnabled ())
return true;
return (isLifeCycleDebuggingEnabled () || isDebugGlobalScopeEnabled ()) && aLogger.isInfoEnabled ();
}
/**
* This is a just a helper method to determine whether application scope
* creation/deletion issues should be logged or not.
*
* @param aLogger
* The logger to check.
* @return true
if application scope creation/deletion should be
* logged, false
otherwise.
*/
public static boolean debugApplicationScopeLifeCycle (@Nonnull final Logger aLogger)
{
// Also debug scopes, if debug logging is enabled
if (aLogger.isDebugEnabled ())
return true;
return (isLifeCycleDebuggingEnabled () || isDebugApplicationScopeEnabled ()) && aLogger.isInfoEnabled ();
}
/**
* This is a just a helper method to determine whether session scope
* creation/deletion issues should be logged or not.
*
* @param aLogger
* The logger to check.
* @return true
if session scope creation/deletion should be
* logged, false
otherwise.
*/
public static boolean debugSessionScopeLifeCycle (@Nonnull final Logger aLogger)
{
// Also debug scopes, if debug logging is enabled
if (aLogger.isDebugEnabled ())
return true;
return (isLifeCycleDebuggingEnabled () || isDebugSessionScopeEnabled ()) && aLogger.isInfoEnabled ();
}
/**
* This is a just a helper method to determine whether global session
* application creation/deletion issues should be logged or not.
*
* @param aLogger
* The logger to check.
* @return true
if session application scope creation/deletion
* should be logged, false
otherwise.
*/
public static boolean debugSessionApplicationScopeLifeCycle (@Nonnull final Logger aLogger)
{
// Also debug scopes, if debug logging is enabled
if (aLogger.isDebugEnabled ())
return true;
return (isLifeCycleDebuggingEnabled () || isDebugSessionApplicationScopeEnabled ()) && aLogger.isInfoEnabled ();
}
/**
* This is a just a helper method to determine whether request scope
* creation/deletion issues should be logged or not.
*
* @param aLogger
* The logger to check.
* @return true
if request scope creation/deletion should be
* logged, false
otherwise.
*/
public static boolean debugRequestScopeLifeCycle (@Nonnull final Logger aLogger)
{
// Also debug scopes, if debug logging is enabled
if (aLogger.isDebugEnabled ())
return true;
return (isLifeCycleDebuggingEnabled () || isDebugRequestScopeEnabled ()) && aLogger.isInfoEnabled ();
}
/**
* @return An exception with the current stack trace or null
if
* {@link #isDebugWithStackTrace()} is false
* @see #isDebugWithStackTrace()
*/
@Nullable
public static Throwable getDebugStackTrace ()
{
return isDebugWithStackTrace () ? new Exception () : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy