SlideShare a Scribd company logo
1 of 23
What is Architecture?
ļ‚Ŗ An overall blueprint/model describing the
structures and properties of a "system"
ļ‚Ŗ designed mechanisms (causal chains & loops)
which lead to -
ļ‚Ŗ emergent (intended) behavior (but always
some unintended behavior as well)
ļ‚Ŗ "mapping" the boundaries (questions about the level
of "closure")
Software Architecture
ā€¢ Captures the gross structure of a system
ā€¢ How it is composed of interacting parts
ā€¢ How the interactions take place
ā€¢ Key properties of the parts
ā€¢ Provides a way of analyzing systems at a high level
of abstraction !
ā€¢ Illuminates top-level design decisions
Software Architecture Patterns
ā€¢ Architectural pattern are software patterns that offer
well-established solutions to architectural problems in
software engineering. It gives description of the
elements and relation type together with a set of
constraints on how they may be used. An architectural
pattern expresses a fundamental structural
organization schema for a software system, which
consists of subsystems, their responsibilities and
interrelations. In comparison to design patterns,
architectural patterns are larger in scale.
Software Architecture Patterns
ā€¢ The fundamental problem to be solved with a large
system is how to break it into chunks manageable
for human programmers to understand, implement,
and maintain.
ā€¢ Large-scale patterns for this purpose are called
architectural patterns. Design patterns are similar,
but lower level and smaller scale than architectural
patterns.
Typical Architectural Patterns (styles)
File Transfer
Shared Database
- How can I integrate multiple applications so that
they work together and can exchange information?
integration styles for (enterprise) messaging
Remote Procedure
Messaging
ā€¢
Pipes and Filters
ā€¢ The Pipes and Filters architectural pattern [style]
provides a structure for systems that process a stream
of data. Each processing step is encapsulated in a
filter component. Data is passed through pipes
between adjacent filters. Recombining filters allows
you to build families of related systems. [POSA p53]
Example: Traditional Pipes & Filters
e.g. using sed and awk
Example: Apache Cacoonā€™s Pipes
& xslt Filters
Blackboard Architectural Pattern
"The Blackboard architectural pattern is useful for problems for which
no deterministic solution strategies are known. In Blackboard several
specialized subsystems assemble their knowledge to build a possibility
partial or approximate solution." (Buschmann, F., R. Meunier, H.
Rohnert, P. Sommerlad, and M. Stal. Pattern-Oriented Software
Architecture: A System Of Patterns. West Sussex, England: John Wiley
& Sons Ltd.)
The Blackboard pattern decouples interacting agents from each other.
Instead of communicating directly, agents interact through the mediation
of an intermediary agent. This intermediary provides both time and
location transparency to the interacting agents. Transparency of time is
achieved as agents who want to exchange data don't have to receive
the data when it is sent but can pick it up later. The locations of the
receiving agents are transparent in that the sending agent does not
need to address any other agent specifically by its name; the mediator
forwards the data accordingly.
The blackboard is an example of a passive coordination medium. While it
allows agents to share data, it does not specify how the agents are expected
to react to the data they receive. In other words, all the real coordination
knowledge remains hidden in the agents.
Blackboard Architectural Pattern
Tiered/layered Architecture Example:
Open Systems Interconnection (OSI) & Transmission Control
Protocol/Internet Protocol (TCP/IP)
Tiered Architecture (layering)
2 - tier architecture (traditional client-server)
A two-way interaction in a client/server environment, in which the user
interface is stored in the client and the data are stored in the server.
The application logic can be in either the client or the server.
3 Tier Architecture
Model-View-Controller
The MVC paradigm is a way of breaking an application, or
even just a piece of an application's interface, into three
parts: the model, the view, and the controller. MVC was
originally developed to map the traditional input, processing,
output roles into the GUI realm:
Input ā†’ Processing ā†’ Output
Controller ā†’ Model ā†’ View
Model-View-Controller
The pattern isolates business logic from input and presentation,
permitting independent development, testing and maintenance
of each.
MVC View
It is the domain-specific representation of the data on which the
application operates. Domain logic adds meaning to raw data (for
example, calculating whether today is the user's birthday, or the
totals, taxes, and shipping charges for shopping cart items). When
a model changes its state, it notifies its associated views so they
can refresh.
Many applications use a persistent storage mechanism (such as a
database) to store data. MVC does not specifically mention the
data access layer because it is understood to be underneath or
encapsulated by the model. Models are not data access objects
although in very simple apps, with little domain logic, there is no
real distinction to be made. Also, the ActiveRecord is an accepted
design pattern which merges domain logic and data access code -
a model which knows how to persist itself.
MVC View & Controller
MVC View:
Renders the model into a form suitable for interaction, typically a
user interface element. Multiple views can exist for a single model
for different purposes.
MVC Controller:
Receives input and initiates a response by making calls on model
objects.
An MVC application may be a collection of model/view /controller
triplets, each responsible for a different UI element.
PHP MVC Frameworks
lots and lotsā€¦
codeigniter, cake, kohana, jelix, limonade, mojavi, zend,
zoop, symfony etc. etc.
see: http://www.phpwact.org/php/mvc_frameworks
MVC Fat Vs. Thin Controllers
watch: http://www.youtube.com/watch?v=91C7ax0UAAc
ruby on rails ā€˜fatā€™ model, ā€˜thinā€™ controller approach
Rails MVC : Model
ActiveRecord:
ā€¢ Maintains the relationship between Object and Database
and handles validation, association, transactions, and
more.
ā€¢ This subsystem is implemented in ActiveRecord library
which provides an interface and binding between the
tables in a relational database and the Ruby program
code that manipulates database records. Ruby method
names are automatically generated from the field names
of database tables, and so on.
Rails MVC : View
ActionView :
ā€¢ A presentation of data in a particular format, triggered by
a controller's decision to present the data. They are
script based templating systems like JSP, ASP, PHP and
very easy to integrate with AJAX technology.
ā€¢ This subsystem is implemented in ActionView library
which is an Embedded Ruby (ERb) based system for
defining presentation templates for data presentation.
Every Web connection to a Rails application results in
the displaying of a view.
Rails MVC : Controller
ActionController:
ā€¢ The facility within the application that directs traffic, on the
one hand querying the models for specific data, and on the
other hand organizing that data (searching, sorting,
massaging it) into a form that fits the needs of a given
view.
ā€¢ This subsystem is implemented in ActionController which
is a data broker sitting between ActiveRecord (the
database interface) and ActionView (the presentation
engine).
MVC Advantages
The main objective of the MVC design pattern is separation of
concerns. It provides an isolation of the applicationā€™s presentation layer
that displays the data in the user interface, from the way the data is
actually processed. In other words, it isolates the applicationā€™s data
from how the data is actually processed by the applicationā€™s business
logic layer. The biggest advantage of the MVC design pattern is that
you have a nice isolation of these components/layers and you can
change any one of them without the rest being affected. Here is the list
of the major advantages of this pattern.
ā€¢ It provides a clean separation of concerns.
ā€¢ It is easier to test code that implements this pattern.
ā€¢ It promotes better code organization, extensibility, scalability and
code re-use.
ā€¢ It facilitates de-coupling the application's layers.

More Related Content

What's hot

Architectural Design Report G4
Architectural Design Report G4Architectural Design Report G4
Architectural Design Report G4
Prizzl
Ā 
Lecture 16 requirements modeling - scenario, information and analysis classes
Lecture 16   requirements modeling - scenario, information and analysis classesLecture 16   requirements modeling - scenario, information and analysis classes
Lecture 16 requirements modeling - scenario, information and analysis classes
IIUI
Ā 
4+1view architecture
4+1view architecture4+1view architecture
4+1view architecture
drewz lin
Ā 
4 agile modeldevelopement-danielleroux
4 agile modeldevelopement-danielleroux4 agile modeldevelopement-danielleroux
4 agile modeldevelopement-danielleroux
IBM
Ā 
Designing and documenting software architecture unit 5
Designing and documenting software architecture unit 5Designing and documenting software architecture unit 5
Designing and documenting software architecture unit 5
Sudarshan Dhondaley
Ā 
Design engineering
Design engineeringDesign engineering
Design engineering
Vikram Dahiya
Ā 
05 architectural styles
05 architectural styles05 architectural styles
05 architectural styles
Majong DevJfu
Ā 
Design techniques
Design techniquesDesign techniques
Design techniques
Amit Debnath
Ā 

What's hot (20)

Architectural Design Report G4
Architectural Design Report G4Architectural Design Report G4
Architectural Design Report G4
Ā 
Design and Implementation in Software Engineering
Design and Implementation in Software EngineeringDesign and Implementation in Software Engineering
Design and Implementation in Software Engineering
Ā 
Architecture and design
Architecture and designArchitecture and design
Architecture and design
Ā 
11.3.14&22.1.16
11.3.14&22.1.1611.3.14&22.1.16
11.3.14&22.1.16
Ā 
Architectural structures and views
Architectural structures and viewsArchitectural structures and views
Architectural structures and views
Ā 
Lecture 16 requirements modeling - scenario, information and analysis classes
Lecture 16   requirements modeling - scenario, information and analysis classesLecture 16   requirements modeling - scenario, information and analysis classes
Lecture 16 requirements modeling - scenario, information and analysis classes
Ā 
Pattern oriented architecture for web based architecture
Pattern oriented architecture for web based architecturePattern oriented architecture for web based architecture
Pattern oriented architecture for web based architecture
Ā 
4+1view architecture
4+1view architecture4+1view architecture
4+1view architecture
Ā 
software engineering
software engineeringsoftware engineering
software engineering
Ā 
4 agile modeldevelopement-danielleroux
4 agile modeldevelopement-danielleroux4 agile modeldevelopement-danielleroux
4 agile modeldevelopement-danielleroux
Ā 
Software Design and Modularity
Software Design and ModularitySoftware Design and Modularity
Software Design and Modularity
Ā 
Software design
Software designSoftware design
Software design
Ā 
Exploiting Web Technologies to connect business process management and engine...
Exploiting Web Technologies to connect business process management and engine...Exploiting Web Technologies to connect business process management and engine...
Exploiting Web Technologies to connect business process management and engine...
Ā 
Designing and documenting software architecture unit 5
Designing and documenting software architecture unit 5Designing and documenting software architecture unit 5
Designing and documenting software architecture unit 5
Ā 
Design engineering
Design engineeringDesign engineering
Design engineering
Ā 
05 architectural styles
05 architectural styles05 architectural styles
05 architectural styles
Ā 
Ch10
Ch10Ch10
Ch10
Ā 
Design techniques
Design techniquesDesign techniques
Design techniques
Ā 
Software design
Software designSoftware design
Software design
Ā 
Facade pattern
Facade patternFacade pattern
Facade pattern
Ā 

Viewers also liked

Software Architecture and Project Management module III : PATTERN OF ENTERPRISE
Software Architecture and Project Management module III : PATTERN OF ENTERPRISESoftware Architecture and Project Management module III : PATTERN OF ENTERPRISE
Software Architecture and Project Management module III : PATTERN OF ENTERPRISE
sreeja_rajesh
Ā 
10 - Architetture Software - More architectural styles
10 - Architetture Software - More architectural styles10 - Architetture Software - More architectural styles
10 - Architetture Software - More architectural styles
Majong DevJfu
Ā 
Chapter 5 software design
Chapter 5 software designChapter 5 software design
Chapter 5 software design
Piyush Gogia
Ā 

Viewers also liked (10)

Software Architecture and Project Management module III : PATTERN OF ENTERPRISE
Software Architecture and Project Management module III : PATTERN OF ENTERPRISESoftware Architecture and Project Management module III : PATTERN OF ENTERPRISE
Software Architecture and Project Management module III : PATTERN OF ENTERPRISE
Ā 
2
22
2
Ā 
An Introduction to Software Architecture
An Introduction to Software ArchitectureAn Introduction to Software Architecture
An Introduction to Software Architecture
Ā 
10 - Architetture Software - More architectural styles
10 - Architetture Software - More architectural styles10 - Architetture Software - More architectural styles
10 - Architetture Software - More architectural styles
Ā 
Software architecture patterns
Software architecture patternsSoftware architecture patterns
Software architecture patterns
Ā 
SOLID - Principles of Object Oriented Design
SOLID - Principles of Object Oriented DesignSOLID - Principles of Object Oriented Design
SOLID - Principles of Object Oriented Design
Ā 
Software design patterns ppt
Software design patterns pptSoftware design patterns ppt
Software design patterns ppt
Ā 
Chapter 5 software design
Chapter 5 software designChapter 5 software design
Chapter 5 software design
Ā 
Software design
Software designSoftware design
Software design
Ā 
Architecture design in software engineering
Architecture design in software engineeringArchitecture design in software engineering
Architecture design in software engineering
Ā 

Similar to Cs 1023 lec 2 (week 1) edit 1

Distributed Systems Architecture in Software Engineering SE11
Distributed Systems Architecture in Software Engineering SE11Distributed Systems Architecture in Software Engineering SE11
Distributed Systems Architecture in Software Engineering SE11
koolkampus
Ā 
Design engineering
Design engineeringDesign engineering
Design engineering
Vikram Dahiya
Ā 

Similar to Cs 1023 lec 2 (week 1) edit 1 (20)

MVC
MVCMVC
MVC
Ā 
Struts(mrsurwar) ppt
Struts(mrsurwar) pptStruts(mrsurwar) ppt
Struts(mrsurwar) ppt
Ā 
Unit-3.doc
Unit-3.docUnit-3.doc
Unit-3.doc
Ā 
Distributed Systems Architecture in Software Engineering SE11
Distributed Systems Architecture in Software Engineering SE11Distributed Systems Architecture in Software Engineering SE11
Distributed Systems Architecture in Software Engineering SE11
Ā 
Design patterns
Design patternsDesign patterns
Design patterns
Ā 
Introduction to ASP.NET Core MVC and the MVC Pattern.pptx
Introduction to ASP.NET Core MVC and the MVC Pattern.pptxIntroduction to ASP.NET Core MVC and the MVC Pattern.pptx
Introduction to ASP.NET Core MVC and the MVC Pattern.pptx
Ā 
Ch12
Ch12Ch12
Ch12
Ā 
Architectural Design & Patterns
Architectural Design&PatternsArchitectural Design&Patterns
Architectural Design & Patterns
Ā 
Architectural design of software
Architectural  design of softwareArchitectural  design of software
Architectural design of software
Ā 
Asp.net,mvc
Asp.net,mvcAsp.net,mvc
Asp.net,mvc
Ā 
Chapter 3_Software Design sunorganisedASE_BW_finalised.ppt
Chapter 3_Software Design sunorganisedASE_BW_finalised.pptChapter 3_Software Design sunorganisedASE_BW_finalised.ppt
Chapter 3_Software Design sunorganisedASE_BW_finalised.ppt
Ā 
Lec 4.ppt
Lec 4.pptLec 4.ppt
Lec 4.ppt
Ā 
Design engineering
Design engineeringDesign engineering
Design engineering
Ā 
MVC Pattern. Flex implementation of MVC
MVC Pattern. Flex implementation of MVCMVC Pattern. Flex implementation of MVC
MVC Pattern. Flex implementation of MVC
Ā 
Ch 6
Ch 6Ch 6
Ch 6
Ā 
[2017/2018] Introduction to Software Architecture
[2017/2018] Introduction to Software Architecture[2017/2018] Introduction to Software Architecture
[2017/2018] Introduction to Software Architecture
Ā 
[2016/2017] Introduction to Software Architecture
[2016/2017] Introduction to Software Architecture[2016/2017] Introduction to Software Architecture
[2016/2017] Introduction to Software Architecture
Ā 
06 fse design
06 fse design06 fse design
06 fse design
Ā 
Software Engineering 101
Software Engineering 101Software Engineering 101
Software Engineering 101
Ā 
Software Design
Software Design Software Design
Software Design
Ā 

More from stanbridge

More from stanbridge (20)

Micro Lab 3 Lecture
Micro Lab 3 LectureMicro Lab 3 Lecture
Micro Lab 3 Lecture
Ā 
Creating a poster v2
Creating a poster v2Creating a poster v2
Creating a poster v2
Ā 
Creating a poster
Creating a posterCreating a poster
Creating a poster
Ā 
Sample poster
Sample posterSample poster
Sample poster
Ā 
OT 5018 Thesis Dissemination
OT 5018 Thesis DisseminationOT 5018 Thesis Dissemination
OT 5018 Thesis Dissemination
Ā 
Ot5101 005 week 5
Ot5101 005 week 5Ot5101 005 week 5
Ot5101 005 week 5
Ā 
Ot5101 005 week4
Ot5101 005 week4Ot5101 005 week4
Ot5101 005 week4
Ā 
Compliance, motivation, and health behaviors
Compliance, motivation, and health behaviors Compliance, motivation, and health behaviors
Compliance, motivation, and health behaviors
Ā 
Ch 5 developmental stages of the learner
Ch 5   developmental stages of the learnerCh 5   developmental stages of the learner
Ch 5 developmental stages of the learner
Ā 
OT 5101 week2 theory policy
OT 5101 week2 theory policyOT 5101 week2 theory policy
OT 5101 week2 theory policy
Ā 
OT 5101 week3 planning needs assessment
OT 5101 week3 planning needs assessmentOT 5101 week3 planning needs assessment
OT 5101 week3 planning needs assessment
Ā 
Ot5101 week1
Ot5101 week1Ot5101 week1
Ot5101 week1
Ā 
NUR 304 Chapter005
NUR 304 Chapter005NUR 304 Chapter005
NUR 304 Chapter005
Ā 
NUR 3043 Chapter007
NUR 3043 Chapter007NUR 3043 Chapter007
NUR 3043 Chapter007
Ā 
NUR 3043 Chapter006
NUR 3043 Chapter006NUR 3043 Chapter006
NUR 3043 Chapter006
Ā 
NUR 3043 Chapter004
NUR 3043 Chapter004NUR 3043 Chapter004
NUR 3043 Chapter004
Ā 
3043 Chapter009
3043 Chapter0093043 Chapter009
3043 Chapter009
Ā 
3043 Chapter008
 3043 Chapter008 3043 Chapter008
3043 Chapter008
Ā 
Melnyk ppt chapter_21
Melnyk ppt chapter_21Melnyk ppt chapter_21
Melnyk ppt chapter_21
Ā 
Melnyk ppt chapter_22
Melnyk ppt chapter_22Melnyk ppt chapter_22
Melnyk ppt chapter_22
Ā 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(ā˜Žļø+971_581248768%)**%*]'#abortion pills for sale in dubai@
Ā 

Recently uploaded (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
Ā 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
Ā 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Ā 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
Ā 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
Ā 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
Ā 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
Ā 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
Ā 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
Ā 
Finology Group ā€“ Insurtech Innovation Award 2024
Finology Group ā€“ Insurtech Innovation Award 2024Finology Group ā€“ Insurtech Innovation Award 2024
Finology Group ā€“ Insurtech Innovation Award 2024
Ā 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Ā 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Ā 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
Ā 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
Ā 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Ā 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
Ā 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
Ā 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
Ā 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
Ā 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Ā 

Cs 1023 lec 2 (week 1) edit 1

  • 1. What is Architecture? ļ‚Ŗ An overall blueprint/model describing the structures and properties of a "system" ļ‚Ŗ designed mechanisms (causal chains & loops) which lead to - ļ‚Ŗ emergent (intended) behavior (but always some unintended behavior as well) ļ‚Ŗ "mapping" the boundaries (questions about the level of "closure")
  • 2. Software Architecture ā€¢ Captures the gross structure of a system ā€¢ How it is composed of interacting parts ā€¢ How the interactions take place ā€¢ Key properties of the parts ā€¢ Provides a way of analyzing systems at a high level of abstraction ! ā€¢ Illuminates top-level design decisions
  • 3. Software Architecture Patterns ā€¢ Architectural pattern are software patterns that offer well-established solutions to architectural problems in software engineering. It gives description of the elements and relation type together with a set of constraints on how they may be used. An architectural pattern expresses a fundamental structural organization schema for a software system, which consists of subsystems, their responsibilities and interrelations. In comparison to design patterns, architectural patterns are larger in scale.
  • 4. Software Architecture Patterns ā€¢ The fundamental problem to be solved with a large system is how to break it into chunks manageable for human programmers to understand, implement, and maintain. ā€¢ Large-scale patterns for this purpose are called architectural patterns. Design patterns are similar, but lower level and smaller scale than architectural patterns.
  • 5. Typical Architectural Patterns (styles) File Transfer Shared Database - How can I integrate multiple applications so that they work together and can exchange information? integration styles for (enterprise) messaging Remote Procedure Messaging ā€¢
  • 6. Pipes and Filters ā€¢ The Pipes and Filters architectural pattern [style] provides a structure for systems that process a stream of data. Each processing step is encapsulated in a filter component. Data is passed through pipes between adjacent filters. Recombining filters allows you to build families of related systems. [POSA p53]
  • 7. Example: Traditional Pipes & Filters e.g. using sed and awk
  • 8. Example: Apache Cacoonā€™s Pipes & xslt Filters
  • 9. Blackboard Architectural Pattern "The Blackboard architectural pattern is useful for problems for which no deterministic solution strategies are known. In Blackboard several specialized subsystems assemble their knowledge to build a possibility partial or approximate solution." (Buschmann, F., R. Meunier, H. Rohnert, P. Sommerlad, and M. Stal. Pattern-Oriented Software Architecture: A System Of Patterns. West Sussex, England: John Wiley & Sons Ltd.) The Blackboard pattern decouples interacting agents from each other. Instead of communicating directly, agents interact through the mediation of an intermediary agent. This intermediary provides both time and location transparency to the interacting agents. Transparency of time is achieved as agents who want to exchange data don't have to receive the data when it is sent but can pick it up later. The locations of the receiving agents are transparent in that the sending agent does not need to address any other agent specifically by its name; the mediator forwards the data accordingly.
  • 10. The blackboard is an example of a passive coordination medium. While it allows agents to share data, it does not specify how the agents are expected to react to the data they receive. In other words, all the real coordination knowledge remains hidden in the agents. Blackboard Architectural Pattern
  • 11. Tiered/layered Architecture Example: Open Systems Interconnection (OSI) & Transmission Control Protocol/Internet Protocol (TCP/IP)
  • 12. Tiered Architecture (layering) 2 - tier architecture (traditional client-server) A two-way interaction in a client/server environment, in which the user interface is stored in the client and the data are stored in the server. The application logic can be in either the client or the server.
  • 14. Model-View-Controller The MVC paradigm is a way of breaking an application, or even just a piece of an application's interface, into three parts: the model, the view, and the controller. MVC was originally developed to map the traditional input, processing, output roles into the GUI realm: Input ā†’ Processing ā†’ Output Controller ā†’ Model ā†’ View
  • 15. Model-View-Controller The pattern isolates business logic from input and presentation, permitting independent development, testing and maintenance of each.
  • 16. MVC View It is the domain-specific representation of the data on which the application operates. Domain logic adds meaning to raw data (for example, calculating whether today is the user's birthday, or the totals, taxes, and shipping charges for shopping cart items). When a model changes its state, it notifies its associated views so they can refresh. Many applications use a persistent storage mechanism (such as a database) to store data. MVC does not specifically mention the data access layer because it is understood to be underneath or encapsulated by the model. Models are not data access objects although in very simple apps, with little domain logic, there is no real distinction to be made. Also, the ActiveRecord is an accepted design pattern which merges domain logic and data access code - a model which knows how to persist itself.
  • 17. MVC View & Controller MVC View: Renders the model into a form suitable for interaction, typically a user interface element. Multiple views can exist for a single model for different purposes. MVC Controller: Receives input and initiates a response by making calls on model objects. An MVC application may be a collection of model/view /controller triplets, each responsible for a different UI element.
  • 18. PHP MVC Frameworks lots and lotsā€¦ codeigniter, cake, kohana, jelix, limonade, mojavi, zend, zoop, symfony etc. etc. see: http://www.phpwact.org/php/mvc_frameworks
  • 19. MVC Fat Vs. Thin Controllers watch: http://www.youtube.com/watch?v=91C7ax0UAAc ruby on rails ā€˜fatā€™ model, ā€˜thinā€™ controller approach
  • 20. Rails MVC : Model ActiveRecord: ā€¢ Maintains the relationship between Object and Database and handles validation, association, transactions, and more. ā€¢ This subsystem is implemented in ActiveRecord library which provides an interface and binding between the tables in a relational database and the Ruby program code that manipulates database records. Ruby method names are automatically generated from the field names of database tables, and so on.
  • 21. Rails MVC : View ActionView : ā€¢ A presentation of data in a particular format, triggered by a controller's decision to present the data. They are script based templating systems like JSP, ASP, PHP and very easy to integrate with AJAX technology. ā€¢ This subsystem is implemented in ActionView library which is an Embedded Ruby (ERb) based system for defining presentation templates for data presentation. Every Web connection to a Rails application results in the displaying of a view.
  • 22. Rails MVC : Controller ActionController: ā€¢ The facility within the application that directs traffic, on the one hand querying the models for specific data, and on the other hand organizing that data (searching, sorting, massaging it) into a form that fits the needs of a given view. ā€¢ This subsystem is implemented in ActionController which is a data broker sitting between ActiveRecord (the database interface) and ActionView (the presentation engine).
  • 23. MVC Advantages The main objective of the MVC design pattern is separation of concerns. It provides an isolation of the applicationā€™s presentation layer that displays the data in the user interface, from the way the data is actually processed. In other words, it isolates the applicationā€™s data from how the data is actually processed by the applicationā€™s business logic layer. The biggest advantage of the MVC design pattern is that you have a nice isolation of these components/layers and you can change any one of them without the rest being affected. Here is the list of the major advantages of this pattern. ā€¢ It provides a clean separation of concerns. ā€¢ It is easier to test code that implements this pattern. ā€¢ It promotes better code organization, extensibility, scalability and code re-use. ā€¢ It facilitates de-coupling the application's layers.