summaryrefslogtreecommitdiff
path: root/sources/examples/pilib/twoPlaceBuffer.scala
blob: 15f29dee0737f84259d0c3a060d5ce8269dab1ed (plain) (blame)
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
74
/** Two-place buffer specification and implementation. */
object twoPlaceBuffer {

  import scala.concurrent.pilib._;

  /**
  * Specification.
  */
  def Spec[a](put: Chan[a], get: Chan[a]): unit =  {

    def B0: unit = {
      val x = put.read;
      B1(x)
    }

    def B1(x: a): unit = choice (
      get(x) * (B0),
      put * (y => B2(x, y))
    );

    def B2(x: a, y: a): unit = {
      get.write(x);
      B1(y)
    };

    B0
  }

  /**
  * Implementation.
  */
  def Impl[a](put: Chan[a], get: Chan[a]): unit =  {

    // An empty one-place buffer.
    def B0(in: Chan[a], out: Chan[a]): unit = {
      val x = in.read;
      B1(in, out, x)
    }

    // A full one-place buffer containing x.
    def B1(in: Chan[a], out: Chan[a], x: a): unit = {
      out.write(x);
      B0(in, out)
    };

    val hidden = new Chan[a];
    spawn < B0(put, hidden) | B0(hidden, get) >
  }

  val random = new java.util.Random();

  def Producer(n: Int, put: Chan[String]): unit = {
    Thread.sleep(1 + random.nextInt(1000));
    val msg = "object " + n;
    put.write(msg);
    System.out.println("Producer gave " + msg);
    Producer(n + 1, put)
  }

  def Consumer(get: Chan[String]): unit = {
    Thread.sleep(1 + random.nextInt(1000));
    val msg = get.read;
    System.out.println("Consummer took " + msg);
    Consumer(get)
  }

  def main(args: Array[String]): unit = {
    val put = new Chan[String];
    val get = new Chan[String];
    spawn < Producer(0, put) | Consumer(get) | Spec(put, get) >
    //spawn < Producer(0, put) | Consumer(get) | Impl(put, get) >
  }

}