From cocoon-dev-return-19405-apmail-xml-cocoon-dev-archive=xml.apache.org@xml.apache.org Mon Dec 03 06:08:32 2001 Return-Path: Delivered-To: apmail-xml-cocoon-dev-archive@xml.apache.org Received: (qmail 55599 invoked by uid 500); 3 Dec 2001 06:08:31 -0000 Mailing-List: contact cocoon-dev-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: cocoon-dev@xml.apache.org Delivered-To: mailing list cocoon-dev@xml.apache.org Delivered-To: moderator for cocoon-dev@xml.apache.org Received: (qmail 48319 invoked from network); 2 Dec 2001 23:28:02 -0000 Reply-To: From: =?us-ascii?Q?Daniel_Fagerstrom?= To: Subject: Re: Flowmaps: the wrong approach (was Re: [RT] (long) Rethinking Finite State Machine Approach to Flow Management) Date: Mon, 3 Dec 2001 00:28:03 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal In-Reply-To: <200112012018.fB1KIHf24593@localhost.localdomain> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Ovidiu Predescu wrote: > I now believe we should have a system centered around logic, not > around states and transitions. I agree completely, IMHO, writing FSM:s is like goto-programming, very small systems are easy to understand, but as soon as they grow, they easily become a maintainance nightmare. > The logic should be expressed in a > language that supports continuations. The logic should drive what > pages are presented to the user. These pages could be expressed in an > XML markup language with appropriate elements for extracting data > previously created in the program. These XML pages could be then > processed through a pipeline, similarly with how they are processed > today in the sitemap. However since incoming URLs are handled directly > by the logic, there's no need for matchers in the sitemap. > > > HTTP request transformations > --------------> logic -----> XML page -----------------> HTML/WML/... page > > > The generated pages contain URLs that point back to continuation > points in the logic. > > The biggest problem is the fact that the logic needs to be expressed > in language that supports continuations. Since most people don't like > the Lisp syntax, a language that abstracts out the continuations in > higher level abstractions like send-response could be developed. This > can probably be done by extending a familiar language, like > Javascript, with these concepts. > This is a huge paradigm shift from what we have right now, but I > believe leads to easier ways to write Web applications. They become > more like usual programs, instead of the complex beasts that we have > today, with state scattered all over the place in the code. > > And yes, please read the papers I pointed to in my previous email, to > understand what the heck I'm talking about. Here they are for your > convenience: > > http://youpou.lip6.fr/queinnec/Papers/webcont.ps.gz > http://www.cs.rice.edu/CS/PLT/Publications/esop2001-gkvf.ps.gz I happen to like Lisp as well at its syntax ;) Still I wonder if it would not be possible to continue in the great cocoon tradition of SoC, and find a convenient description of webapp flow, without going all the way to a full high level programming language. Now that you have succeeded in exorcizing the mix of programming language constructs and tags from JSP etc, it seem like a pity to let this mix in again. Anyhow, inspired of the interesting discussion and the articles that you referd to, I started to think about how to use these concepts in cocoon. If possible, without having to do a "huge paradigm shift". -------------------------------------------------------------------- Flowmap ------- First, to make it more concrete, I will try to express the main example from, http://youpou.lip6.fr/queinnec/Papers/webcont.ps.gz, in terms of xslt, cocoon components, a sitemap and a flowmap. For those of you that not have read that article yet, the main example is a small webapp: 1. On the first page it ask for the conversion rate between French Francs and another currency. 2. Then it ask for an amount of Francs. 3. And on the third page it returns the result. One of the coolest things about the implementation in the article, is that it can take care of multiple questions at once. If you browse through the three steps above, and then click on the "new window" button in your browser. You can the go back to the first or second screen, and fill in new data, without affecting the result in the other browser, (even if you use the refresh button in it). This behavior is very useful for "what if" kind of questions, where one can evaluate several alternative scenarios in a convenient way. Ok, here we go! We start with a high level description of the application flow: (The "id" attributes are not necesarry and are only used for making reference easier) The flow map is either a part of the sitemap or mounted from it. It will be executed by a "flowmap engine" on a request for "cocoon://conversion". The children of "fm:flow" are executed in sequence. Each child works as a pipeline. The flowmap engine feeds the pipeline with an xml-document, that has "in" as root element. This document contains two parts, a continuation, that is an url to the next stage (or stages) in the flowmap, and description of the current state. The input to the first stage, "conversion#rateTest" could look like this: Now, the first stage is an until-statement (a mistake from a pedagogical point of view, I realize :) ), the test - an XPath expression, will obviously not succeed on the current input data. Therefore the body of the until-statement is executed. But before we can do that we have to set the continuation. The next stage after "conversion#rate" is "conversion#rateTest". We represent this situation by creating the new input: conversion?next=rateTest-23454 Here the url "conversion?next=rateTest-23454" consists of two parts, one that identifies the next stage to go to in the flowmap and one "23454" that uniqely identifies the current state, which this far happens to be empty. The current state is stored in a hash table with the url as a key. We need an implementation of "conversion#rate": Conversion

Conversion from Francs

The main things to notice here is that, the form/@action will be replaced with the current continuation from the input, in our case "conversion?next=rateTest-23454", and that the names in the form describes positions in a output xml-document, (this idea is taken from the XForms draft). We also need a sitemap fragment to see how readRate.xsl is suposed to be called: Here the "flowMapGenerator" feeds the current input to e.g. readRate.xsl. More interesting things happens when the user have filled in the form and hits the submit button, this will create a request for "conversion?next=rateTest-23454", and the flowmap-engine will respond in the following manner: 1. Read the request parameters, in our case they might be: /exchange/rate=1.4551&/exchange/currency=SEK. 2. Create an XML-document from the request parameters: 1.4551 SEK 3. Resume the state that is associated with the url, from the hashtable. It happens to be empty at this moment. 4. Combine the restored state with the current input. This can and needs to be done in many different ways, but for our current example, an insert/replace operation, is enough, and results in: 1.4551 SEK 5. And this is the new input to "conversion#rateTest", this time the test will succeed, and as a result, the flowmap engine continues to the next stage "conversion#francs", and sets the continuation to the stage after: 1.4551 SEK conversion?next=result-54328 So, here I will stop boring you with all the details. The last two pages look as follows: How many Francs?

Converting into

Conversion result

Conversion result

result.xsl will be called with input like this: 1.4551 SEK 100 ------------------------------------------------------------------------ More constructions ------------------ There are certainly need for more language constructions to make the flowmap usable, some examples: Do something A possiblity to have several possible continuations: Do something Do something ... Do something The switch statement will give the preceding statement the input: flow?l1=i1-76456 flow?l2=i2-09877 ... flow?ln=in-65433 Maybe the switch statement should be nestable with if statements, to make it possible to describe that some of the links only are available if certain conditions are fullfiled. An important example is to only show the links that one is allowed to traverse. It is useful to call other flows: To make flow calls possible one need to store a stack of continuations from the calling flows, in the state. Some kind of try, catch statement would probably simplify error handling. ------------------------------------------------------------------- State handling --------------- The state handling described above, is to primitive for many situations. It allows for the "what if"-scenarios mentioned in the beginning, (I guess that is far from obvious from what I have said, but the images in the beginning of the referred article explains the situation quite well). This flexibility comes with a high cost, each continuation, that is created is associated with an own copy of the state. As long as the state is read-only all the copies can have references to common parts, and thus take away most of the copying, still the approach requires a lot of resources. Another problem is garbage handling, when should an unaccesed continuation, be taken away? (some ideas can be found in the referred articles). In situations where one updates a data source with a large state, a data base, for example, a "many world"-behavior is not desirable at all. It would mean that the system have to handle several copies of the database, or that the database must be able to take care of multiple branches of the stored information. This situation can be handled by restricting the creation of new continuations, so that one copy of a continuation is allowed for each stage in the flow. --------------------------------------------------------------------- Thats enough for tonight. Comments, ideas? regards, Daniel --------------------------------------------------------------------- To unsubscribe, e-mail: cocoon-dev-unsubscribe@xml.apache.org For additional commands, email: cocoon-dev-help@xml.apache.org