Saturday, June 5, 2010

Model–view–controller


Model–view–controller
Model–View–Controller (MVC) is a software architecture, currently considered an architectural pattern used in software engineering


Model
• A model is an object representing data or even activity, e.g. a database table or even some plant-floor production-machine process.
• The model manages the behavior and data of the application domain, responds to requests for information about its state and responds to instructions to change state.
• The model represents enterprise data and the business rules that govern access to and updates of this data. Often the model serves as a software approximation to a real-world process, so simple real-world modeling techniques apply when defining the model.
• The model is the piece that represents the state and low-level behavior of the component. It manages the state and conducts all transformations on that state. The model has no specific knowledge of either its controllers or its views. The system itself maintains links between model and views and notifies the views when the model changes state. The view is the piece that manages the visual display of the state represented by the model. A model can have more than one view.

View
• A view is some form of visualisation of the state of the model.
• The view manages the graphical and/or textual output to the portion of the bitmapped display that is allocated to its application.
• The view renders the contents of a model. It accesses enterprise data through the model and specifies how that data should be presented.
• The view is responsible for mapping graphics onto a device. A view typically has a one to one correspondence with a display surface and knows how to render to it. A view attaches to a model and renders its contents to the display surface.

Controller
• A controller offers facilities to change the state of the model. The controller interprets the mouse and keyboard inputs from the user, commanding the model and/or the view to change as appropriate.
• A controller is the means by which the user interacts with the application. A controller accepts input from the user and instructs the model and view to perform actions based on that input. In effect, the controller is responsible for mapping end-user action to application response.
• The controller translates interactions with the view into actions to be performed by the model. In a stand-alone GUI client, user interactions could be button clicks or menu selections, whereas in a Web application they appear as HTTP GET and POST requests. The actions performed by the model include activating business processes or changing the state of the model. Based on the user interactions and the outcome of the model actions, the controller responds by selecting an appropriate view.
• The controller is the piece that manages user interaction with the model. It provides the mechanism by which changes are made to the state of the model.

This separation of entity allows you to have nimbleness and flexibility in building and maintaining your application. For example, by separating the views, you can iterate on the appearance of your application without touching on any of the core business logic. You can also separate work by role, so that, for example designers can work on the views, while developers work on the model.


Advantages of using MVC

• There's no duplicated code.
• The business logic is encapsulated; hence the controller code is transparent and safer.
• The business logic can be used in several front ends like Web pages, Web services, Windows applications, services, etc.
• Exception handling is well managed showing the user only digested error messages.
• Testing every part of an application is easier as it can be done separately using automated methods.
• Application changes are easier to apply as they are focused in one part of the architecture only.