For centuries people have sought ways to separate style from substance, good manners from good science, and user interface from application logic. The Model View Controller (MVC) design pattern is a way of separating the user-interface from the substance of the application.
In recent years, MVC has become a popular strategy for building websites. There are now web-MVC frameworks available for many programming languages, for instance Struts for Java, Maypole for Perl and Rails for Ruby.
This article introduces the MVC pattern and its use in web development. I will mention some Perl modules, but most of it will be applicable to any language supporting object-oriented programming.
MVC is an object-oriented design pattern, so I'll mention objects, classes and other patterns here. This text will probably not make very much sense without some experience in OO programming and web development. Information about all the patterns mentioned here can be found at the C2 Wiki: http://c2.com/cgi/wiki
Since MVC was originally invented for traditional GUI applications, certain details in original MVC pattern don't map well to web applications. (Note 1) Since I'm describing MVC for the web, I will simplify, change, misrepresent and ignore those details here.
The idea of the MVC pattern is to divide an application into 3 parts: the Model, View and Controller. Let's take a look at each of them.
The Model handles the state of the application. The state is what your application is about. If your application is a forum, your Model might contain Class::DBI objects representing threads, users and postings. The Model does not know anything about HTML, or web servers or anything like that. It just supplies ways to query the state, and ways to change that state.
The View is the representation of the user interface. Usually there are many (possibly nested) Views in a single application. A view can query the model, but it is not supposed to change the state. In web based MVC systems, a view can be implemented using a template that renders an HTML page. In our hypothetical forum application, the Views would be the templates for rendering a full thread, the login page, the posting page etc.
User actions on the View are send to the Controller. In a web environment, this is usually done by having the Controller handle the incoming HTTP requests.
The Controller receives user requests, and translates them into actions that the Model should take. Then it selects the appropriate View to handle the response.
It is possible to have more than one Controller, but most web application frameworks I've used assume you only have one.
Figure 1. A sequence diagram of a single request/response pair.
Browser View Controller Model
. . . .
. HTTP Request . . .
+---------------------------------->+ .
| . | update model .
| . +-------------->+
| . | |
| . | return status |
| . +<--------------+
| . select view | .
| +<----------------+ .
| | . .
| | query state . .
| +-------------------------------->+
| | . |
| | . return state |
| +<--------------------------------+
| HTTP Response | . .
+<----------------+ . .
. . . .
Notice that the Controller does not handle the communication between the View and the Model: the Views make direct requests to the Model.
This turns out to be very useful if the page-flow in the application is complex, but even for simple applications the Controller is a good place to handle common actions - authentication and session management can be handled in the Controller, for instance.
The Model Model View Controller pattern tries to minimize the impact of these changes by using two Models: a Domain Model and an Application Model - the View only queries the Application Model, and the Application model can query the Domain Model. The Application Model usually partly generated by the GUI design tools. I haven't used this pattern at all, so I don't know how useful it is for web applications
Possibly :-) I think that any web-based application that uses more than a handful of templates, or has a complex interaction between pages would be a good candidate for the MVC pattern. There are alternatives, of course. See Resources - Alternatives.
You derive your Controller from the CGI::Application class, handling user requests via the run_modes system and you can use a templating system to implement the Views.
How you implement your Model is entirely up to you. IMO this is a Good Thing; the model is the most specific thing in an application, and a framework should not make unnecessary restrictions on it.
While CGI::Application's approach is to set up a minimal base for your Controller, giving the programmer as much choice as possible, Maypole's focus is on rapid development: the example BeerDB application requires about 20 lines of Perl and a database schema. If you're building a CRUD application on mod_perl, Maypole might be just what you're looking for.
All this convenience comes at a price, of course - Maypole is big, slow to load (can be a problem in CGI environment), and if you don't want it to auto-generate a whole CRUD application based on your database schema, it takes a lot more time to figure out than CGI::Application.
borisz mentioned that Apache AxKit is also an MVC framework. I apologize for missing it. I've never used it, so I can't really tell much about it, though. From the website:
Apache AxKit is an XML Application Server for Apache. It provides on-the-fly conversion from XML to any format, such as HTML, WAP or text using either W3C standard techniques, or flexible custom code. AxKit also uses a built-in Perl interpreter to provide some amazingly powerful techniques for XML transformation.
Yes, I left out more MVC - based systems. perrin points to a list containing server web application frameworks. Of that list, at least Apache::PageKit, and OpenInteract follow the MVC pattern. Check it out:
http://perl.apache.org/products/app-server.html
You could argue that having Class::DBI objects in the public API is not very good encapsulation anyway, but models can change for other reasons too.
http://perl.apache.org/docs/tutorials/tmpl/comparison/comparison.html
http://www.javaworld.com/javaworld/jw-07-1999/jw-07-toolbox.html
|
|---|