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

net.openhft.chronicle.hash.locks.InterProcessReadWriteUpdateLock Maven / Gradle / Ivy

/*
 * Copyright 2012-2018 Chronicle Map Contributors
 *
 * 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 net.openhft.chronicle.hash.locks;

import net.openhft.chronicle.hash.ExternalHashQueryContext;
import org.jetbrains.annotations.NotNull;

import java.util.concurrent.locks.ReadWriteLock;

/**
 * Tri-level lock, for efficient handling of concurrent accesses, that require different privileges.
 * For grasping multi-level lock concept and basic semantic principles, please read
 * {@link ReadWriteLock} documentation.
 * 

*

{@linkplain #readLock() Read lock} is for "readers". Multiple threads might hold read lock * simultaneously. Read lock held by any thread prevents write lock from being acquired. *

*

{@linkplain #updateLock() Update lock} is for writers, who must access the resource * exclusively with each other, but write safely for concurrent readers. Only one thread could hold * update or write lock at the same time, but update lock doesn't prevent concurrent readers * to come. *

*

{@linkplain #writeLock() Write lock} is for writers, which need total exclusiveness. When * write lock is held, nobody may access the resource at the same time. *

*

Same as {@link InterProcessLock} itself, the {@code InterProcessReadWriteUpdateLock} as a * whole is saturating: when stronger-level lock is acquired, all weaker-level locks * are thought to be acquired as well ("saturated"). Unlocking a weaker-level lock "desaturates" * it with stronger-level locks only. This means that try-finally pattern looks unusual:

{@code
 * l.writeLock().lock(); // acquires all three level locks
 * try {
 *     // do something
 * } finally {
 *     l.readLock().unlock();
 *     // l.writeLock().unlock(); - INCORRECT, because "desaturates" only write-level,
 *     // leaving read lock and update lock held
 * }}
* However, if you use {@code InterProcessReadWriteUpdateLock} as a part of {@link * ExternalHashQueryContext} query, you shouldn't keep this peculiarity in mind, because {@link * ExternalHashQueryContext#close()} handles unlocking for you. *

*

Any downgrades ("desaturations") are possible, but only update -> write upgrade is allowed. * This is so to prevent dead locks: for example, imagine, that two threads came and acquired read * locks, and then both try to upgrade to write lock, blocking each other indefinitely. *

*

This interface is based on this * work, might be useful to read to understand read-write-update lock idea, and how to use * this concept. *

*

Same as {@code InterProcessLock}, instances of this interface are for single-thread use * only. Views of the same inter-process lock should be obtained in different threads independently. * See {@link InterProcessLock} documentation for rationalization of this. * * @see InterProcessLock * @see ReadWriteLock */ public interface InterProcessReadWriteUpdateLock extends ReadWriteLock { /** * Returns the read-level lock. Calling {@link InterProcessLock#unlock() unlock()} on this * lock also releases the update and write locks, if held, as well. * * @return the read level lock */ @NotNull @Override InterProcessLock readLock(); /** * Returns the update-level lock. Calling {@link InterProcessLock#lock() lock()} or other * locking methods ({@code tryLock()}, etc.) on this lock acquires the read lock, as well. * Calling {@link InterProcessLock#unlock() unlock()} on this lock also releases the write lock. *

*

Any attempt to acquire this lock (including {@code tryLock()}, if the read lock is already * held by the current thread, but the update lock is not yet, is prevented by throwing {@link * IllegalMonitorStateException}. * * @return the update-level lock */ @NotNull InterProcessLock updateLock(); /** * Returns the write-level lock. Calling {@link InterProcessLock#lock() lock()} or other * locking methods ({@code tryLock()}, etc.) on this lock acquires the read and update locks, * as well. *

*

Any attempt to acquire this lock (including {@code tryLock()}, if the read lock is already * held by the current thread, but the update and write locks are not yet, is prevented by * throwing {@link IllegalMonitorStateException}. * * @return the update-level lock */ @NotNull @Override InterProcessLock writeLock(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy