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

com.helger.commons.concurrent.SimpleReadWriteLock 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.concurrent;

import java.util.concurrent.locks.ReentrantReadWriteLock;
import java.util.function.BooleanSupplier;
import java.util.function.DoubleSupplier;
import java.util.function.IntSupplier;
import java.util.function.LongSupplier;
import java.util.function.Supplier;

import javax.annotation.Nonnull;

import com.helger.commons.callback.IThrowingRunnable;
import com.helger.commons.functional.IThrowingSupplier;

/**
 * This is an extension around {@link ReentrantReadWriteLock} that allows for
 * easy usage with Java 8 :) See {@link #readLocked(Runnable)} and
 * {@link #writeLocked(Runnable)} method. For throwing versions see
 * {@link #readLockedThrowing(IThrowingRunnable)} and
 * {@link #writeLockedThrowing(IThrowingRunnable)}. Also methods for callables
 * are available.
 *
 * @author Philip Helger
 */
public class SimpleReadWriteLock extends ReentrantReadWriteLock
{
  /**
   * Default constructor creating a default {@link ReentrantReadWriteLock}
   */
  public SimpleReadWriteLock ()
  {}

  /**
   * Constructor creating a {@link ReentrantReadWriteLock} with the provided
   * fairness
   *
   * @param bFair
   *        true if this lock should use a fair ordering policy
   */
  public SimpleReadWriteLock (final boolean bFair)
  {
    super (bFair);
  }

  /**
   * Execute the provided callable in a read lock. Note: no
   * nullable/non-nullable can be assumed.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   * @param 
   *        Return type
   */
  public  T readLockedGet (@Nonnull final Supplier  aSupplier)
  {
    readLock ().lock ();
    try
    {
      return aSupplier.get ();
    }
    finally
    {
      readLock ().unlock ();
    }
  }

  /**
   * Execute the provided runnable in a read lock.
   *
   * @param aRunnable
   *        Runnable to be executed. May not be null.
   */
  public void readLocked (@Nonnull final Runnable aRunnable)
  {
    readLock ().lock ();
    try
    {
      aRunnable.run ();
    }
    finally
    {
      readLock ().unlock ();
    }
  }

  /**
   * Execute the provided runnable in a read lock.
   *
   * @param aRunnable
   *        Runnable to be executed. May not be null.
   * @throws EXTYPE
   *         If the callable throws the exception
   * @param 
   *        Exception type to be thrown
   */
  public  void readLockedThrowing (@Nonnull final IThrowingRunnable  aRunnable) throws EXTYPE
  {
    readLock ().lock ();
    try
    {
      aRunnable.run ();
    }
    finally
    {
      readLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a read lock. Note: no
   * nullable/non-nullable can be assumed.
   *
   * @param aCallable
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   * @throws EXTYPE
   *         If the callable throws the exception
   * @param 
   *        Return type
   * @param 
   *        Exception type to be thrown
   */
  public  T readLockedGetThrowing (@Nonnull final IThrowingSupplier  aCallable) throws EXTYPE
  {
    readLock ().lock ();
    try
    {
      return aCallable.get ();
    }
    finally
    {
      readLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a read lock.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   */
  public boolean readLockedBoolean (@Nonnull final BooleanSupplier aSupplier)
  {
    readLock ().lock ();
    try
    {
      return aSupplier.getAsBoolean ();
    }
    finally
    {
      readLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a read lock.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   */
  public double readLockedDouble (@Nonnull final DoubleSupplier aSupplier)
  {
    readLock ().lock ();
    try
    {
      return aSupplier.getAsDouble ();
    }
    finally
    {
      readLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a read lock.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   */
  public int readLockedInt (@Nonnull final IntSupplier aSupplier)
  {
    readLock ().lock ();
    try
    {
      return aSupplier.getAsInt ();
    }
    finally
    {
      readLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a read lock.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   */
  public long readLockedLong (@Nonnull final LongSupplier aSupplier)
  {
    readLock ().lock ();
    try
    {
      return aSupplier.getAsLong ();
    }
    finally
    {
      readLock ().unlock ();
    }
  }

  /**
   * Execute the provided runnable in a write lock.
   *
   * @param aRunnable
   *        Runnable to be executed. May not be null.
   */
  public void writeLocked (@Nonnull final Runnable aRunnable)
  {
    writeLock ().lock ();
    try
    {
      aRunnable.run ();
    }
    finally
    {
      writeLock ().unlock ();
    }
  }

  /**
   * Execute the provided runnable in a write lock.
   *
   * @param aRunnable
   *        Runnable to be executed. May not be null.
   * @throws EXTYPE
   *         If the runnable throws the exception
   * @param 
   *        Exception type to be thrown
   */
  public  void writeLockedThrowing (@Nonnull final IThrowingRunnable  aRunnable) throws EXTYPE
  {
    writeLock ().lock ();
    try
    {
      aRunnable.run ();
    }
    finally
    {
      writeLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a write lock. Note: no
   * nullable/non-nullable can be assumed.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   * @param 
   *        Return type
   */
  public  T writeLockedGet (@Nonnull final Supplier  aSupplier)
  {
    writeLock ().lock ();
    try
    {
      return aSupplier.get ();
    }
    finally
    {
      writeLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a write lock. Note: no
   * nullable/non-nullable can be assumed.
   *
   * @param aCallable
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   * @throws EXTYPE
   *         If the callable throws the exception
   * @param 
   *        Return type
   * @param 
   *        Exception type to be thrown
   */
  public  T writeLockedGetThrowing (@Nonnull final IThrowingSupplier  aCallable) throws EXTYPE
  {
    writeLock ().lock ();
    try
    {
      return aCallable.get ();
    }
    finally
    {
      writeLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a write lock.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   */
  public boolean writeLockedBoolean (@Nonnull final BooleanSupplier aSupplier)
  {
    writeLock ().lock ();
    try
    {
      return aSupplier.getAsBoolean ();
    }
    finally
    {
      writeLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a write lock.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   */
  public double writeLockedDouble (@Nonnull final DoubleSupplier aSupplier)
  {
    writeLock ().lock ();
    try
    {
      return aSupplier.getAsDouble ();
    }
    finally
    {
      writeLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a write lock.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   */
  public int writeLockedInt (@Nonnull final IntSupplier aSupplier)
  {
    writeLock ().lock ();
    try
    {
      return aSupplier.getAsInt ();
    }
    finally
    {
      writeLock ().unlock ();
    }
  }

  /**
   * Execute the provided callable in a write lock.
   *
   * @param aSupplier
   *        Callable to be executed. May not be null.
   * @return The return value of the callable. May be null.
   */
  public long writeLockedLong (@Nonnull final LongSupplier aSupplier)
  {
    writeLock ().lock ();
    try
    {
      return aSupplier.getAsLong ();
    }
    finally
    {
      writeLock ().unlock ();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy