chapter 14
play

Chapter 14 Building Custom Synchronizers Alfred Theorin, Ph.D. - PowerPoint PPT Presentation

Chapter 14 Building Custom Synchronizers Alfred Theorin, Ph.D. student Department of Automatic Control Lund University Presentation Outline Why synchronizers Intrinsic condition queues Explicit conditions


  1. Chapter 14 Building Custom Synchronizers Alfred Theorin, Ph.D. student Department of Automatic Control Lund University

  2. Presentation Outline • Why synchronizers • Intrinsic condition queues • Explicit conditions • AbstractQueuedSynchronizer

  3. Example: No Synchronizer public class GrumpyBoundedBuffer { ... public synchronized void put(V v) throws BufferFullException { if (isFull) { throw new BufferFullException(); } doPut(v); } } Makes caller code really messy. Don't do this.

  4. Example: No Synchronizer public class SleepyBoundedBuffer { ... public void put(V v) throws InterruptedException { while (true) { synchronized (this) { if (!isFull) { doPut(v); return; } } Thread.sleep(...); // Busy wait vs unreponsive } }} Messy and inefficient. Don't do this.

  5. Why Synchronizers Efficient encapsulation of state-based preconditions

  6. Intrinsic Condition Queues: Precondition support for intrinsic locks public class Object { // Temporarily release lock, suspends thread public void wait() { ... } // Wake up one thread suspended on the lock public void notify() { ... } // Use with care! // Wake up all threads suspended on the lock public void notifyAll() { ... } ... } Caller must hold the intrinsic lock.

  7. Example: Intrinsic Condition Queues public class BoundedBuffer { ... public synchronized void put(V v) throws InterruptedException { while (isFull) { wait(); } doPut(v); notifyAll(); } }

  8. Intrinsic Condition Queues Drawbacks • Easy to make errors • One queue, possibly many preconditions • Tricky to encapsulate • Inheritance • Intrinsic lock Big Advantage • Easy to use

  9. Explicit Conditions: Conditions for an Explicit Lock public interface Condition { // Release lock temporarily, suspend thread public void await() { ... } // Careful, not wait // Wake up one thread suspended on this condition public void signal() { ... } // Wake up all threads suspended on this condition public void signalAll() { ... } ... } Caller "must" hold the explicit lock.

  10. Example: Explicit Conditions public class BoundedBuffer { private Condition nonFull = lock.newCondition(); private Condition nonEmpty = lock.newCondition(); public void put(V v) throws InterruptedException { lock.lock(); try { while (isFull) { nonFull.await(); } doPut(v); nonEmpty.signal(); } finally { lock.unlock(); }} ... }

  11. AbstractQueuedSynchronizer • Framework to build synchronizers • Used by many built-in synchronizers • Encapsulates the locking and the blocking

  12. Example: AbstractQueuedSynchronizer public class Latch { public void signal() { sync.releaseShared(0); } public void await() { sync.acquireShared(0); } private AQS sync = new AbstractQueuedSynchronizer() { public boolean tryReleaseShared(int ignored) { setState(1); return true; } public int tryAcquireShared(int ignored) { return (getState() == 1) ? 1 : -1; } }; }

  13. Summary • Why synchronizers • Intrinsic condition queues • Explicit conditions • AbstractQueuedSynchronizer

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend