MVC managed hosting provider

Shared by: jolinmilioncherie
Categories
Tags
-
Stats
views:
1
posted:
5/17/2012
language:
English
pages:
9
Document Sample
scope of work template
							MVC

// introduction

No matter it is small software, such as an Internet browser or a calculator, or it is the
enterprise-level application, e.g., computer-aided design (CAD) or the complex data
warehouse, the Graphical User Interface (GUI) is always the most front end which
interacts with users. Therefore, the quality of GUI directly influences the user experience
and the usability of the software. As the users request the easier-and-easier-to-use
applications and the software engineers pay more and more attention on it, the study on
how to systematically design and develop the satisfying GUI becomes a serious theory.
When people started to develop GUI in the real life, they found out that the GUI
development just caused the same set of problems with the ones they encountered in their
system development. As a matter of fact, just because of the similarity, several different
but similar solutions were come up with. MVC was one of them.

// the old UI architectures

In the early time of software development, although the software engineers and
developers supplied many very nice GUI architectures, from the development perspective
some of these architectures actually had lots of problems which would potentially result
in some issues, e.g. maintenance, unit-testing and reusability, for the further
development. [Microsoft] was one of the creators of these GUI architectures. It indeed
brought the UI revolution into the industry in the year of 1990 when [Windows] version
3.0 was released. Since then it has strongly influenced the direction of the GUI
development. Even until now, some of the original ideas still work in some of the
undergoing projects.

http://www.diamondedge.com/products/docs/images/dmvapplet.jpg




Figure X is a typical UI architecture of Windows style. (It does not look too much
different from WinForm applications. However, in terms of development, they are quite
different.) [Marin Fowler] called it “Forms and Controls”. It presents a form composed
with many labels, text fields and buttons, which directly expose the two most essential
concepts of this architecture, i.e. the form and the control.

The form is specific to the window. It is the container of all the controls. Usually the
form takes care of two tasks:
     Screen layout: usually there is always a layout manager, which controls the
      arrangement of the controls. Different layout manager may arrange controls by
      different means. Some of them position controls by coordinates or offsets. Some of
      them just stack the controls in single direction. In addition to this, the form should
      also construct the hierarchic structure for controls working with each other.
     Form logic: it is the behavior between controls. A control usually needs to work
      with other controls to finish a task. This action happens out of any control.
      Therefore, it can not be easily programmed into the control themselves. Instead, it
      should be defined in the scope of the form.

The control can be taken as the smallest interactive unit with users. A control can have
several states. However, simply speaking, these states can be divided into two general
states, i.e. “Enabled” and “Disabled” states. An “enabled” control means it is ready to
work. In this state, basically it is responsible for two interactions.

One of the interactions is to listen to the registered events and call the corresponding
functions. Events are always the ones which directly “talk” with controls. There are all
kinds of events that can take place when an application is running, e.g. when a user click
on a button, the “ButtonClick” event is triggered, or when a system alarm alerts, the
“AlarmAlert” event happens. Generally they are system events and user input events.
They are just so many that the controls should be aware of them before they are able to
forward the messages to the responsible functions, which are usually called
“Enventhandlers”. Therefore, controls need to register the events that they can handle.
Each of control keeps a dictionary of the events that it has to deal with, and for each of
the event the control has to specify a responsible event handler. After the registration, the
control starts to listen. Whenever the control captures an incoming event, it will look the
event up in his dictionary. If the control can find it, it will call the specified event handler
to handle the event. Otherwise the control will just ignore it.

The other one is to display data. Some controls, like label, don’t really need to take any
input from users in the run time. Instead, they display data for the users. This is a kind of
one-way interaction. The displayed data can be various. They can be some informational
texts, e.g. the notes in a form, or they can be the result of some calculation, e.g. the
outcome of the currency converter, or they can be the state of some undergoing progress,
e.g. the temperature of the refrigerator. In any of these cases, the data will always come
from somewhere. The most common source is the database.

However, considering the performance and data’s integrity, in the real applications most
of time there are there copies of the data involved:
   One copy of the data is of course the data residing in the database. This data is always
    stored in certain database-specific structure and managed by the hosting database
    server. It is the lasting record of the data, shared by multiple applications and users
    who have the access to it. According to [Martin Fowler]’s terminology, it is called the
    record state.
   Another copy is kept inside in-memory Records-Sets within the application. As for
    the concrete location, it depends on the type of the application. Most of the web
    applications request the client machine to provide the certain temporary area to save
    the data relevant to current communications between the application and database. In
    Internet terminology, this is usually what [cookies] refer to. However, there is no such
    area in desktop applications. Instead, the hosting machine allocates some part of the
    main memory (RAM) for the desktop application to store the data just in the run-time.
    [Martin Fowler] called this copy of data the session state
   The final copy of data lies in the GUI components themselves. This is the data that
    the users can directly on the screen, thus [Martin Fowler] named it as the screen state.
    Because this data always entirely or partially comes from the in-memory copy of data,
    and also this data can directly update the corresponding data in memory, it is very
    non-trivial to keep the session state and the screen state synchronized all the time.

People want to be ensured that the data they can see from the screen is the real data the
application is presenting, and also the data they input to the screen is being processed by
the application at the backstage. Then the synchronization between the session state and
screen state is strongly required. However, it is quite complicated mechanism, especially
from the programming perspective, because there are always two parties involved and
each of the party should be promised that it will be immediately updated once the linked
party is changed. Things can become really messy when many UI components are
involved, if there is no good mechanism to facility the synchronization. Fortunately, Data
binding (http://www.codeproject.com/vb/net/databindingconcepts.asp) can make life
easier.

Simply speaking, data binding is a powerful feature that enables visual elements in a
client to connect to a data source such as DataSets, DataViews, Arrays etc. Some of the
visual elements in the client side can be TextBox, DataGrid etc. Here the visual element
stores the screen state data, whereas the data source keeps the session data. Data binding
can make sure that any change to either the control data, or the underlying data source
was immediately propagated to the other. Therefore if the thermometer changes the in-
memory data to the current temperature, the bound UI component in the front-end will be
effectively updated. Similarly, if the user sets the temperature by inputting certain value,
the underlying data will force the air container to adjust the environmental temperature to
that value. Generally, data binding can be carried out in one way or two ways, which is
totally up to the scenarios.
This “Forms and controls” architecture was quite sufficient and effective in the early time
of UI development. However, as the recorded data was exponentially booming, the
software had to be equipped with very complex GUI to contain and display various data
on the screen. From that moment on, the traditional “Forms and controls” architecture
started to expose many issues. Among these issues, the ones engineers criticized most
were unit-testability, maintenance and reusability.

The key disadvantage of “Forms and controls” architecture is that the data and
presentation are mixed together. This directly resulted in these three main issues. Firstly,
since the data can not be separated from the presentation, the developers can not do the
testing on the data models, and even worse is that they have to consider developing the
data models in the manner that the designers can possibly build the presentation on the
data models. The same drawback happened to the designers as well, because they had to
worry about how the data can populate into their designed presentation. They can not
independently design the presentation, and they can not freely test the presentation either.
Secondly, the mixed architecture became very troublesome when either the presentation
or the data model needs to be changed. Any change on one side would directly caused the
other side functioned incorrectly or even could not function at all. Therefore, the two
parts needed to be involved in the maintenance of the software. Lastly, the UI
components had the least potential to be reused. Because any piece of the presentation is
related to certain dataset, if this UI control needs to be applied into a new environment,
the undergoing dataset in the new environment should match the requirement of the UI
control, which is quite unlikely to happen. Therefore, a UI control which has the same
presentation but different dataset has to be created.

Therefore, to solve these issues, it is necessary to separate the data from the
presentation[Refer to separeated presentation ]. The data should be completely self-
contained and work without reference to the presentation. Additionally, it should also be
able to support multiple presentations, possibly simultaneously. Actually, the division of
components has enormous advantages. Since the functional units are isolated from each
other to the maximal extent, the designers and developers can just concentrate on their
own units without the knowledge about everything in other units. Furthermore, to make
the modularity even cleaner, the interactive part of the presentation can be also taken out.
Then the three-way division of application can thoroughly separate the parts that
represent the model of the underlying data from the way the model is presented to the
user and from the way the user interacts with it. This is the origin of the idea of Model-
View-Controller (MVC).

MVC Pattern

Introduction

Model-view-controller (MVC) is an architectural pattern used in software engineering.
In complex computer applications that present a large amount of data to the user, a
developer often wishes to separate data (model) and user interface (view) concerns, so
that changes to the user interface will not affect data handling, and that the data can be
reorganized without changing the user interface. The model-view-controller solves this
problem by decoupling data access and business logic from data presentation and user
interaction, by introducing an intermediate component: the controller.

MVC is a very complex architectural pattern, and understandably it also looks very
complex to implement. However, if the whole architectural pattern is analyzed from
design pattern perspectives, it is not hard to find out that the combination of different
design patterns can make the implementation of MVC a lot easier. \textit{View} can be
seen as a tree, thus apparently it can be realized in \textit{Composition Pattern}. The
relationship between \textit{View} and \textit{Model} can be expressed in
\textit{Observer Pattern}. \textit{Controller} controls the representation of \textit{View},
therefore it can be implemented in \textit{Strategy Pattern}. \textit{Model} is usually a
mediator, and it should be realized in \textit{Mediator Pattern}.

Model


\textit{Model} is used to manage information and notify observers when that information
changes. It contains only data and functionality that are related by a common purpose. If
two groups of unrelated data and functionality are needed, two separate models should be
created.

\textit{Model} encapsulates more than just data and functions that operate on it. A model
is meant to serve as a computational approximation or abstraction of some real world
process or system. It captures not only the state of a process or system, but how the
system works. This makes it very easy to use real-world modeling techniques in defining
your models. For example, a model is used to bridge the computational back-end with the
GUI front-end. In this scenario, the model wraps and abstracts the functionality of a
computation engine or hardware system and acts as an agent requesting the real services
of the system it models.

View
\textit{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. Additionally, the view
automatically redraws the affected part of the image to reflect those changes, when the
model changes. There can be multiple views onto the same model and each of these
views can render the contents of the model to a different display surface.

\textit{View} is designed to be nested. A view may be a composite view containing
several sub-views, which may themselves contain several sub-views. As a matter of fact,
most windows in fact involve at least two views, one nested inside the other.

Controller

\textit{Controller} is responsible for taking the inputs from users and instructing
\textit{Model} and \textit{View} to perform actions based on the inputs. The purpose of
\texit{Controller} is to act as a dispatcher. It chooses the right model and the
corresponding view, then the request from users can be handled by the right business
logic and the results can be displayed on the GUI front-end representing the view.
]\textit{Controller} does not process the data. For example, when a user clicks a button,
the controller accepts the request, then transfers the message to the model, tells the model
what to do, and chooses the qualified view to return the results to the user. Therefore, it
makes sense that a model can be mapped to several views, and a view can be mapped to
several models as well.

How They Work
Figure \ref{fig:MVC} shows the communication among \textit{Model}, \textit{View}
and \textit{Controller}. In this figure, \textit{Model} points to \textit{View}, which
allows it to send \textit{View} event notifications of change. Of course, \textit{Model}'s
pointer to \textit{View} is only a base class pointer; the model should know nothing
about the kind of \textit{Views} which observe it. By contrast, \textit{View} knows
exactly what kind of \textit{Model} it observes. \textit{View} also has a solid-line
pointer to the model, allowing it to call any of the model's functions, e.g. state query. In
addition, \textit{View} also has a pointer to \textit{Controller}, but it should not call
functions in \textit{Controller} aside from those defined in the base class. The reason is
one controller may need to be swapped out for another, so the dependencies should be
kepet minimal. \textit{Controller} has pointers to both \textit{Model} and \textit{View}
and knows the type of both. Since \textit{Controller} defines the behavior of the triad, it
must know the type of both \textit{Model} and \textit{View} in order to translate user
input into application response.

A Concrete Example

Here MVC pattern is explained with the help of a simple spinner component which
consists of a text field and two arrow buttons that can be used to increment or decrement
a numeric value shown in the text field. Currently there is not an element type that can
directly represent a spinner component, but it easy is to synthesize a spinner using
existing element types.




The spinner’s data is held in a model that is shared with the text field. The text field
provides a view of the spinner’s current value. Each button in the spinner is an event
source that spawns an action event every time it is clicked. The buttons can be hooked up
to trampolines that receive action events, and route them to an action listener that
eventually handles that event. Recall that a trampoline is a predefined action listener that
simply delegates action handling to another listener.

Depending on the source of the event, the ultimate action listener either increments or
decrements the value held in the model. As a matter of fact, the action listener is an
example of a controller.

The trampolines, which initially receive the action events fired by the arrow buttons, are
also controllers. However, instead of modifying the spinner’s model directly, they
delegate the task to a separate controller.

Advantages and Disadvantages
Most of the procedure programming languages adopt the mixed programming model.
They don’t separate the data, the business logic and user interface, or at least there is only
a little effort put on such separation. Therefore, even though the development can be done
fast, but because of the mixed structure, the flexibility and maintenance are quite
challenged. It is fairly different to meet the changing requirements from the customers.
However, MVC insists on making the clear division of these three modules. Although it
takes extra work, the whole structure is much clearer, and any change in the future can
also be easily taken care of.

Advantages

   1. It has the capability of mapping several views to one model. In the case that the
      customers change the ideas quite often, they might have the demand of having
      various possibilities to access the application. For example, users can book a
      flight ticket via a desktop application, in the website over Internet or in whatever
      other ways, but the process for reserving a ticket is the same. In the MVC pattern,
      mapping several views of booking tickets to one model of accepting the booking
      requests and making the reservations is enough to meet the need. By this means, it
      avoids the code duplications, minimize the code maintenance. Once the model
      needs to be changed, it does not break the views.
   2. Because one application is divided into three parts, sometimes changing one of
      them can just meet the changed requirements. For example, only the model part
      should be changed if some business logic needs to be changed or new business
      logic needs to be added.
   3. It is better for the software engineering management. Since different modules take
      care of their own tasks, and the applications in each of the modules share some
      common features, it supplies the possibility to generate the management code in
      the manner of engineering.

Disadvantages

   1. It increases the complexity of the system’s structure and according
      implementation. For the simple user interface, strictly complying with MVC and
      separating the model, the view and the controller just involves a lot more code,
      and decrease the working efficiency accordingly.
   2. The dependency between \textit{View} and \textit{Controller} is too tight. They
      are indeed separate, but functionally reply on each other very much. \textit{View}
      without \textit{Controller} has much less meaning, so does \textit{Controller}
      without \textit{View}. This prevents the reusability of any of the both alone.
   3. \textit{View} accesses the data from \textit{Model} with lower efficiency. To
      retrieve the complete data to display, \textit{View} might need to make several
      calls to \textit{Model}. During the calls, the unchanged data probably has to be
      retrieved again. If the mount of the data is fairly big, this can greatly lower down
      the performance.


DM-V-VM

Background

MVC is a beautiful paradigm for the development of the application with graphical user
interface, and it is actually well realized in the web applications nowadays. However, in
the field of desktop applications, software engineers find out that it is still difficult to
completely adopt this paradigm to separate the user interface, data and business logic. A
better pattern is expected.

Since WPF was born, it changed the rules for UI best practice, but it didn't update the
book. With all the new and improved DataBinding and Command features, a new set of
patterns have emerged, including a recommended pattern called DataModel-View-
ViewModel (DM-V-VM), which is brought up by Dan Crevier. This pattern mainly helps
the implementation of WPF based application and is believed to enable a better Designer-
Developer workflow.
WPF has changed a few things:

      through declarative programming (i.e. XAML) a lot of plumbing is created for
       you which especially in the context of databinding saves a lot of code. Another
       area is e.g. animations and styling; what previously had to be programmed in C#
       is now possible inside XAML through triggers or events.
      in the MVC pattern the View is presenting the data from the Model but now
       XAML does this job and sometimes need things like value converters or the
       ObservableCollection to update the presentation
      user controls in WPF allow you to define a default generic.xaml style which can
       be overriden when used inside an application, i.e. styling of existing controls is a
       new feature which adds flexibility to the presentation of the Model
      XAML allows a wide variety of mechanisms to change things or to react to user
       actions; through the ICommand that is now defined in the framework, through
       triggers in XAML, through animations, through event bubbling or tunneling
       (which is also new)

						
Related docs
Other docs by jolinmilioncherie
Low Cost Life Insurance Quote
Views: 80  |  Downloads: 0
Health Services Eyes
Views: 71  |  Downloads: 0
Friday January ma
Views: 0  |  Downloads: 0
WorkSPACE Deliverable
Views: 124  |  Downloads: 0
Home Equity Loan Butler Eagle
Views: 60  |  Downloads: 0
QUEENSLAND YOUNG LEGENDS
Views: 38  |  Downloads: 0
Criminal Case Update
Views: 87  |  Downloads: 0