Synchronizing blocks instead of entire methods : Lock Synchronize « Threads « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Threads » Lock SynchronizeScreenshots 
Synchronizing blocks instead of entire methods
Synchronizing blocks instead of entire methods

// : c13:CriticalSection.java
// Synchronizing blocks instead of entire methods. Also
// demonstrates protection of a non-thread-safe class
// with a thread-safe one.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

import java.util.ArrayList;
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;

public class CriticalSection {
  public static void main(String[] args) {
    // Test the two different approaches:
    final PairManipulator pm1 = new PairManipulator(new PairManager1()), pm2 = new PairManipulator(
        new PairManager2());
    new Timer(true).schedule(new TimerTask() {
      public void run() {
        System.out.println("pm1: " + pm1);
        System.out.println("pm2: " + pm2);
        System.exit(0);
      }
    }500)// run() after 500 milliseconds
  }
///:~



class Pair // Not thread-safe
  private int x, y;

  public Pair(int x, int y) {
    this.x = x;
    this.y = y;
  }

  public Pair() {
    this(00);
  }

  public int getX() {
    return x;
  }

  public int getY() {
    return y;
  }

  public void incrementX() {
    x++;
  }

  public void incrementY() {
    y++;
  }

  public String toString() {
    return "x: " + x + ", y: " + y;
  }

  public class PairValuesNotEqualException extends RuntimeException {
    public PairValuesNotEqualException() {
      super("Pair values not equal: " + Pair.this);
    }
  }

  // Arbitrary invariant -- both variables must be equal:
  public void checkState() {
    if (x != y)
      throw new PairValuesNotEqualException();
  }
}

// Protect a Pair inside a thread-safe class:

abstract class PairManager {
  protected Pair p = new Pair();

  private List storage = new ArrayList();

  public synchronized Pair getPair() {
    // Make a copy to keep the original safe:
    return new Pair(p.getX(), p.getY());
  }

  protected void store() {
    storage.add(getPair());
  }

  // A "template method":
  public abstract void doTask();
}

// Synchronize the entire method:

class PairManager1 extends PairManager {
  public synchronized void doTask() {
    p.incrementX();
    p.incrementY();
    store();
  }
}

// Use a critical section:

class PairManager2 extends PairManager {
  public void doTask() {
    synchronized (this) {
      p.incrementX();
      p.incrementY();
    }
    store();
  }
}

class PairManipulator extends Thread {
  private PairManager pm;

  private int checkCounter = 0;

  private class PairChecker extends Thread {
    PairChecker() {
      start();
    }

    public void run() {
      while (true) {
        checkCounter++;
        pm.getPair().checkState();
      }
    }
  }

  public PairManipulator(PairManager pm) {
    this.pm = pm;
    start();
    new PairChecker();
  }

  public void run() {
    while (true) {
      pm.doTask();
    }
  }

  public String toString() {
    return "Pair: " + pm.getPair() " checkCounter = " + checkCounter;
  }
}



           
       
Related examples in the same category
1. Thread: Dining Philosophers
2. Synchronizing on another objectSynchronizing on another object
3. Operations that may seem safe are not, when threads are presentOperations that may seem safe are not, when threads are present
4. Boolean lockBoolean lock
5. Static synchronized blockStatic synchronized block
6. Thread notifyThread notify
7. Thread deadlockThread deadlock
8. Synchronize methodSynchronize method
9. Threads joinThreads join
10. Static synchronizeStatic synchronize
11. No synchronizeNo synchronize
12. Thread syncronizationThread syncronization
13. Synchronized Block demoSynchronized Block demo
14. Interruptible Synchronized Block Interruptible Synchronized Block
15. SignalingSignaling
16. Simple Object FIFOSimple Object FIFO
17. Object FIFOObject FIFO
18. Byte FIFOByte FIFO
19. Thread Synch
20. Daemon Lock
21. Lock for read and write
w___w__w._j_a__v_a___2___s.__c___o_m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.