summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/RecursiveMutex.java
blob: 6c2136df05f6e8ddfea814853d91f35fc9f0d646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// **********************************************************************
//
// Copyright (c) 2001
// ZeroC, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************

package IceInternal;

public class RecursiveMutex
{
    public
    RecursiveMutex()
    {
        _owner = null;
        _locked = false;
        _count = 0;
    }

    public synchronized void
    lock()
    {
        if(_locked && Thread.currentThread() == _owner)
        {
            _count++;
            return;
        }

        while(_locked)
        {
            try
            {
                wait();
            }
            catch(InterruptedException ex)
            {
            }
        }

        assert(_owner == null && _count == 0);
        _locked = true;
        _owner = Thread.currentThread();
        _count = 1;
    }

    public synchronized boolean
    trylock()
    {
        if(_owner == null)
        {
            _owner = Thread.currentThread();
            _count = 1;
            _locked = true;
            return true;
        }

        if(_owner == Thread.currentThread())
        {
            assert(_count > 0);
            _count++;
            return true;
        }

        return false;
    }

    public synchronized void
    unlock()
    {
        assert(_owner == Thread.currentThread() && _count > 0 && _locked);
        _count--;
        if(_count <= 0)
        {
            _locked = false;
            _owner = null;
            notify();
        }
    }

    private Thread _owner;
    private boolean _locked;
    private int _count;
}