ref: e81c54ba2ecc673a4d5f8aed0e9b52841fe07b0d
dir: /man/2/styxflush/
.TH STYXFLUSH 2 .SH NAME styxflush \- handler for 9P (Styx) flush protocol .SH SYNOPSIS .EX include "sys.m"; include "styx.m"; include "styxflush.m"; styxflush := load Styxflush Styxflush->PATH; init: fn(); tmsg: fn(m: ref Styx->Tmsg, flushc: chan of (int, chan of int), reply: chan of ref Styx->Rmsg): (int, ref Styx->Rmsg); rmsg: fn(m: ref Styx->Rmsg): int; Einterrupted: con "interrupted"; .EE .SH DESCRIPTION Getting the semantics of the 9P .IR flush (5) protocol correct when handling requests concurrently is surprisingly hard to do. .I Styxflush is designed to help get it right. It deals with 9P messages for a single 9P session \- if a server needs to deal with multiple sessions, then multiple instances of .I styxflush should be loaded. It assumes there is a loop in a central process that both reads T-messages and sends their R-message replies. .I Styxflush handles the flushing of requests that are being run outside the central process. .PP .B Init must be called before anything else in .I styxflush to intialise its internal data structures. .PP When a T-message request arrives that will be dealt with concurrently, .B tmsg(\fIm\fP,\ \fIflushc\fP,\ \fIreply\fP) should be called to inform .I styxflush of the new request. .I M gives the T-message; .I flushc gives a channel that will be used if the request is flushed (see below), and .I reply should hold an unbuffered channel that can be used to send a reply to the central loop. .I Flushc will usually be a fresh channel for each request, but several requests may share the same .IR flushc if, for instance, one process is managing several requests. .B Tmsg returns a tuple (\fIhandled,\ rm\fP), where .I handled is non-zero if .I styxflush has dealt with the request itself. If it has, then the caller must not handle the request; it must send .I rm as a reply if it is not nil. .PP .B Rmsg should be called when a reply message arrives at the central process (the same process that has called .BR tmsg ). It returns non-zero if the reply message should actually be sent to the client - otherwise it should be discarded. .SS "Flush Channel" .I Styxflush notifies a request that it has been flushed by sending a tuple, say .IR "" ( tag ,\ rc ) on its flush channel. .I Tag gives the tag of the message that has been flushed, and .I rc is a channel that should be replied on when the request has been dealt with. There is no requirement that a request read on its flush channel - if it does not, then the replies to any flushes of that request will be delayed until the request is replied to. If it does read a flush request, however, it must reply to the original request before sending on .IR rc . If it has succeeded in aborting the request, it should send an .IR error (5) R-message with the message .B interrupted (defined as .BR Einterrupted ); otherwise it should send its reply as usual. .SH SOURCE .B /appl/lib/styxflush.b .SH EXAMPLE This is a skeleton of a prototypical structure of a program that uses .IR styxflush . .EX replyc: chan of ref Rmsg; centralloop(tm: chan of ref Tmsg, fd: ref Sys->FD) { replyc = chan of Rmsg; for(;;)alt{ m := <-tm => if(m == nil || tagof m == tagof Tmsg.Readerror){ cleanup(); # kill outstanding processes, etc. return; } flushc := chan of (int, chan of int); (handled, rm) := styxflush->tmsg(m, flushc, replyc); if(!handled) spawn request(m, flushc); else if(rm != nil) sendreply(rm); rm := <- replyc => if(styxflush->rmsg(rm)) sendreply(rm); } } sendreply(fd: ref Sys->FD, rm: ref Rmsg) { d := rm.pack(); sys->write(fd, d, len d); } request(tm: ref Tmsg, flushc: chan of (int, chan of int)) { pick m := tm { Open => replyc <-= ref Rmsg.Open(m.tag, ...); Read => [...] alt{ x := <-readc => # read from data produced on readc replyc <-= ref Rmsg.Read(m.tag, ...); (nil, rc) := <-flushc => # read request has been flushed. replyc <-= ref Rmsg.Error(m.tag, Einterrupted); rc <-= 1; } etc ... } }