view dwt/internal/Lock.d @ 45:d8635bb48c7c

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents 380af2bdd8e5
children 6d9ec9ccdcdd
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module dwt.internal.Lock;

import tango.core.Thread;
import tango.core.sync.Mutex;
import tango.core.sync.Condition;
import tango.core.Exception;

import dwt.dwthelper.utils;

/**
 * Instances of this represent a recursive monitor.  Note that this
 * is an empty implementation which does not actually perform locking.
 */
public class Lock
{
    Mutex mutex;
    Condition cond;

    public this ()
    {
        mutex = new Mutex;
        cond = new Condition(mutex);
    }

    /**
     * Locks the monitor and returns the lock count. If
     * the lock is owned by another thread, wait until
     * the lock is released.
     *
     * @return the lock count
     */
    public int lock ()
    {
        synchronized (mutex)
        {
            Thread current = Thread.getThis();
            if (owner !is current)
            {
                waitCount++;
                while (count > 0)
                {
                    try
                    {
                        cond.wait();
                    }
                    catch (SyncException e)
                    {
                    }
                }
                --waitCount;
                owner = current;
            }
            return ++count;
        }
    }

    /**
     * Unlocks the monitor. If the current thread is not
     * the monitor owner, do nothing.
     */
    public void unlock ()
    {
        synchronized (mutex)
        {
            Thread current = Thread.getThis();
            if (owner is current)
            {
                if (--count is 0)
                {
                    owner = null;
                    if (waitCount > 0)
                        cond.notifyAll();
                }
            }
        }
    }
}