summaryrefslogtreecommitdiff
path: root/java/tests/Concurrency/TokenTest.java
blob: a9b435d171daeee210140683490d3e9b30478f34 (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
/*************************************************
 *
 * = PACKAGE
 *    tests.Concurrency
 *
 * = FILENAME
 *    TokenTest.java
 *
 *@author Prashant Jain
 *
 *************************************************/
package tests.Concurrency;

import java.io.*;
import ACE.OS.*;
import ACE.Concurrency.*;

class MyToken extends Token
{
  public void sleepHook ()
  {
    ACE.DEBUG (Thread.currentThread () + " blocking, sleepHook called");
  }  
}

public class TokenTest implements Runnable
{
  public void run ()
  {
    try
      {
	this.token_.acquire ();
	ACE.DEBUG (Thread.currentThread () + " acquired token");
	this.token_.acquire ();
	ACE.DEBUG (Thread.currentThread () + " acquired token");
	Thread.sleep (100);

	this.token_.renew (0);

	this.token_.release ();
	ACE.DEBUG (Thread.currentThread () + " released token");
	this.token_.release ();
	ACE.DEBUG (Thread.currentThread () + " released token");
      }
    catch (InterruptedException e)
      {
	this.token_.release ();
      }
  }

  public static void main (String args [])
  {
    ThreadManager tm = new ThreadManager ();
    int n = 1;
    try
      {
	if (args.length == 1)
	  {
	    n = Integer.parseInt (args[0]);
	  }
      }
    catch (NumberFormatException e)
      {
	ACE.ERROR ("Illegal argument.");
      }

    tm.spawnN (n,
	       new TokenTest (),
	       false);
  }

  private MyToken token_ = new MyToken ();
}