tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
29
Task/Rendezvous/0DESCRIPTION
Normal file
29
Task/Rendezvous/0DESCRIPTION
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
Demonstrate the “rendezvous” communications technique by implementing a printer monitor.
|
||||
==Detailed Description of Programming Task==
|
||||
Rendezvous is a synchronization mechanism based on procedural decomposition. Rendezvous is similar to a procedure call with the difference that the caller and the callee belong to different [[task]]s. The called procedure is usually called an '''entry point''' of the corresponding task. A call to an entry point is synchronous, i.e. the caller is blocked until completion. For the caller a call to the entry point is indivisible. Internally it consists of:
|
||||
|
||||
* Waiting for the callee ready to accept the rendezvous;
|
||||
* Engaging the rendezvous (servicing the entry point).
|
||||
|
||||
The caller may limit the waiting time to the callee to accept the rendezvous. I.e. a rendezvous request can be aborted if not yet accepted by the callee. When accepted the rendezvous is processed until its completion. During this time the caller and the callee tasks stay synchronized. Which context is used to process the rendezvous depends on the implementation which may wish to minimize context switching.
|
||||
|
||||
The callee task may accept several rendezvous requests:
|
||||
|
||||
* Rendezvous to the same entry point from different tasks;
|
||||
* Rendezvous to different entry points.
|
||||
|
||||
The callee accepts one rendezvous at a time.
|
||||
|
||||
Language mechanism of [[exceptions]] (if any) has to be consistent with the rendezvous. In particular when an exception is propagated out of a rendezvous it shall do in both tasks. The exception propagation is synchronous within the rendezvous and asynchronous outside it.
|
||||
|
||||
An engaged rendezvous can be requeued by the callee to another entry point of its task or to another task, transparently to the caller.
|
||||
|
||||
Differently to messages which are usually asynchronous, rendezvous are synchronous, as it was stated before. Therefore a rendezvous does not require marshaling the parameters and a buffer to keep them. Further, rendezvous can be implemented without context switch. This makes rendezvous a more efficient than messaging.
|
||||
|
||||
Rendezvous can be used to implement monitor synchronization objects. A monitor guards a shared resource. All users of the resource request a rendezvous to the monitor in order to get access to the resource. Access is granted by accepting the rendezvous for the time while the rendezvous is serviced.
|
||||
|
||||
===Language task===
|
||||
Show how rendezvous are supported by the language. If the language does not have rendezvous, provide an implementation of them based on other primitives.
|
||||
|
||||
===Use case task===
|
||||
Implement a printer monitor. The monitor guards a printer. There are two printers ''main'' and ''reserve''. Each has a monitor that accepts a rendezvous Print with a text line to print of the printer. The standard output may serve for printing purpose. Each character of the line is printed separately in order to illustrate that lines are printed indivisibly. Each printer has ink for only 5 lines of text. When the ''main'' printer runs out of ink it redirects its requests to the ''reserve'' printer. When that runs out of ink too, Out_Of_Ink exception propagates back to the caller. Create two writer tasks which print their plagiarisms on the printer. One does ''Humpty Dumpty'', another ''Mother Goose''.
|
||||
6
Task/Rendezvous/1META.yaml
Normal file
6
Task/Rendezvous/1META.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
category:
|
||||
- Encyclopedia
|
||||
note: Concurrency
|
||||
requires:
|
||||
- Concurrency
|
||||
6
Task/Rendezvous/Ada/rendezvous-1.ada
Normal file
6
Task/Rendezvous/Ada/rendezvous-1.ada
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
select
|
||||
Server.Wake_Up (Parameters);
|
||||
or delay 5.0;
|
||||
-- No response, try something else
|
||||
...
|
||||
end select;
|
||||
8
Task/Rendezvous/Ada/rendezvous-2.ada
Normal file
8
Task/Rendezvous/Ada/rendezvous-2.ada
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
select
|
||||
accept Wake_Up (Parameters : Work_Item) do
|
||||
Current_Work_Item := Parameters;
|
||||
end;
|
||||
Process (Current_Work_Item);
|
||||
or accept Shut_Down;
|
||||
exit; -- Shut down requested
|
||||
end select;
|
||||
77
Task/Rendezvous/Ada/rendezvous-3.ada
Normal file
77
Task/Rendezvous/Ada/rendezvous-3.ada
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
with Ada.Text_IO; use Ada.Text_IO;
|
||||
|
||||
procedure Rendezvous is
|
||||
Out_Of_Ink : exception;
|
||||
|
||||
type Printer;
|
||||
type Printer_Ptr is access all Printer;
|
||||
task type Printer (ID : Natural; Backup : Printer_Ptr) is
|
||||
entry Print (Line : String);
|
||||
end Printer;
|
||||
|
||||
task body Printer is
|
||||
Ink : Natural := 5;
|
||||
begin
|
||||
loop
|
||||
begin
|
||||
select
|
||||
accept Print (Line : String) do
|
||||
if Ink = 0 then
|
||||
if Backup = null then
|
||||
raise Out_Of_Ink;
|
||||
else
|
||||
requeue Backup.Print with abort;
|
||||
end if;
|
||||
else
|
||||
Put (Integer'Image (ID) & ": ");
|
||||
for I in Line'Range loop
|
||||
Put (Line (I));
|
||||
end loop;
|
||||
New_Line;
|
||||
Ink := Ink - 1;
|
||||
end if;
|
||||
end Print;
|
||||
or terminate;
|
||||
end select;
|
||||
exception
|
||||
when Out_Of_Ink =>
|
||||
null;
|
||||
end;
|
||||
end loop;
|
||||
end Printer;
|
||||
|
||||
Reserve : aliased Printer (2, null);
|
||||
Main : Printer (1, Reserve'Access);
|
||||
|
||||
task Humpty_Dumpty;
|
||||
task Mother_Goose;
|
||||
|
||||
task body Humpty_Dumpty is
|
||||
begin
|
||||
Main.Print ("Humpty Dumpty sat on a wall.");
|
||||
Main.Print ("Humpty Dumpty had a great fall.");
|
||||
Main.Print ("All the king's horses and all the king's men");
|
||||
Main.Print ("Couldn't put Humpty together again.");
|
||||
exception
|
||||
when Out_Of_Ink =>
|
||||
Put_Line (" Humpty Dumpty out of ink!");
|
||||
end Humpty_Dumpty;
|
||||
|
||||
task body Mother_Goose is
|
||||
begin
|
||||
Main.Print ("Old Mother Goose");
|
||||
Main.Print ("When she wanted to wander,");
|
||||
Main.Print ("Would ride through the air");
|
||||
Main.Print ("On a very fine gander.");
|
||||
Main.Print ("Jack's mother came in,");
|
||||
Main.Print ("And caught the goose soon,");
|
||||
Main.Print ("And mounting its back,");
|
||||
Main.Print ("Flew up to the moon.");
|
||||
exception
|
||||
when Out_Of_Ink =>
|
||||
Put_Line (" Mother Goose out of ink!");
|
||||
end Mother_Goose;
|
||||
|
||||
begin
|
||||
null;
|
||||
end Rendezvous;
|
||||
77
Task/Rendezvous/AutoHotkey/rendezvous.ahk
Normal file
77
Task/Rendezvous/AutoHotkey/rendezvous.ahk
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
OnMessage(0x4a, "PrintMonitor")
|
||||
SetTimer, print2, 400
|
||||
|
||||
print1:
|
||||
print("Old Mother Goose")
|
||||
print("When she wanted to wander,")
|
||||
print("Would ride through the air")
|
||||
print("On a very fine gander.")
|
||||
print("Jack's mother came in,")
|
||||
print("And caught the goose soon,")
|
||||
print("And mounting its back,")
|
||||
print("Flew up to the moon.")
|
||||
Return
|
||||
|
||||
print2:
|
||||
SetTimer, print2, Off
|
||||
print("Humpty Dumpty sat on a wall.")
|
||||
print("Humpty Dumpty had a great fall.")
|
||||
print("All the king's horses and all the king's men")
|
||||
print("Couldn't put Humpty together again.")
|
||||
Return
|
||||
|
||||
print(message)
|
||||
{
|
||||
Static StringToSend
|
||||
StringToSend := message
|
||||
Gui +LastFound
|
||||
VarSetCapacity(CopyDataStruct, 12, 0)
|
||||
NumPut(StrLen(StringToSend) + 1, CopyDataStruct, 4)
|
||||
NumPut(&StringToSend, CopyDataStruct, 8)
|
||||
SendMessage, 0x4a, 0, &CopyDataStruct
|
||||
If ErrorLevel
|
||||
MsgBox out of ink
|
||||
Sleep, 200
|
||||
Return
|
||||
}
|
||||
|
||||
PrintMonitor(wParam, lParam, msg)
|
||||
{
|
||||
Static ink = 5
|
||||
Global printed
|
||||
Critical
|
||||
If ink
|
||||
{
|
||||
StringAddress := NumGet(lParam + 8)
|
||||
StringLength := DllCall("lstrlen", UInt, StringAddress)
|
||||
VarSetCapacity(CopyOfData, StringLength)
|
||||
DllCall("lstrcpy", "str", CopyOfData, "uint", StringAddress)
|
||||
printed .= "primaryprinter: " . CopyOfData . "`n"
|
||||
ToolTip, primary printer`n: %printed%
|
||||
ink--
|
||||
}
|
||||
Else
|
||||
{
|
||||
OnMessage(0x4a, "Reserve")
|
||||
print(CopyOfData)
|
||||
}
|
||||
}
|
||||
|
||||
Reserve(wParam, lParam, msg)
|
||||
{
|
||||
Static ink = 5
|
||||
Global printed
|
||||
Critical
|
||||
If ink
|
||||
{
|
||||
StringAddress := NumGet(lParam + 8)
|
||||
StringLength := DllCall("lstrlen", UInt, StringAddress)
|
||||
VarSetCapacity(CopyOfData, StringLength)
|
||||
DllCall("lstrcpy", "str", CopyOfData, "uint", StringAddress)
|
||||
printed .= "reserveprinter: " . CopyOfData . "`n"
|
||||
ToolTip, Reserve printer`n: %printed%
|
||||
ink--
|
||||
}
|
||||
Else
|
||||
Return -1
|
||||
}
|
||||
72
Task/Rendezvous/C/rendezvous.c
Normal file
72
Task/Rendezvous/C/rendezvous.c
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <omp.h>
|
||||
|
||||
typedef struct printer printer;
|
||||
struct printer { int id, ink; };
|
||||
printer pnt_main = { 1, 5 };
|
||||
printer pnt_backup = { 2, 5 };
|
||||
|
||||
int print(const char * text, const char **error)
|
||||
{
|
||||
#pragma omp critical
|
||||
{
|
||||
printer *p = &pnt_main;
|
||||
if (!p->ink) p = &pnt_backup;
|
||||
if (!p->ink)
|
||||
*error = "Out of ink";
|
||||
else {
|
||||
*error = 0;
|
||||
p->ink--;
|
||||
printf("%d | ", p->id, p->ink);
|
||||
while (*text != '\0') {
|
||||
putchar(*(text++));
|
||||
fflush(stdout);
|
||||
usleep(30000);
|
||||
}
|
||||
putchar('\n');
|
||||
}
|
||||
}
|
||||
return 0 != *error;
|
||||
}
|
||||
|
||||
const char *humpty[] = {
|
||||
"Humpty Dumpty sat on a wall.",
|
||||
"Humpty Dumpty had a great fall.",
|
||||
"All the king's horses and all the king's men,",
|
||||
"Couldn't put Humpty together again."
|
||||
};
|
||||
|
||||
const char *goose[] = {
|
||||
"Old Mother Goose,",
|
||||
"When she wanted to wander,",
|
||||
"Would ride through the air,",
|
||||
"On a very fine gander.",
|
||||
"Jack's mother came in,",
|
||||
"And caught the goose soon,",
|
||||
"And mounting its back,",
|
||||
"Flew up to the moon."
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
int i, j, len;
|
||||
const char *msg, **text;
|
||||
|
||||
omp_set_num_threads(2);
|
||||
|
||||
#pragma omp parallel for private(text, msg, len, j)
|
||||
for (i = 0; i < 2; i++) {
|
||||
text = i ? goose : humpty;
|
||||
len = (i ? sizeof(goose) : sizeof(humpty) ) / sizeof(const char*);
|
||||
for (j = 0; j < len; j++) {
|
||||
usleep(100000);
|
||||
if (print(text[j], &msg)) {
|
||||
fprintf(stderr, "Error: %s\n", msg);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
145
Task/Rendezvous/Go/rendezvous.go
Normal file
145
Task/Rendezvous/Go/rendezvous.go
Normal file
|
|
@ -0,0 +1,145 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
"sync"
|
||||
)
|
||||
|
||||
var hdText = `Humpty Dumpty sat on a wall.
|
||||
Humpty Dumpty had a great fall.
|
||||
All the king's horses and all the king's men,
|
||||
Couldn't put Humpty together again.`
|
||||
|
||||
var mgText = `Old Mother Goose,
|
||||
When she wanted to wander,
|
||||
Would ride through the air,
|
||||
On a very fine gander.
|
||||
Jack's mother came in,
|
||||
And caught the goose soon,
|
||||
And mounting its back,
|
||||
Flew up to the moon.`
|
||||
|
||||
func main() {
|
||||
reservePrinter := startMonitor(newPrinter(5), nil)
|
||||
mainPrinter := startMonitor(newPrinter(5), reservePrinter)
|
||||
var busy sync.WaitGroup
|
||||
busy.Add(2)
|
||||
go writer(mainPrinter, "hd", hdText, &busy)
|
||||
go writer(mainPrinter, "mg", mgText, &busy)
|
||||
busy.Wait()
|
||||
}
|
||||
|
||||
// printer is a type representing an abstraction of a physical printer.
|
||||
// It is a type defintion for a function that takes a string to print
|
||||
// and returns an error value, (hopefully usually nil, meaning no error.)
|
||||
type printer func(string) error
|
||||
|
||||
// newPrinter is a constructor. The parameter is a quantity of ink. It
|
||||
// returns a printer object encapsulating the ink quantity.
|
||||
// Note that this is not creating the monitor, only the object serving as
|
||||
// a physical printer by writing to standard output.
|
||||
func newPrinter(ink int) printer {
|
||||
return func(line string) error {
|
||||
if ink == 0 {
|
||||
return eOutOfInk
|
||||
}
|
||||
for _, c := range line {
|
||||
fmt.Printf("%c", c)
|
||||
}
|
||||
fmt.Println()
|
||||
ink--
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
var eOutOfInk = errors.New("out of ink")
|
||||
|
||||
// For the language task, rSync is a type used to approximate the Ada
|
||||
// rendezvous mechanism that includes the caller waiting for completion
|
||||
// of the callee. For this use case, we signal completion with an error
|
||||
// value as a response. Exceptions are not idiomatic in Go and there is
|
||||
// no attempt here to model the Ada exception mechanism. Instead, it is
|
||||
// idomatic in Go to return error values. Sending an error value on a
|
||||
// channel works well here to signal completion. Go unbuffered channels
|
||||
// provide synchronous rendezvous, but call and response takes two channels,
|
||||
// which are bundled together here in a struct. The channel types are chosen
|
||||
// to mirror the parameter and return types of "type printer" defined above.
|
||||
// The channel types here, string and error are both "reference types"
|
||||
// in Go terminology. That is, they are small things containing pointers
|
||||
// to the actual data. Sending one on a channel does not involve copying,
|
||||
// or much less marshalling string data.
|
||||
type rSync struct {
|
||||
call chan string
|
||||
response chan error
|
||||
}
|
||||
|
||||
// "rendezvous Print" requested by use case task.
|
||||
// For the language task though, it is implemented here as a method on
|
||||
// rSync that sends its argument on rSync.call and returns the result
|
||||
// received from rSync.response. Each channel operation is synchronous.
|
||||
// The two operations back to back approximate the Ada rendezvous.
|
||||
func (r *rSync) print(data string) error {
|
||||
r.call <- data // blocks until data is accepted on channel
|
||||
return <-r.response // blocks until response is received
|
||||
}
|
||||
|
||||
// monitor is run as a goroutine. It encapsulates the printer passed to it.
|
||||
// Print requests are received through the rSync object "entry," named entry
|
||||
// here to correspond to the Ada concept of an entry point.
|
||||
func monitor(hardPrint printer, entry, reserve *rSync) {
|
||||
for {
|
||||
// The monitor goroutine will block here waiting for a "call"
|
||||
// to its "entry point."
|
||||
data := <-entry.call
|
||||
// Assuming the call came from a goroutine calling rSync.print,
|
||||
// that goroutine is now blocked, waiting for this one to send
|
||||
// a response.
|
||||
|
||||
// attempt output
|
||||
switch err := hardPrint(data); {
|
||||
|
||||
// consider return value from attempt
|
||||
case err == nil:
|
||||
entry.response <- nil // no problems
|
||||
|
||||
case err == eOutOfInk && reserve != nil:
|
||||
// Requeue to "entry point" of reserve printer monitor.
|
||||
// Caller stays blocked, and now this goroutine blocks until
|
||||
// it gets a response from the reserve printer monitor.
|
||||
// It then transparently relays the response to the caller.
|
||||
entry.response <- reserve.print(data)
|
||||
|
||||
default:
|
||||
entry.response <- err // return failure
|
||||
}
|
||||
// The response is away. Loop, and so immediately block again.
|
||||
}
|
||||
}
|
||||
|
||||
// startMonitor can be seen as an rSync constructor. It also
|
||||
// of course, starts the monitor for which the rSync serves as entry point.
|
||||
// Further to the langauge task, note that the channels created here are
|
||||
// unbuffered. There is no buffer or message box to hold channel data.
|
||||
// A sender will block waiting for a receiver to accept data synchronously.
|
||||
func startMonitor(p printer, reservePrinter *rSync) *rSync {
|
||||
entry := &rSync{make(chan string), make(chan error)}
|
||||
go monitor(p, entry, reservePrinter)
|
||||
return entry
|
||||
}
|
||||
|
||||
// Two writer tasks are started as goroutines by main. They run concurrently
|
||||
// and compete for printers as resources. Note the call to "rendezvous Print"
|
||||
// as requested in the use case task and compare the syntax,
|
||||
// Here: printMonitor.print(line);
|
||||
// Ada solution: Main.Print ("string literal");
|
||||
func writer(printMonitor *rSync, id, text string, busy *sync.WaitGroup) {
|
||||
for _, line := range strings.Split(text, "\n") {
|
||||
if err := printMonitor.print(line); err != nil {
|
||||
fmt.Printf("**** writer task %q terminated: %v ****\n", id, err)
|
||||
break
|
||||
}
|
||||
}
|
||||
busy.Done()
|
||||
}
|
||||
28
Task/Rendezvous/Oz/rendezvous-1.oz
Normal file
28
Task/Rendezvous/Oz/rendezvous-1.oz
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
declare
|
||||
class Printer
|
||||
attr ink:5
|
||||
|
||||
feat id backup
|
||||
|
||||
meth init(id:ID backup:Backup<=unit)
|
||||
self.id = ID
|
||||
self.backup = Backup
|
||||
end
|
||||
|
||||
meth print(Line)=Msg
|
||||
if @ink == 0 then
|
||||
if self.backup == unit then
|
||||
raise outOfInk end
|
||||
else
|
||||
{self.backup Msg}
|
||||
end
|
||||
else
|
||||
{System.printInfo self.id#": "}
|
||||
for C in Line do
|
||||
{System.printInfo [C]}
|
||||
end
|
||||
{System.printInfo "\n"}
|
||||
ink := @ink - 1
|
||||
end
|
||||
end
|
||||
end
|
||||
21
Task/Rendezvous/Oz/rendezvous-2.oz
Normal file
21
Task/Rendezvous/Oz/rendezvous-2.oz
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
fun {NewActiveSync Class Init}
|
||||
Obj = {New Class Init}
|
||||
MsgPort
|
||||
in
|
||||
thread MsgStream in
|
||||
{NewPort ?MsgStream ?MsgPort}
|
||||
for Msg#Sync in MsgStream do
|
||||
try
|
||||
{Obj Msg}
|
||||
Sync = unit
|
||||
catch E then
|
||||
Sync = {Value.failed E}
|
||||
end
|
||||
end
|
||||
end
|
||||
proc {$ Msg}
|
||||
Sync = {Port.sendRecv MsgPort Msg}
|
||||
in
|
||||
{Wait Sync}
|
||||
end
|
||||
end
|
||||
30
Task/Rendezvous/Oz/rendezvous-3.oz
Normal file
30
Task/Rendezvous/Oz/rendezvous-3.oz
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
Main = {NewActiveSync Printer init(id:1 backup:Reserve)}
|
||||
Reserve = {NewActiveSync Printer init(id:2)}
|
||||
in
|
||||
%% task Humpty Dumpty
|
||||
thread
|
||||
try
|
||||
{Main print("Humpty Dumpty sat on a wall.")}
|
||||
{Main print("Humpty Dumpty had a great fall.")}
|
||||
{Main print("All the king's horses and all the king's men")}
|
||||
{Main print("Couldn't put Humpty together again.")}
|
||||
catch outOfInk then
|
||||
{System.showInfo " Humpty Dumpty out of ink!"}
|
||||
end
|
||||
end
|
||||
|
||||
%% task Mother Goose
|
||||
thread
|
||||
try
|
||||
{Main print("Old Mother Goose")}
|
||||
{Main print("When she wanted to wander,")}
|
||||
{Main print("Would ride through the air")}
|
||||
{Main print("On a very fine gander.")}
|
||||
{Main print("Jack's mother came in,")}
|
||||
{Main print("And caught the goose soon,")}
|
||||
{Main print("And mounting its back,")}
|
||||
{Main print("Flew up to the moon.")}
|
||||
catch outOfInk then
|
||||
{System.showInfo " Mother Goose out of ink!"}
|
||||
end
|
||||
end
|
||||
6
Task/Rendezvous/PicoLisp/rendezvous-1.l
Normal file
6
Task/Rendezvous/PicoLisp/rendezvous-1.l
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
(de rendezvous (Pid . Exe)
|
||||
(when
|
||||
(catch '(NIL)
|
||||
(tell Pid 'setq 'Rendezvous (lit (eval Exe)))
|
||||
NIL )
|
||||
(tell Pid 'quit @) ) ) # Raise caught error in caller
|
||||
56
Task/Rendezvous/PicoLisp/rendezvous-2.l
Normal file
56
Task/Rendezvous/PicoLisp/rendezvous-2.l
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
(de printLine (Str)
|
||||
(cond
|
||||
((gt0 *Ink) (prinl *ID ": " Str) (dec '*Ink))
|
||||
(*Backup (rendezvousPrint @ Str) T)
|
||||
(T (quit "Out of Ink")) ) )
|
||||
|
||||
(de rendezvousPrint (Printer Str)
|
||||
(let Rendezvous NIL
|
||||
(tell Printer 'rendezvous *Pid 'printLine Str) # Call entry point
|
||||
(unless (wait 6000 Rendezvous) # Block max. 1 minute
|
||||
(quit "Rendezvous timed out") ) ) )
|
||||
|
||||
# Start RESERVE printer process
|
||||
(unless (setq *ReservePrinter (fork))
|
||||
(setq *ID 2 *Ink 5)
|
||||
(wait) ) # Run forever
|
||||
|
||||
# Start MAIN printer process
|
||||
(unless (setq *MainPrinter (fork))
|
||||
(setq *ID 1 *Ink 5 *Backup *ReservePrinter)
|
||||
(wait) )
|
||||
|
||||
# Start Humpty Dumpty process
|
||||
(unless (fork)
|
||||
(when
|
||||
(catch '(NIL)
|
||||
(for Line
|
||||
(quote
|
||||
"Humpty Dumpty sat on a wall."
|
||||
"Humpty Dumpty had a great fall."
|
||||
"All the king's horses and all the king's men"
|
||||
"Couldn't put Humpty together again." )
|
||||
(rendezvousPrint *MainPrinter Line) ) )
|
||||
(prinl " Humpty Dumpty: " @ "!") )
|
||||
(bye) )
|
||||
|
||||
# Start Mother Goose process
|
||||
(unless (fork)
|
||||
(when
|
||||
(catch '(NIL)
|
||||
(for Line
|
||||
(quote
|
||||
"Old Mother Goose"
|
||||
"When she wanted to wander,"
|
||||
"Would ride through the air"
|
||||
"On a very fine gander."
|
||||
"Jack's mother came in,"
|
||||
"And caught the goose soon,"
|
||||
"And mounting its back,"
|
||||
"Flew up to the moon." )
|
||||
(rendezvousPrint *MainPrinter Line) ) )
|
||||
(prinl " Mother Goose: " @ "!") )
|
||||
(bye) )
|
||||
|
||||
# Prepare to terminate all processes upon exit
|
||||
(push '*Bye '(tell 'bye))
|
||||
157
Task/Rendezvous/Tcl/rendezvous.tcl
Normal file
157
Task/Rendezvous/Tcl/rendezvous.tcl
Normal file
|
|
@ -0,0 +1,157 @@
|
|||
package require Tcl 8.6
|
||||
package require Thread
|
||||
|
||||
# Really ought to go in a package
|
||||
eval [set rendezvousEngine {
|
||||
array set Select {w {} c 0}
|
||||
|
||||
# Turns the task into a coroutine, making it easier to write in "Ada style".
|
||||
# The real thread ids are stored in shared variables.
|
||||
proc task {id script} {
|
||||
global rendezvousEngine
|
||||
set task [list coroutine RTask eval "$script;thread::exit"]
|
||||
tsv::set tasks $id [thread::create \
|
||||
"$rendezvousEngine;$task;thread::wait"]
|
||||
}
|
||||
|
||||
# A simple yielding pause.
|
||||
proc pause t {
|
||||
after $t [info coroutine]
|
||||
yield
|
||||
}
|
||||
|
||||
# Wait for a message. Note that this is *not* pretty code and doesn't do
|
||||
# everything that the Ada rendezvous does.
|
||||
proc select args {
|
||||
global Select
|
||||
set var [namespace which -variable Select](m[incr Select(c)])
|
||||
set messages {}
|
||||
foreach {message vars body} $args {
|
||||
dict set messages $message $body
|
||||
dict set bindings $message $vars
|
||||
}
|
||||
lappend Select(w) [list $var [dict keys $messages]]
|
||||
try {
|
||||
set Master ""
|
||||
while {$Master eq ""} {
|
||||
set Master [yield]
|
||||
}
|
||||
lassign $Master message responder payload
|
||||
foreach vbl [dict get $bindings $message] value $payload {
|
||||
upvar 1 $vbl v
|
||||
set v $value
|
||||
}
|
||||
set body [dict get $messages $message]
|
||||
set code [uplevel 1 [list catch $body ::Select(em) ::Select(op)]]
|
||||
set opts $Select(op)
|
||||
if {$code == 1} {
|
||||
dict append opts -errorinfo \
|
||||
"\n while processing message\n$message $payload"
|
||||
}
|
||||
set $responder [list $code $Select(em) $opts]
|
||||
} finally {
|
||||
catch {unset $var}
|
||||
set Select(w) [lrange $Select(w) 0 end-1]
|
||||
}
|
||||
}
|
||||
|
||||
# This acts as a receiver for messages, feeding them into the waiting
|
||||
# [select]. It is incomplete as it should (but doesn't) queue messages that
|
||||
# can't be received currently.
|
||||
proc receive {message args} {
|
||||
global Select
|
||||
lassign [lindex $Select(w) end] var messages
|
||||
if {$message ni $messages} {
|
||||
throw BAD_MESSAGE "don't know message $message"
|
||||
}
|
||||
set responder [namespace which -variable Select](r[incr Select(c)])
|
||||
set $responder ""
|
||||
RTask [list $message $responder $args]
|
||||
set response [set $responder]
|
||||
unset responder
|
||||
after 1
|
||||
return $response
|
||||
}
|
||||
|
||||
# This dispatches a message to a task in another thread.
|
||||
proc send {target message args} {
|
||||
after 1
|
||||
set t [tsv::get tasks $target]
|
||||
if {![thread::send $t [list receive $message {*}$args] response]} {
|
||||
lassign $response code msg opts
|
||||
return -options $opts $msg
|
||||
} else {
|
||||
return -code error $response
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
||||
# The backup printer task.
|
||||
task BackupPrinter {
|
||||
set n 5
|
||||
while {$n >= 0} {
|
||||
select Print msg {
|
||||
if {$n > 0} {
|
||||
incr n -1
|
||||
puts Backup:$msg
|
||||
} else {
|
||||
throw OUT_OF_INK "out of ink"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# The main printer task.
|
||||
task MainPrinter {
|
||||
set n 5
|
||||
set Backup BackupPrinter
|
||||
while 1 {
|
||||
select Print msg {
|
||||
try {
|
||||
if {$n > 0} {
|
||||
incr n -1
|
||||
puts Main:$msg
|
||||
} elseif {$Backup ne ""} {
|
||||
send $Backup Print $msg
|
||||
} else {
|
||||
throw OUT_OF_INK "out of ink"
|
||||
}
|
||||
} trap OUT_OF_INK {} {
|
||||
set Backup ""
|
||||
throw OUT_OF_INK "out of ink"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Tasks that generate messages to print.
|
||||
task HumptyDumpty {
|
||||
pause 100
|
||||
try {
|
||||
send MainPrinter Print "Humpty Dumpty sat on a wall."
|
||||
send MainPrinter Print "Humpty Dumpty had a great fall."
|
||||
send MainPrinter Print "All the King's horses and all the King's men"
|
||||
send MainPrinter Print "Couldn't put Humpty together again."
|
||||
} trap OUT_OF_INK {} {
|
||||
puts "Humpty Dumpty out of ink!"
|
||||
}
|
||||
}
|
||||
task MotherGoose {
|
||||
pause 100
|
||||
try {
|
||||
send MainPrinter Print "Old Mother Goose"
|
||||
send MainPrinter Print "When she wanted to wander,"
|
||||
send MainPrinter Print "Would ride through the air"
|
||||
send MainPrinter Print "On a very fine gander."
|
||||
send MainPrinter Print "Jack's mother came in,"
|
||||
send MainPrinter Print "And caught the goose soon,"
|
||||
send MainPrinter Print "And mounting its back,"
|
||||
send MainPrinter Print "Flew up to the moon."
|
||||
} trap OUT_OF_INK {} {
|
||||
puts "Mother Goose out of ink!"
|
||||
}
|
||||
}
|
||||
|
||||
# Wait enough time for the example to run and then finish
|
||||
after 1000
|
||||
thread::broadcast thread::exit
|
||||
Loading…
Add table
Add a link
Reference in a new issue