Share this page to your:
Mastodon

Edit: the demo described here has since been updated. It is functionally the same but it does look a little different. You'll probably figure it out but you could use the demo scripts in this pdf instead.

I’d meant to post an entry about putting my demos on line so people can play with them and not have to build the software. Not everyone, it seems, is actually a software engineer :-). Then I realised I had never actually posted anything about the basic pizza order demo. So here it is.

The purpose is to show off the Madura software I’ve been working on some time now. All of it can be found on my Github repositories, all open source and, with one exception, all of it free. The idea with Madura is that it makes use of rich business objects (Orders, Pizzas, Employees etc) to remove code from the application. These objects are very rich, in that they can include business rules that monitor what is going on. Most people do this with application logic and UI logic which is harder to write and maintain than what we have here.

The demo needs to be run from Firefox. It works on IE6 (I don’t run Windows normally but I had an old version lying around). Don’t use Chrome because that will show you the mobile UI, which is a different demo. I guess I should add don’t run it on your mobile device either. It works, but it isn’t the demo I’m about to describe.

We are supposedly ordering a pizza (but don’t worry, no pizza will be delivered). There are several pizza related products but the most interesting is the Configured Pizza, which dynamically adjusts the choices to be compatible with what has already been picked. The premise is that only some combinations of topping, base and size of pizza are allowed and the Madura-driven UI only ever
presents valid choices, dynamically altering the fields as necessary.

Click on the URL and log in as admin/admin. You should see something like this:

We’ll configure a pizza in a moment, but first click on the Customer button.

Notice the four buttons at the bottom and that one of them, Dynamic,
is disabled. Enter the name ‘fred’ (without the quotes) in the Name field and tab off it. The Dynamic button is now active. Change ‘fred’ to something else. The button is disabled again.

What is going on here? Do we have some custom javascript or custom java driving this? Actually no. That’s what other people do.

There is a rule defined using Madura Rules which controls whether the button is disabled or not. This is the rule:

rule: Customer “dynamic” {  
    if (name == “fred”) {  
        dynamic = true;  
    }  
}

Normally this kind of thing gets done in something like Java, and you’d write code to test if the name field was ‘fred’, and you’d also write code to test if it was not ‘fred’ and then set dynamic to false. One of the nice things about rules is that their converse is implied without having to write it, so this is all we need.

The next demo step is to enter something into the email, eg ‘abc’. Now you see an orange ‘!’ beside email. This is the usual way Vaadin indicates an error. Roll over it with the mouse and you will see

Failed email: label=email not a valid email address, attempted=abc 

which is the default error message for this kind of error. The email field
requires an ‘@’ sign so this is a simple validation error. There actually isn’t a proper rule for this because it is too simple. We just add an Email annotation on the field and the rest happens. Naturally you can customise that error message and you can add I18n alternatives (which means it can show up in French etc if you need it to).

Also notice that the Save button is now disabled. This happens automatically because there is an error. You don’t even have to write a rule. When the error is cleared the Save button will enable.

Change the email field to something valid and click the Save button to get back to the home page. You have a list of products on the left hand side. Expand the Sides heading and click on Boneless Chicken.

There isn’t any configuration for this product, just a price. But note
that the message about the shopping cart now says it contains one item. This message is controlled by the following rules:

rule: Order “shoppingcartsize” {  
    if (count(orderItems) > 0) {  
        shoppingCartStatus = format(“shopping.cart.status”,count(orderItems));  
    }  
}  
   
rule: Order “shoppingcartsize” {  
    if (count(orderItems) == 0) {  
        shoppingCartStatus = format(“shopping.cart.status.empty”,0);  
    }  
}

We could make this simpler if we were happy with saying ‘Shopping cart contains 0 items’, then we would only need one rule. But ‘Shopping cart is Empty’ looks nicer. The ‘shopping.cart.status…’ references are to a properties file that holds the actual messages we need, including the error messages mentioned above. The French messages are in a similar file, so if your user was French it would say “Le panier est vide” when the shopping cart is empty. To be clear, the language thing is just ordinary Java stuff, though it is rarely applied this well.

Now press the Save to Order button to keep the product in the shopping cart. The Cancel button would remove it so don’t press that. The next step is to expand Pizzas and pick Configured Pizza.

This is a more complex form. There is a date field, which like all the other fields, is a standard Vaadin widget. The amount at the bottom is zero, until we pick enough options for the rules to work out a price.

But the first thing to note, which you cannot see very well on the form, is that this form is generated using exactly the same Java as the Boneless Chicken one. The only difference is that object it maps to is different. This is part of the ‘rich objects’ thing. The objects themselves have enough information in them for the Java code to build us a form. So defining a new product doesn’t involve writing more Java (necessarily). It just needs the right object and the right rules.

Now we start configuring our pizza. Change the default Base to ‘Puff’ and pick Size=’Medium’.

There is a new field called testing now and it has a red asterisk beside it, which is standard Vaadin for indicating a required field. The Save to Order button is disabled because we now have a required field that is not filled in. Finally you have an amount calculated. This is the relevant rule:

rule: Pizza “p3” {  
    if (size == “Medium”) {  
        activate(testing);  
        require(testing);  
        amount = 15;  
    }  
}

activate(testing) makes the field visible and require(testing) makes it required. There are no rules to disable the Save to Order, that is handled in the same way as the error in the Email field, ie automatically.

But there is more. Check the options for Topping. They should be Italian and Spanish. Now clear the Size (and notice the testing field vanishes and the button re-enables). Check the options for Topping again. There are three others. The lists of valid values are being dynamically constrained depending on what else is picked. This is independent of the order they are picked, so if you pick Topping first then Size will be constrained and if you pick Size first then Topping will be constrained.

The rules behind this aren’t convenient to express in the if/then format we’ve seen so far, and they are awful in an ordinary language like Java. Instead we use decision tables. The format of the table in this case is XML but it could be a database table or, if you’re prepared to write some code, something else. I won’t bore you with the XML here. Conceptually the table looks like this:

**topping          size**  
Seafood            Small  
Italian               Medium  
Spanish             Medium  
Hawaiian          Large  
Greek                Large

Pick some valid combination, press Save to Order then press Checkout.

This just lists the resulting order items and their prices with a total. The total is
calculated using a rule:

formula: Order “sum” {  
    amount = sum(orderItems.amount);  
}

This is fired whenever we add or remove an item from the orderItems list, or if we change the amount of something already in there.

Part of the richness of the objects is that they include permissions on the fields. For example the admin user you are logged in as has all permissions. Another user operator/operator has slightly less capability. For example he doesn’t have access to the address field of the customer so when he goes to that form it doesn’t show up. There is no code to write to handle that, it is just part of the object definition. Similarly if you type ‘fred’ into the name field the Dynamic button doesn’t enable. Operator doesn’t have permission to use the Dynamic button, so regardless of the value of the name it won’t enable even if the rule tries to enable it. Declared permissions trump rule permissions.

All of this, apart from making the application a whole lot simpler is taking us to an interesting question. Since the business objects contain all the logic how come the UI can know what is going on?

It does it by knowing only that the objects are rich, that it can query them for labels and currently valid picks (the pizza sizes and toppings) and if they are required or not etc. It does not ever know anything about the rules, including the simple validation things like the Email validation. And this actually makes it brilliant when we want to implement another user interface.

Usually when a business decides to implement a new interface, such as something that runs on a mobile platform, people discover they’ve implemented a lot of business logic in their UI and they have to rewrite it for the new system. Then they have to keep the two in sync, doubling the maintenance effort. But we don’t have to do any of that. We just write the new UI and leave the business rules where they are.

To prove the concept I went ahead and wrote another Vaadin UI for the pizza order. If you browse to the same URL with your iPad or Android phone or a Chrome browser you’ll see it. The login is a bit fiddly, you may need to press the user and password fields to activate them, depending on your device. They are over on the right.

This mobile demo is a bit simpler, it just does the configured pizza so there’s no need for a blow-by-blow walk through. You know enough now to try picking different options and see what happens. It ought to be much the same as before.

We said it before but it is worth saying again. Although the UI is different all the rules and objects are the same. The only thing we had to change was the UI code. But we do mean the bare UI. We did not have to write code to restrict the choices based on earlier selections, nor did we have to write any code to track the total order or make the submit button (actually the Log Out button here) disabled until all the required fields are complete. All of those things are managed behind the UI with the same code as before. This shows the power of keeping the business logic clearly separated from the UI, and Madura is clearly an effective way to do that.

Previous Post Next Post