summaryrefslogtreecommitdiff
path: root/java/JACE/netsvcs/Token/RWMutexHandler.java
blob: 89dc679dd8d4dd7038c7bacf901e25c198c1d6d8 (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
package JACE.netsvcs.Token;

import JACE.Concurrency.*;

/**
 * LockHandler implementation for a reader/writer mutex lock.  
 * <P>
 * Since it uses RWMutex as the actual lock, it doesn't support
 * nested acquires.
 *
 *@see LockHandler
 */
public class RWMutexHandler extends LockHandlerAdapter
{
  static class ExtendedRWMutex extends RWMutex
  {
    // This is so that we don't make any assumptions about previous
    // implementations of LockAdapter, and enable owner checking with
    // the client ID from TokenRequest.  The thread name is set in
    // handleRequest.
    protected Object accessorID ()
    {
      return Thread.currentThread().getName();
    }
  }

  /**
   * Default constructor.
   */
  public RWMutexHandler ()
  {
    super (new ExtendedRWMutex ());
  }

  public TokenReply handleRequest (TokenRequestHandler caller,
				   TokenRequest request)
  {
    // Set the name of this thread to the client ID to perform
    // proper owner checking.
    Thread.currentThread().setName (request.clientID ());
    
    // process the request
    return super.handleRequest (caller, request);
  }

  public void abandonLock (String clientID)
  {
    // Set the name of this thread to the client ID to perform
    // proper owner checking.
    Thread.currentThread().setName (clientID);

    super.abandonLock (clientID);
  }
}