source: liacs/cvp/java/BEER_DRINKERS/Beer_Drinkers.java@ 341

Last change on this file since 341 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

File size: 3.0 KB
Line 
1/*
2
3Juan Guillen Scholten.
4Leiden University.
5
6An example of monitor use in Java.
7
8There are N drinkers drinking beer in a pub. After a while some of them want to
9go to the toilet, unfortunately there is just one available. So only
10one drinker can enjoy the toilet at the same time and the rest must wait.
11
12*/
13
14//
15// The monitor class.
16//
17class Toilet
18{
19 private boolean occupied = false;
20
21 Toilet () {}; // constructor
22
23 //
24 // Try to enter the toilet. If occupied then
25 // drinker has to wait, else drinker can enter.
26 //
27 synchronized void try_to_enter ()
28 {
29 while (occupied)
30 {
31 try { wait(); } catch (InterruptedException e)
32 {
33 //
34 // In Java you always have to catch an exception
35 // when doing a wait.
36 //
37 System.out.println("interruptedException caught");
38 }
39 }
40 occupied = true;
41 }// try_to_enter
42
43 //
44 // Leave the toilet. Do a notify for if somebody else
45 // is waiting.
46 //
47 synchronized void leave_toilet ()
48 {
49 occupied = false;
50 notify(); // same as signal
51 }// leave_toilet
52}// Toilet
53
54class Drinker extends Thread
55{
56 int id;
57 private Toilet toilet;
58
59 Drinker (int number, Toilet a)
60 {
61 super ("Drinker"+number);
62 this.id = number;
63 toilet = a;
64 }// constructor
65
66 public void run ()
67 {
68 int times;
69 int index = 0;
70 int sleeptime;
71
72 times = (int) (Math.random () * 20); // number of times
73 // going to the toilet
74 while ( index < times )
75 {
76 //
77 // Drinking beer.
78 //
79 sleeptime = (int) (Math.random () * 2000); // 2000 = 2 sec.
80 try {sleep (sleeptime);} catch (Exception e) {}
81
82 //
83 // Trying to enter the toilet.
84 //
85 System.out.println("Drinker "+ id +" wants to go to the toilet.");
86 toilet.try_to_enter();
87
88 //
89 // Using the toilet.
90 //
91 System.out.println("Drinker "+ id +" enters the toilet.");
92 sleeptime = (int) (Math.random () * 2000);
93 try {sleep (sleeptime);} catch (Exception e) {}
94
95 //
96 // Leaving the toilet.
97 //
98 System.out.println("Drinker "+ id +" leaves the toilet and says: NEXT!");
99 System.out.println(" ");
100 toilet.leave_toilet();
101 index++;
102
103 }
104 System.out.println("Drinker "+ id + " goes home.");
105 System.out.println(" ");
106 }// run
107}// Drinker
108
109public class Beer_Drinkers
110{
111 public static void main (String args[])
112 {
113 Toilet toilet;
114 int N = 4; // number of drinkers
115 int i;
116 System.out.println("Amount of drinkers : "+ N + ".");
117 System.out.println(" ");
118 toilet = new Toilet();
119 Drinker [] drinker = new Drinker [N];
120
121 //
122 // Creating the drinkers.
123 //
124 for (i = 0; i < N; i++)
125 {
126 drinker[i] = new Drinker (i, toilet);
127 }
128
129 //
130 // Starting the drinkers.
131 //
132 for (i = 0; i < N; i++)
133 {
134 drinker[i].start();
135 }
136
137 }// main
138}// Beer_Drinkers
139
140
Note: See TracBrowser for help on using the repository browser.