alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.editor.view.spi;

/**
 * Mutex that allows only one thread to proceed
 * other threads must wait until the ONE finishes.
 * 
* The thread that "holds" the mutex (has the mutex access granted) * may reenter the mutex any number of times * (just increasing a "depth" of the locking). *
* If the priority thread enters waiting the mutex * then it will get serviced first once the current thread * leaves the mutex. * * @author Miloslav Metelka * @version 1.00 */ public class ViewHierarchyMutex { private Thread lockThread; private int lockDepth; private Thread waitingPriorityThread; public synchronized void lock() { Thread thread = Thread.currentThread(); boolean priorityThread = isPriorityThread(thread); if (thread != lockThread) { // not nested locking // Will wait if either there is another thread already holding the lock // or if there is a priority thread waiting but it's not this thread while (lockThread != null || (waitingPriorityThread != null && waitingPriorityThread != thread) ) { try { if (waitingPriorityThread == null && priorityThread) { waitingPriorityThread = thread; } wait(); } catch (InterruptedException e) { waitingPriorityThread = null; } } lockThread = thread; if (thread == waitingPriorityThread) { waitingPriorityThread = null; // it's now allowed to enter } } lockDepth++; } public synchronized void unlock() { if (Thread.currentThread() != lockThread) { throw new IllegalStateException("Not locker"); // NOI18N } if (--lockDepth == 0) { lockThread = null; notifyAll(); // must all to surely notify waitingPriorityThread too } } /** * This method is intended to be called by the non-priority thread * that acquired the mutex to check whether there * is no priority thread (such as AWT event-notification thread) * waiting. *
* If there is a priority thread waiting the non-priority thread * should attempt to stop its work as soon as possible and unlock * the hierarchy. *
* The method must *not* be called without first locking the hierarchy * (it is intentionally not synchronized). */ public boolean isPriorityThreadWaiting() { return (waitingPriorityThread != null); } protected boolean isPriorityThread(Thread thread) { return (thread != ViewLayoutQueue.getDefaultQueue().getWorkerThread()); } /** * Return the thread that holds a lock on this mutex. *
* This method is intended for diagnostic purposes only to determine * an intruder thread that entered the view hierarchy without obtaining * the lock first. * * @return thread that currently holds a lock on the hierarchy or null * if there is currently no thread holding a lock on the hierarchy. */ public final synchronized Thread getLockThread() { return lockThread; } }
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.