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

react4j.arez.spy.ArezSpyUtil Maven / Gradle / Ivy

package react4j.arez.spy;

import arez.Arez;
import arez.ArezContext;

/**
 * Utility class for interacting with spy capabilities.
 */
public final class ArezSpyUtil
{
  private static final ReactArezConsoleSpyEventProcessor PROCESSOR =
    Arez.areSpiesEnabled() ? new ReactArezConsoleSpyEventProcessor() : null;
  private static boolean c_loggingEnabled;

  /**
   * Return true if spy event logging is enabled.
   */
  public static boolean isSpyEventLoggingEnabled()
  {
    return c_loggingEnabled;
  }

  /**
   * Enable console logging of all spy events.
   * This is a noop if spies are not enabled or logging has already been enabled.
   */
  public static void enableSpyEventLogging()
  {
    final ArezContext context = Arez.context();
    if ( Arez.areSpiesEnabled() && !isSpyEventLoggingEnabled() )
    {
      context.getSpy().addSpyEventHandler( PROCESSOR );
      c_loggingEnabled = true;
    }
  }

  /**
   * Disable console logging of all spy events.
   * This is a noop if spies are not enabled or logging is not enabled.
   */
  public static void disableSpyEventLogging()
  {
    final ArezContext context = Arez.context();
    if ( Arez.areSpiesEnabled() && isSpyEventLoggingEnabled() )
    {
      context.getSpy().removeSpyEventHandler( PROCESSOR );
      c_loggingEnabled = false;
    }
  }

  private ArezSpyUtil()
  {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy