rwmutexhandler.java

来自「java版ace,java程序员值得一看」· Java 代码 · 共 55 行

JAVA
55
字号
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);
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?