CSC/ECE 517 Fall 2009/wiki2 12 PatternClassification: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 32: Line 32:
The answer to this rhetorical question is no.  A novice would not use MVC because it is too difficult to understand 'how' MVC applies to their context, webapps.  This is a failure of patterns and the existing pattern classification scheme.  For software patterns to be more recognizeable and useful for the average developer, the specific context (domain) should be explicitly described.  For example, the context of  webapps the MVC solution is very different than the context in GUI applications.  Although the same pattern can be used in both, the problems are solved differently.  Thus we actually say MVC is a schema and not a pattern.
The answer to this rhetorical question is no.  A novice would not use MVC because it is too difficult to understand 'how' MVC applies to their context, webapps.  This is a failure of patterns and the existing pattern classification scheme.  For software patterns to be more recognizeable and useful for the average developer, the specific context (domain) should be explicitly described.  For example, the context of  webapps the MVC solution is very different than the context in GUI applications.  Although the same pattern can be used in both, the problems are solved differently.  Thus we actually say MVC is a schema and not a pattern.


= Existing Work =
= Existing Work =  


== Software ==
The Gang of Four patterns are the most famous.  They are classified according to creational, structural and behavioral characteristics.  There is also a J2EE catalog of patterns by SUN.  These are all classified as J2EE patterns but they can be split into presentation, business, and integration tier patterns.


== Knowledge Management ==
There is a good [http://www.cs.tut.fi/~kk/webstuff/PatternClassificationKalvot.pdf presentation] regarding pattern classification by Imed Hammouda and Jakub Rudzki.  In the presentation they suggest that patterns can be classifed by:
 
# Domain
# Paradigm
# Granularity
# Purpose
# Scope
# Discipline


== Templates ==


== Process ==


== Design ==


= Examples =  
= Examples =  


= Links =
= Links =
[http://www.cs.tut.fi/~kk/webstuff/PatternClassificationKalvot.pdf]

Revision as of 00:27, 10 October 2009

Originality, Clarity, Coverage, Definitions, Examples, Links, Organization.

Definition

A pattern is a solution to a problem in its context. A context is specific to the domain in which the problem is being solved. For example, in computer science software engineers often are surrounded by problems in similar contexts such as web and database infrastructure. Within these contexts there are repeatable solutions. Those solutions when described abstractly are are what we call patterns.

A more abstract concept than a pattern is a schema. A schema does not necessarily have any context but it does have structure and attributes. Many times schemas and patterns are mistakenly interchanged. The key to pattern recognition is that its context be described so that others can identify its usages.

The goal of patterns is to recognize and make use of a library of knowledge that can be used to solve problems. Often times, the same problems are 're-solved' without learning from the past experiences. As long as we similar contexts we will have patterns or knowledge that develop from those solved problems.

Problem

The problem with patterns is classification and recognition or usage. For example, a pattern that is not classified correctly will not be remembered and used. Several attempts to classify patterns has been made. The existing software classification of patterns uses the categories of:

  1. Structural
  2. Behavioral
  3. Creational

While these are good starting points for patterns, it is very hard to make use of this information in different contexts.

Domain Specific Classification

Domain specific classification may help make patterns more useful in various contexts. This is because they solution to the problem will be more specific to the context. Here are some examples of where domain specific classification was used:

  1. User Interface
  2. Information Visualization
  3. Computer Security
  4. Web Applications

For example, when building a webapp it is useful to use the Model-View-Controller pattern to organize access and control to and from the domain data. This pattern is structural. However, if a novice developer was to start building a webapp from scratch, would they turn to the literature on MVC to start their webapp architecture?

The answer to this rhetorical question is no. A novice would not use MVC because it is too difficult to understand 'how' MVC applies to their context, webapps. This is a failure of patterns and the existing pattern classification scheme. For software patterns to be more recognizeable and useful for the average developer, the specific context (domain) should be explicitly described. For example, the context of webapps the MVC solution is very different than the context in GUI applications. Although the same pattern can be used in both, the problems are solved differently. Thus we actually say MVC is a schema and not a pattern.

Existing Work

The Gang of Four patterns are the most famous. They are classified according to creational, structural and behavioral characteristics. There is also a J2EE catalog of patterns by SUN. These are all classified as J2EE patterns but they can be split into presentation, business, and integration tier patterns.

There is a good presentation regarding pattern classification by Imed Hammouda and Jakub Rudzki. In the presentation they suggest that patterns can be classifed by:

  1. Domain
  2. Paradigm
  3. Granularity
  4. Purpose
  5. Scope
  6. Discipline



Examples

Links

[1]