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

com.helger.commons.deadlock.ThreadDeadlockDetectionTimer Maven / Gradle / Ivy

There is a newer version: 11.1.10
Show newest version
/*
 * 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.commons.deadlock;

import java.util.Timer;
import java.util.TimerTask;

import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.NotThreadSafe;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.helger.commons.CGlobal;
import com.helger.commons.state.EChange;
import com.helger.commons.state.IStoppable;

/**
 * A dead lock detection timer that checks for dead locks in a certain interval.
 * Uses {@link ThreadDeadlockDetector} internally.
 *
 * @author Philip Helger
 */
@NotThreadSafe
public class ThreadDeadlockDetectionTimer extends ThreadDeadlockDetector implements IStoppable
{
  private final class DetectorTimerTask extends TimerTask
  {
    @Override
    public void run ()
    {
      ThreadDeadlockDetectionTimer.this.findDeadlockedThreads ();
    }
  }

  /**
   * The number of milliseconds between checking for deadlocks. It may be
   * expensive to check for deadlocks, and it is not critical to know so
   * quickly.
   */
  public static final long DEFAULT_DEADLOCK_CHECK_PERIOD = 10 * CGlobal.MILLISECONDS_PER_SECOND;
  public static final long INITIAL_DELAY_MS = 10;
  private static final Logger LOGGER = LoggerFactory.getLogger (ThreadDeadlockDetectionTimer.class);

  private final TimerTask m_aTimerTask;
  private final Timer m_aThreadCheck = new Timer ("ThreadDeadlockDetector", true);

  public ThreadDeadlockDetectionTimer ()
  {
    this (DEFAULT_DEADLOCK_CHECK_PERIOD);
  }

  public ThreadDeadlockDetectionTimer (@Nonnegative final long nDeadlockCheckPeriod)
  {
    m_aTimerTask = new DetectorTimerTask ();
    m_aThreadCheck.schedule (m_aTimerTask, INITIAL_DELAY_MS, nDeadlockCheckPeriod);
    LOGGER.info ("Deadlock detector started!");
  }

  /**
   * Stop the deadlock detection task
   *
   * @return {@link EChange}
   */
  @Nonnull
  public EChange stop ()
  {
    if (!m_aTimerTask.cancel ())
      return EChange.UNCHANGED;
    LOGGER.info ("Deadlock detector stopped!");
    return EChange.CHANGED;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy