SlideShare a Scribd company logo
ARCHITECTURAL DESIGN
DR. K. ADISESHA
Software Engineering
Unit-4 Introduction
Architectural Design
Architectural Models
Architectural patterns
OOD using UML
2
ARCHITECTURAL DESIGN
&
IMPLEMENTATION
Dr. K. Adisesha
Introduction
Dr. K. Adisesha
3
Architectural Design:
Architectural design (also called system design), which acts as a preliminary ‘blueprint’
from which software can be developed.
➢ IEEE defines Architectural design as “The process of defining a collection of hardware
and software components and their interfaces to establish the framework for the
development of a computer system.”
➢ This framework is established by examining the software requirements document and
designing a model for providing implementation details.
➢ These details are used to specify the components of the system along with their inputs,
outputs, functions, and the interaction between them.
Introduction
Dr. K. Adisesha
4
Architectural Design:
The software that is built for computer-based systems can exhibit one of these many
architectural styles.
➢ Each style will describe a system category that consists of :
❖ A set of components(eg: a database, computational modules) that will perform a
function required by the system.
❖ The set of connectors will help in coordination, communication, and cooperation
between the components.
❖ Conditions that how components can be integrated to form the system.
❖ Semantic models that help the designer to understand the overall properties of the
system.
Introduction
Dr. K. Adisesha
5
Architectural design:
Architectural design is a process for identifying the sub-systems making up a system
and the framework for sub-system control and communication.
➢ Software architectures can be designed at two levels of abstraction:
❖ Architecture in the small: is concerned with the architecture of individual
programs. At this level, we are concerned with the way that an individual program
is decomposed into components.
❖ Architecture in the large: is concerned with the architecture of complex enterprise
systems that include other systems, programs, and program components. These
enterprise systems are distributed over different computers, which may be owned
and managed by different companies.
Architectural Design
Dr. K. Adisesha
6
Architectural Design Representation:
Architectural design can be represented using the following models:
➢ Structural model: Illustrates architecture as an ordered collection of program components
➢ Dynamic model: Specifies the behavioral aspect of the software architecture and indicates
how the structure or system configuration changes as the function changes due to change
in the external environment.
➢ Process model: Focuses on the design of the business or technical process, which must be
implemented in the system.
➢ Functional model: Represents the functional hierarchy of a system.
➢ Framework model: Attempts to identify repeatable architectural design patterns
encountered in similar types of application. This leads to an increase in the level of
abstraction.
Architectural Design
Dr. K. Adisesha
7
Architectural Design Output:
The architectural design process results in an Architectural Design Document consists
of a number of graphical representations that comprises software models along with
associated descriptive text.
➢ Architectural design document gives the developers a solution to the problem stated in the
Software Requirements Specification (SRS).
➢ In addition to ADD, other outputs of the architectural design are listed below.
❖ Various reports including audit report, progress report, and configuration status accounts
report and various plans for detailed design phase, which include the following:
▪ Software verification and validation plan
▪ Software configuration management plan
▪ Software quality assurance plan
▪ Software project management plan.
Architectural Design
Dr. K. Adisesha
8
Advantages of Architectural Design:
Three advantages of explicitly designing and documenting software architecture:
➢ Stakeholder communication: Architecture may be used as a focus of discussion by
system stakeholders.
➢ System analysis: Well-documented architecture enables the analysis of whether the
system can meet its non-functional requirements.
➢ Large-scale reuse: The architecture may be reusable across a range of systems or
entire lines of products.
❖ Pros: simple, useful for communication with stakeholders, great for project planning.
❖ Cons: lack of semantics, types of relationships between entities, visible properties of
entities in the architecture.
Architectural design
Dr. K. Adisesha
9
Uses of architectural models:
Software architecture is most often represented using simple, informal block diagrams
showing entities and relationships.
➢ As a way of facilitating discussion about the system design
❖ A high-level architectural view of a system is useful for communication with system
stakeholders and project planning because it is not cluttered with detail.
❖ Stakeholders can relate to it and understand an abstract view of the system.
❖ They can then discuss the system as a whole without being confused by detail.
➢ As a way of documenting an architecture that has been designed
❖ The aim here is to produce a complete system model that shows the different
components in a system, their interfaces and their connections.
Architectural design
Dr. K. Adisesha
10
Architectural design decisions:
Architectural design is a creative process so the process differs depending on the type
of system being developed.
➢ However, a number of common decisions span all design processes and these decisions
affect the non-functional characteristics of the system:
❖ Is there a generic application architecture that can be used?
❖ How will the system be distributed?
❖ What architectural styles are appropriate?
❖ What approach will be used to structure the system?
❖ How will the system be decomposed into modules?
❖ What control strategy should be used?
❖ How will the architectural design be evaluated?
❖ How should the architecture be documented?
Architectural design
Dr. K. Adisesha
11
Architectural design decisions:
The architecture of a system may be designed around one of more architectural
patterns/styles, which capture the essence of an architecture and can be instantiated in
different ways.
➢ The particular architectural style should depend on the non-functional system
requirements:
❖ Performance: localize critical operations and minimize communications. Use large rather
than fine-grain components.
❖ Security: use a layered architecture with critical assets in the inner layers.
❖ Safety: localize safety-critical features in a small number of sub-systems.
❖ Availability: include redundant components and mechanisms for fault tolerance.
❖ Maintainability: use fine-grain, replaceable components.
Architectural design
Dr. K. Adisesha
12
Architectural views:
Each architectural model only shows one view or perspective of the system. It might
show how a system is decomposed into modules, how the run-time processes interact or
the different ways in which system components are distributed across a network.
➢ 4+1 view model of software architecture:
❖ A logical view: which shows the key abstractions in the system as objects or object classes.
❖ A process view: which shows how, at run-time, the system is composed of interacting
processes.
❖ A development view: which shows how the software is decomposed for development.
❖ A physical view: which shows the system hardware and how software components are
distributed across the processors in the system.
❖ Related using use cases or scenarios (+1).
Architectural design
Dr. K. Adisesha
13
Architectural Patterns:
An architectural pattern is a stylized description of a good design practice, which has
been tried and tested in different environments.
➢ Patterns are a means of representing, sharing and reusing knowledge.
➢ Patterns should include information about when they are and when the are not useful.
Patterns may be represented using tabular and graphical descriptions.
➢ Various Architectural patterns are listed below:
❖ Model-View-Controller
❖ Layered Architecture
❖ Repository Architecture
❖ Client-server Architecture
❖ Pipe and filter Architecture
Architectural patterns
Dr. K. Adisesha
14
Model-View-Controller (MVC):
Serves as a basis of interaction management in many web-based systems. The display
presented to the user frequently changes over time in response to input or computation.
➢ Supported by most language frameworks.
➢ Decouples three major interconnected components:
❖ The Model is the central component of the pattern that directly manages the data,
logic and rules of the application. It is the application's dynamic data structure,
independent of the user interface.
❖ A View can be any output representation of information, such as a chart or a
diagram. Multiple views of the same information are possible.
❖ The Controller accepts input and converts it to commands for the model or view.
Architectural patterns
Dr. K. Adisesha
15
Model-View-Controller (MVC):
The display presented to the user frequently changes over time in response to input or
computation. Different users have different needs for how they want to view the
program
➢ The system is structured into three logical components that interact with each other.
❖ The Model component manages the system data and
associated operations on that data.
❖ The View component defines and manages how the
data is presented to the user.
❖ The Controller component manages user interaction
(e.g., key presses, mouse clicks, etc.) and passes these
interactions to the View and the Model.
Architectural patterns
Dr. K. Adisesha
16
Model-View-Controller (MVC):
Separates presentation and interaction from the system data. The system is structured
into three logical components that interact with each other.
➢ Advantages:
❖ Views and Controllers can be easily be added, removed, or changed during
execution. User interface components can be changed, even at runtime.
➢ Disadvantages:
❖ Views and Controller are often hard to separate; frequent updates may slow data
display and degrade user interface performance.
❖ The MVC style makes user interface components (views, controllers) highly
dependent on model components.
Architectural patterns
Dr. K. Adisesha
17
Layered Architecture:
Organizes the system into layers with related functionality associated with each layer. A
layer provides services to the layer above it so the lowest-level layers represent core
services that are likely to be used throughout the system.
➢ Used to model the interfacing of sub-systems.
➢ Organizes the system into a set of layers (or abstract machines) each of which provide
a set of services.
➢ Supports the incremental development of sub-systems in different layers. When a layer
interface changes, only the adjacent layer is affected.
➢ However, often artificial to structure systems in this way.
Architectural patterns
Dr. K. Adisesha
18
Layered Architecture:
Used when building new facilities on top of existing systems; when the development is
spread across several teams with each team responsibility for a layer of functionality;
when there is a requirement for multi-level security.
➢ Advantages:
❖ Allows replacement of entire layers so long
as the interface is maintained.
❖ Redundant facilities (e.g., authentication)
can be provided in each layer to increase
the dependability of the system.
Architectural patterns
Dr. K. Adisesha
19
Repository Architecture:
All data in a system is managed in a central repository that is accessible to all system
components. Components do not interact directly, only through the repository.
➢ Sub-systems must exchange data. This may be done in two ways:
❖ Shared data is held in a central database or repository and may be accessed by all
sub-systems;
❖ Each sub-system maintains its own database and passes data explicitly to other
sub-systems.
➢ When large amounts of data are to be shared, the repository model of sharing is most
commonly used, this is an efficient data sharing mechanism.
Architectural patterns
Dr. K. Adisesha
20
Repository Architecture:
Use this pattern when you have a system in which large volumes of information are
generated that has to be stored for a long time. You may also use it in data-driven
systems where the inclusion of data in the repository triggers an action or tool.
➢ Advantages:
❖ Components can be independent-they do not need
to know of the existence of other components.
Changes made by one component can be
propagated to all components.
❖ All data can be managed consistently (e.g.,
backups done at the same time) as it is all in one
place.
Architectural patterns
Dr. K. Adisesha
21
Client-Server Architecture:
In a client-server architecture, the functionality of the system is organized into services,
with each service delivered from a separate server. Clients are users of these services
and access servers to make use of them.
➢ Distributed system model which shows how data and processing is distributed across a
range of components, but can also be implemented on a single computer.
➢ Set of stand-alone servers which provide specific services such as printing, data
management, etc.,
➢ Set of clients which call on these services.
➢ Network which allows clients to access servers.
Architectural patterns
Dr. K. Adisesha
22
Client-server Architecture:
Used when data in a shared database has to be accessed from a range of locations.
Because servers can be replicated, may also be used when the load on a system is
variable.
➢ Advantages:
❖ The principal advantage of this model is that
servers can be distributed across a network.
❖ General functionality (e.g., a printing service)
can be available to all clients and does not
need to be implemented by all services.
Architectural patterns
Dr. K. Adisesha
23
Pipe and filter Architecture:
The processing of the data in a system is organized so that each processing component
(filter) is discrete and carries out one type of data transformation.
➢ The data flows (as in a pipe) from one component to another for processing.
➢ Functional transformations process their inputs to produce outputs.
➢ May be referred to as a pipe and filter model (as in UNIX shell).
➢ Variants of this approach are very common. When transformations are sequential, this
is a batch sequential model which is extensively used in data processing systems.
➢ Not really suitable for interactive systems.
Architectural patterns
Dr. K. Adisesha
24
Pipe and filter Architecture:
Commonly used in data processing applications (both batch- and transaction-based)
where inputs are processed in separate stages to generate related outputs.
➢ Advantages:
❖ Easy to understand and supports
transformation reuse.
❖ Workflow style matches the structure of many
business processes.
❖ Evolution by adding transformations is
straightforward.
❖ Can be implemented as either a sequential or
concurrent system.
Architectural patterns
Dr. K. Adisesha
25
Application Architectures:
A generic application architecture is an architecture for a type of software system that
may be configured and adapted to create a system that meets specific requirements.
➢ Application systems are designed to meet an organizational need.
➢ As businesses have much in common, their application systems also tend to have a
common architecture that reflects the application requirements.
➢ Application architectures can be used as a:
❖ Starting point for architectural design.
❖ Design checklist.
❖ Way of organizing the work of the development team.
❖ Means of assessing components for reuse.
❖ Vocabulary for talking about application types.
Architectural patterns
Dr. K. Adisesha
26
Application Architectures:
As businesses have much in common, their application systems also tend to have a
common architecture that reflects the application requirements.
➢ Examples of application types:
❖ Data processing applications: Data driven applications that process data in batches
without explicit user intervention during the processing.
❖ Transaction processing applications: Data-centred applications that process user
requests and update information in a system database.
❖ Event processing systems: Applications where system actions depend on interpreting
events from the system's environment.
❖ Language processing systems: Applications where the users' intentions are specified in
a formal language that is processed and interpreted by the system.
OOD using UML
Dr. K. Adisesha
27
Object-Oriented Design using UML:
Structured object-oriented design processes involve developing a number of different
system models.
➢ They require a lot of effort for development and maintenance and, for small systems,
this may not be cost-effective.
➢ Common activities in these processes include:
❖ Define the context and modes of use of the system
❖ Design the system architecture
❖ Identify the principal system objects
❖ Develop design models
❖ Specify object interfaces
OOD using UML
Dr. K. Adisesha
28
Object-Oriented Design using UML:
Object-Oriented Design is a software development approach to design and implement
software system as a collection of interacting stateful objects with specified structure
and behavior.
➢ We will take a look at some of OOD concepts that seem relevant to the UML:
❖ Classes, Object
❖ Interface
❖ Collaboration
❖ Use case
❖ Active classes
❖ Components
❖ Nodes
OOD using UML
Dr. K. Adisesha
29
Structural Things using UML:
Graphical notations used in structural things are most widely used in UML. These are
considered as the nouns of UML models.
Interface Notation Use Case Notation
Class & Object Notation
Actor Notation
Initial State Notation Final State Notation
Active Class Notation
Component Notation
OOD using UML
Dr. K. Adisesha
30
Structural Things using UML:
Graphical notations used in structural things are most widely used in UML. These are
considered as the nouns of UML models.
➢ Class & Object Notation: UML Classes are used to represent objects. Objects can be anything
having properties and responsibility. The diagram is divided into four parts.
➢ Interface Notation: Interface is used to describe the functionality without implementation.
Interface is represented by a circle.
➢ Use Case Notation: Use case is used to capture high level functionalities of a system. Use case
is represented as an eclipse with a name inside it.
➢ Actor Notation: An actor can be defined as some internal or external entity that interacts with
the system.
➢ Initial State Notation: Initial state is defined to show the start of a process.
➢ Final State Notation: Final state is used to show the end of a process.
OOD using UML
Dr. K. Adisesha
31
System context and interactions:
Understanding the relationships between the software that is being designed and its
external environment is essential for deciding how to provide the required system
functionality and how to structure the system to communicate with its environment.
➢ Understanding of the context also lets you establish the boundaries of the system.
➢ Setting the system boundaries helps you decide what features are implemented in the
system being designed and what features are in other associated systems.
❖ A system context is a structural model (e.g., a class diagram) that demonstrates the
other systems in the environment of the system being developed.
❖ An interaction model is a dynamic model (e.g., a use case diagram + structured
natural language description) that shows how the system interacts with its
environment as it is used.
OOD using UML
Dr. K. Adisesha
32
Weather station:
The weather information system establishes a satellite communication link with the
weather station and requests transmission of the data.
➢ Understanding of the context also lets you establish the boundaries of the system
➢ Use case: Report weather Actors:Weather information system, Weather station
OOD using UML
Dr. K. Adisesha
33
Weather station:
The weather information system establishes a satellite communication link with the
weather station and requests transmission of the data.
System Weather station
Use case Report weather
Actors Weather information system, Weather station
Description
The weather station sends a summary of the weather data that has been collected from the instruments in the
collection period to the weather information system. The data sent are the maximum, minimum, and average
ground and air temperatures; the maximum, minimum, and average air pressures; the maximum, minimum,
and average wind speeds; the total rainfall; and the wind direction as sampled at five-minute intervals.
Stimulus
The weather information system establishes a satellite communication link with the weather station and
requests transmission of the data.
Response The summarized data is sent to the weather information system.
Comments
Weather stations are usually asked to report once per hour but this frequency may differ from one station to
another and may be modified in the future.
OOD using UML
Dr. K. Adisesha
34
Architectural design:
Once interactions between the system and its environment have been understood, you
use this information for designing the system architecture.
➢ You identify the major components that make up the system and their interactions, and
then may organize the components using an architectural pattern (e.g. a layered or client-
server model).
OOD using UML
Dr. K. Adisesha
35
Architectural design:
Identifying object classes is often a difficult part of object oriented design. There is no
'magic formula' for object identification.
➢ It relies on the skill, experience and domain knowledge of system designers.
➢ Object identification is an iterative process. You are unlikely to get it right first time.
➢ Approaches to object identification include:
❖ Use a grammatical approach based on a natural language description of the system.
❖ Base the identification on tangible things in the application domain.
❖ Use a behavioral approach and identify objects based on what participates in what
behavior.
❖ Use a scenario-based analysis. The objects, attributes and methods in each scenario
are identified.
Discussion
Dr. K. Adisesha
36
Queries ?
Prof. K. Adisesha
9449081542
Reference: Sommerville, Software Engineering, 10 ed.,
Ad

More Related Content

What's hot (20)

Waterfall Model By Zubair YaSeeN
Waterfall Model By Zubair YaSeeN  Waterfall Model By Zubair YaSeeN
Waterfall Model By Zubair YaSeeN
University of Education
 
Software Development Life Cycle
Software Development Life CycleSoftware Development Life Cycle
Software Development Life Cycle
Slideshare
 
SE_Lec 05_System Modelling and Context Model
SE_Lec 05_System Modelling and Context ModelSE_Lec 05_System Modelling and Context Model
SE_Lec 05_System Modelling and Context Model
Amr E. Mohamed
 
Introduction to Software Engineering
Introduction to Software EngineeringIntroduction to Software Engineering
Introduction to Software Engineering
Majane Padua
 
11 deployment diagrams
11 deployment diagrams11 deployment diagrams
11 deployment diagrams
Baskarkncet
 
Chapter 15 software product metrics
Chapter 15 software product metricsChapter 15 software product metrics
Chapter 15 software product metrics
SHREEHARI WADAWADAGI
 
Software reliability
Software reliabilitySoftware reliability
Software reliability
Anand Kumar
 
Waterfall model in SDLC
Waterfall model in SDLCWaterfall model in SDLC
Waterfall model in SDLC
HND Assignment Help
 
Software project estimation
Software project estimationSoftware project estimation
Software project estimation
inayat khan
 
Software development life cycle (SDLC)
Software development life cycle (SDLC)Software development life cycle (SDLC)
Software development life cycle (SDLC)
Simran Kaur
 
Architecture business cycle
Architecture business cycleArchitecture business cycle
Architecture business cycle
Himanshu
 
Software Engineering (Requirements Engineering & Software Maintenance)
Software Engineering (Requirements Engineering  & Software Maintenance)Software Engineering (Requirements Engineering  & Software Maintenance)
Software Engineering (Requirements Engineering & Software Maintenance)
ShudipPal
 
Fundamental software engineering activities
Fundamental software engineering activitiesFundamental software engineering activities
Fundamental software engineering activities
sommerville-videos
 
Requirement analysis and specification
Requirement analysis and specificationRequirement analysis and specification
Requirement analysis and specification
M.E. at GTU- PG School
 
Software Engineering - Ch11
Software Engineering - Ch11Software Engineering - Ch11
Software Engineering - Ch11
Siddharth Ayer
 
Software reliability & quality
Software reliability & qualitySoftware reliability & quality
Software reliability & quality
Nur Islam
 
Domain model
Domain modelDomain model
Domain model
Eagle Eyes
 
Requirement Engineering
Requirement EngineeringRequirement Engineering
Requirement Engineering
University of Haripur
 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
Atul Karmyal
 
Ch9-Software Engineering 9
Ch9-Software Engineering 9Ch9-Software Engineering 9
Ch9-Software Engineering 9
Ian Sommerville
 
Software Development Life Cycle
Software Development Life CycleSoftware Development Life Cycle
Software Development Life Cycle
Slideshare
 
SE_Lec 05_System Modelling and Context Model
SE_Lec 05_System Modelling and Context ModelSE_Lec 05_System Modelling and Context Model
SE_Lec 05_System Modelling and Context Model
Amr E. Mohamed
 
Introduction to Software Engineering
Introduction to Software EngineeringIntroduction to Software Engineering
Introduction to Software Engineering
Majane Padua
 
11 deployment diagrams
11 deployment diagrams11 deployment diagrams
11 deployment diagrams
Baskarkncet
 
Chapter 15 software product metrics
Chapter 15 software product metricsChapter 15 software product metrics
Chapter 15 software product metrics
SHREEHARI WADAWADAGI
 
Software reliability
Software reliabilitySoftware reliability
Software reliability
Anand Kumar
 
Software project estimation
Software project estimationSoftware project estimation
Software project estimation
inayat khan
 
Software development life cycle (SDLC)
Software development life cycle (SDLC)Software development life cycle (SDLC)
Software development life cycle (SDLC)
Simran Kaur
 
Architecture business cycle
Architecture business cycleArchitecture business cycle
Architecture business cycle
Himanshu
 
Software Engineering (Requirements Engineering & Software Maintenance)
Software Engineering (Requirements Engineering  & Software Maintenance)Software Engineering (Requirements Engineering  & Software Maintenance)
Software Engineering (Requirements Engineering & Software Maintenance)
ShudipPal
 
Fundamental software engineering activities
Fundamental software engineering activitiesFundamental software engineering activities
Fundamental software engineering activities
sommerville-videos
 
Requirement analysis and specification
Requirement analysis and specificationRequirement analysis and specification
Requirement analysis and specification
M.E. at GTU- PG School
 
Software Engineering - Ch11
Software Engineering - Ch11Software Engineering - Ch11
Software Engineering - Ch11
Siddharth Ayer
 
Software reliability & quality
Software reliability & qualitySoftware reliability & quality
Software reliability & quality
Nur Islam
 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
Atul Karmyal
 
Ch9-Software Engineering 9
Ch9-Software Engineering 9Ch9-Software Engineering 9
Ch9-Software Engineering 9
Ian Sommerville
 

Similar to Software Engineering-Unit 4 "Architectural Design" by Adi.pdf (20)

chapter-6-Software_Engineering_P1_MohamedElhawy_19135002.pptx
chapter-6-Software_Engineering_P1_MohamedElhawy_19135002.pptxchapter-6-Software_Engineering_P1_MohamedElhawy_19135002.pptx
chapter-6-Software_Engineering_P1_MohamedElhawy_19135002.pptx
MahmoudZidan53
 
Object oriented sad-5 part i
Object oriented sad-5 part iObject oriented sad-5 part i
Object oriented sad-5 part i
Bisrat Girma
 
Ch 6
Ch 6Ch 6
Ch 6
Mohammed Romi
 
Ch6
Ch6Ch6
Ch6
Dom Mike
 
Ch6
Ch6Ch6
Ch6
Keith Jasper Mier
 
MOD_Architectural_Design_Chap6_Summary.pdf
MOD_Architectural_Design_Chap6_Summary.pdfMOD_Architectural_Design_Chap6_Summary.pdf
MOD_Architectural_Design_Chap6_Summary.pdf
Tigabu Yaya
 
Ch6-Software Engineering 9
Ch6-Software Engineering 9Ch6-Software Engineering 9
Ch6-Software Engineering 9
Ian Sommerville
 
Ch6.ppt
Ch6.pptCh6.ppt
Ch6.ppt
UrviKhatri3
 
Software_Archi-1.ppt
Software_Archi-1.pptSoftware_Archi-1.ppt
Software_Archi-1.ppt
FaizaZulkifal
 
Lecture 6 se
Lecture 6 seLecture 6 se
Lecture 6 se
Tribhuvan University
 
Architectural Design.pptx
Architectural Design.pptxArchitectural Design.pptx
Architectural Design.pptx
ssuser8c0d24
 
Software architecture
Software architectureSoftware architecture
Software architecture
nazn
 
Architectural Design
Architectural DesignArchitectural Design
Architectural Design
Jay Thakkar
 
Software Engineering Chapter 6_00008.ppt
Software Engineering Chapter 6_00008.pptSoftware Engineering Chapter 6_00008.ppt
Software Engineering Chapter 6_00008.ppt
jiwat32775
 
Design Model & User Interface Design in Software Engineering
Design Model & User Interface Design in Software EngineeringDesign Model & User Interface Design in Software Engineering
Design Model & User Interface Design in Software Engineering
Meghaj Mallick
 
Unit-3.doc
Unit-3.docUnit-3.doc
Unit-3.doc
chitranshidheeraj6
 
Software architecture Unit 1 notes
Software architecture Unit 1 notesSoftware architecture Unit 1 notes
Software architecture Unit 1 notes
Sudarshan Dhondaley
 
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvfUNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
puttipavan23022023
 
Software design
Software designSoftware design
Software design
Zulqarnaintayyab
 
Ch6 archtchure design in software en.pptx
Ch6 archtchure design in software en.pptxCh6 archtchure design in software en.pptx
Ch6 archtchure design in software en.pptx
ubaidullah75790
 
chapter-6-Software_Engineering_P1_MohamedElhawy_19135002.pptx
chapter-6-Software_Engineering_P1_MohamedElhawy_19135002.pptxchapter-6-Software_Engineering_P1_MohamedElhawy_19135002.pptx
chapter-6-Software_Engineering_P1_MohamedElhawy_19135002.pptx
MahmoudZidan53
 
Object oriented sad-5 part i
Object oriented sad-5 part iObject oriented sad-5 part i
Object oriented sad-5 part i
Bisrat Girma
 
MOD_Architectural_Design_Chap6_Summary.pdf
MOD_Architectural_Design_Chap6_Summary.pdfMOD_Architectural_Design_Chap6_Summary.pdf
MOD_Architectural_Design_Chap6_Summary.pdf
Tigabu Yaya
 
Ch6-Software Engineering 9
Ch6-Software Engineering 9Ch6-Software Engineering 9
Ch6-Software Engineering 9
Ian Sommerville
 
Software_Archi-1.ppt
Software_Archi-1.pptSoftware_Archi-1.ppt
Software_Archi-1.ppt
FaizaZulkifal
 
Architectural Design.pptx
Architectural Design.pptxArchitectural Design.pptx
Architectural Design.pptx
ssuser8c0d24
 
Software architecture
Software architectureSoftware architecture
Software architecture
nazn
 
Architectural Design
Architectural DesignArchitectural Design
Architectural Design
Jay Thakkar
 
Software Engineering Chapter 6_00008.ppt
Software Engineering Chapter 6_00008.pptSoftware Engineering Chapter 6_00008.ppt
Software Engineering Chapter 6_00008.ppt
jiwat32775
 
Design Model & User Interface Design in Software Engineering
Design Model & User Interface Design in Software EngineeringDesign Model & User Interface Design in Software Engineering
Design Model & User Interface Design in Software Engineering
Meghaj Mallick
 
Software architecture Unit 1 notes
Software architecture Unit 1 notesSoftware architecture Unit 1 notes
Software architecture Unit 1 notes
Sudarshan Dhondaley
 
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvfUNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
puttipavan23022023
 
Ch6 archtchure design in software en.pptx
Ch6 archtchure design in software en.pptxCh6 archtchure design in software en.pptx
Ch6 archtchure design in software en.pptx
ubaidullah75790
 
Ad

More from Prof. Dr. K. Adisesha (20)

Design and Analysis of Algorithms ppt by K. Adi
Design and Analysis of Algorithms ppt by K. AdiDesign and Analysis of Algorithms ppt by K. Adi
Design and Analysis of Algorithms ppt by K. Adi
Prof. Dr. K. Adisesha
 
Data Structure using C by Dr. K Adisesha .ppsx
Data Structure using C by Dr. K Adisesha .ppsxData Structure using C by Dr. K Adisesha .ppsx
Data Structure using C by Dr. K Adisesha .ppsx
Prof. Dr. K. Adisesha
 
Operating System-4 "File Management" by Adi.pdf
Operating System-4 "File Management" by Adi.pdfOperating System-4 "File Management" by Adi.pdf
Operating System-4 "File Management" by Adi.pdf
Prof. Dr. K. Adisesha
 
Operating System-3 "Memory Management" by Adi.pdf
Operating System-3 "Memory Management" by Adi.pdfOperating System-3 "Memory Management" by Adi.pdf
Operating System-3 "Memory Management" by Adi.pdf
Prof. Dr. K. Adisesha
 
Operating System Concepts Part-1 by_Adi.pdf
Operating System Concepts Part-1 by_Adi.pdfOperating System Concepts Part-1 by_Adi.pdf
Operating System Concepts Part-1 by_Adi.pdf
Prof. Dr. K. Adisesha
 
Operating System-2_Process Managementby_Adi.pdf
Operating System-2_Process Managementby_Adi.pdfOperating System-2_Process Managementby_Adi.pdf
Operating System-2_Process Managementby_Adi.pdf
Prof. Dr. K. Adisesha
 
Software Engineering notes by K. Adisesha.pdf
Software Engineering notes by K. Adisesha.pdfSoftware Engineering notes by K. Adisesha.pdf
Software Engineering notes by K. Adisesha.pdf
Prof. Dr. K. Adisesha
 
Software Engineering-Unit 1 by Adisesha.pdf
Software Engineering-Unit 1 by Adisesha.pdfSoftware Engineering-Unit 1 by Adisesha.pdf
Software Engineering-Unit 1 by Adisesha.pdf
Prof. Dr. K. Adisesha
 
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdfSoftware Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Prof. Dr. K. Adisesha
 
Software Engineering-Unit 3 "System Modelling" by Adi.pdf
Software Engineering-Unit 3 "System Modelling" by Adi.pdfSoftware Engineering-Unit 3 "System Modelling" by Adi.pdf
Software Engineering-Unit 3 "System Modelling" by Adi.pdf
Prof. Dr. K. Adisesha
 
Software Engineering-Unit 5 "Software Testing"by Adi.pdf
Software Engineering-Unit 5 "Software Testing"by Adi.pdfSoftware Engineering-Unit 5 "Software Testing"by Adi.pdf
Software Engineering-Unit 5 "Software Testing"by Adi.pdf
Prof. Dr. K. Adisesha
 
Computer Networks Notes by -Dr. K. Adisesha
Computer Networks Notes by -Dr. K. AdiseshaComputer Networks Notes by -Dr. K. Adisesha
Computer Networks Notes by -Dr. K. Adisesha
Prof. Dr. K. Adisesha
 
CCN Unit-1&2 Data Communication &Networking by K. Adiaesha
CCN Unit-1&2 Data Communication &Networking by K. AdiaeshaCCN Unit-1&2 Data Communication &Networking by K. Adiaesha
CCN Unit-1&2 Data Communication &Networking by K. Adiaesha
Prof. Dr. K. Adisesha
 
CCN Unit-3 Data Link Layer by Dr. K. Adisesha
CCN Unit-3 Data Link Layer by Dr. K. AdiseshaCCN Unit-3 Data Link Layer by Dr. K. Adisesha
CCN Unit-3 Data Link Layer by Dr. K. Adisesha
Prof. Dr. K. Adisesha
 
CCN Unit-4 Network Layer by Dr. K. Adisesha
CCN Unit-4 Network Layer by Dr. K. AdiseshaCCN Unit-4 Network Layer by Dr. K. Adisesha
CCN Unit-4 Network Layer by Dr. K. Adisesha
Prof. Dr. K. Adisesha
 
CCN Unit-5 Transport & Application Layer by Adi.pdf
CCN Unit-5 Transport & Application Layer by Adi.pdfCCN Unit-5 Transport & Application Layer by Adi.pdf
CCN Unit-5 Transport & Application Layer by Adi.pdf
Prof. Dr. K. Adisesha
 
Introduction to Computers.pdf
Introduction to Computers.pdfIntroduction to Computers.pdf
Introduction to Computers.pdf
Prof. Dr. K. Adisesha
 
R_Programming.pdf
R_Programming.pdfR_Programming.pdf
R_Programming.pdf
Prof. Dr. K. Adisesha
 
Scholarship.pdf
Scholarship.pdfScholarship.pdf
Scholarship.pdf
Prof. Dr. K. Adisesha
 
Operating System-2 by Adi.pdf
Operating System-2 by Adi.pdfOperating System-2 by Adi.pdf
Operating System-2 by Adi.pdf
Prof. Dr. K. Adisesha
 
Design and Analysis of Algorithms ppt by K. Adi
Design and Analysis of Algorithms ppt by K. AdiDesign and Analysis of Algorithms ppt by K. Adi
Design and Analysis of Algorithms ppt by K. Adi
Prof. Dr. K. Adisesha
 
Data Structure using C by Dr. K Adisesha .ppsx
Data Structure using C by Dr. K Adisesha .ppsxData Structure using C by Dr. K Adisesha .ppsx
Data Structure using C by Dr. K Adisesha .ppsx
Prof. Dr. K. Adisesha
 
Operating System-4 "File Management" by Adi.pdf
Operating System-4 "File Management" by Adi.pdfOperating System-4 "File Management" by Adi.pdf
Operating System-4 "File Management" by Adi.pdf
Prof. Dr. K. Adisesha
 
Operating System-3 "Memory Management" by Adi.pdf
Operating System-3 "Memory Management" by Adi.pdfOperating System-3 "Memory Management" by Adi.pdf
Operating System-3 "Memory Management" by Adi.pdf
Prof. Dr. K. Adisesha
 
Operating System Concepts Part-1 by_Adi.pdf
Operating System Concepts Part-1 by_Adi.pdfOperating System Concepts Part-1 by_Adi.pdf
Operating System Concepts Part-1 by_Adi.pdf
Prof. Dr. K. Adisesha
 
Operating System-2_Process Managementby_Adi.pdf
Operating System-2_Process Managementby_Adi.pdfOperating System-2_Process Managementby_Adi.pdf
Operating System-2_Process Managementby_Adi.pdf
Prof. Dr. K. Adisesha
 
Software Engineering notes by K. Adisesha.pdf
Software Engineering notes by K. Adisesha.pdfSoftware Engineering notes by K. Adisesha.pdf
Software Engineering notes by K. Adisesha.pdf
Prof. Dr. K. Adisesha
 
Software Engineering-Unit 1 by Adisesha.pdf
Software Engineering-Unit 1 by Adisesha.pdfSoftware Engineering-Unit 1 by Adisesha.pdf
Software Engineering-Unit 1 by Adisesha.pdf
Prof. Dr. K. Adisesha
 
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdfSoftware Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Prof. Dr. K. Adisesha
 
Software Engineering-Unit 3 "System Modelling" by Adi.pdf
Software Engineering-Unit 3 "System Modelling" by Adi.pdfSoftware Engineering-Unit 3 "System Modelling" by Adi.pdf
Software Engineering-Unit 3 "System Modelling" by Adi.pdf
Prof. Dr. K. Adisesha
 
Software Engineering-Unit 5 "Software Testing"by Adi.pdf
Software Engineering-Unit 5 "Software Testing"by Adi.pdfSoftware Engineering-Unit 5 "Software Testing"by Adi.pdf
Software Engineering-Unit 5 "Software Testing"by Adi.pdf
Prof. Dr. K. Adisesha
 
Computer Networks Notes by -Dr. K. Adisesha
Computer Networks Notes by -Dr. K. AdiseshaComputer Networks Notes by -Dr. K. Adisesha
Computer Networks Notes by -Dr. K. Adisesha
Prof. Dr. K. Adisesha
 
CCN Unit-1&2 Data Communication &Networking by K. Adiaesha
CCN Unit-1&2 Data Communication &Networking by K. AdiaeshaCCN Unit-1&2 Data Communication &Networking by K. Adiaesha
CCN Unit-1&2 Data Communication &Networking by K. Adiaesha
Prof. Dr. K. Adisesha
 
CCN Unit-3 Data Link Layer by Dr. K. Adisesha
CCN Unit-3 Data Link Layer by Dr. K. AdiseshaCCN Unit-3 Data Link Layer by Dr. K. Adisesha
CCN Unit-3 Data Link Layer by Dr. K. Adisesha
Prof. Dr. K. Adisesha
 
CCN Unit-4 Network Layer by Dr. K. Adisesha
CCN Unit-4 Network Layer by Dr. K. AdiseshaCCN Unit-4 Network Layer by Dr. K. Adisesha
CCN Unit-4 Network Layer by Dr. K. Adisesha
Prof. Dr. K. Adisesha
 
CCN Unit-5 Transport & Application Layer by Adi.pdf
CCN Unit-5 Transport & Application Layer by Adi.pdfCCN Unit-5 Transport & Application Layer by Adi.pdf
CCN Unit-5 Transport & Application Layer by Adi.pdf
Prof. Dr. K. Adisesha
 
Ad

Recently uploaded (20)

How to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POSHow to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POS
Celine George
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Library Association of Ireland
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
How to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 WebsiteHow to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 Website
Celine George
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingHow to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
Celine George
 
Operations Management (Dr. Abdulfatah Salem).pdf
Operations Management (Dr. Abdulfatah Salem).pdfOperations Management (Dr. Abdulfatah Salem).pdf
Operations Management (Dr. Abdulfatah Salem).pdf
Arab Academy for Science, Technology and Maritime Transport
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
Celine George
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
Biophysics Chapter 3 Methods of Studying Macromolecules.pdf
Biophysics Chapter 3 Methods of Studying Macromolecules.pdfBiophysics Chapter 3 Methods of Studying Macromolecules.pdf
Biophysics Chapter 3 Methods of Studying Macromolecules.pdf
PKLI-Institute of Nursing and Allied Health Sciences Lahore , Pakistan.
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
How to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POSHow to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POS
Celine George
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Library Association of Ireland
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
How to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 WebsiteHow to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 Website
Celine George
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingHow to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
Celine George
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
Celine George
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 

Software Engineering-Unit 4 "Architectural Design" by Adi.pdf

  • 2. Software Engineering Unit-4 Introduction Architectural Design Architectural Models Architectural patterns OOD using UML 2 ARCHITECTURAL DESIGN & IMPLEMENTATION Dr. K. Adisesha
  • 3. Introduction Dr. K. Adisesha 3 Architectural Design: Architectural design (also called system design), which acts as a preliminary ‘blueprint’ from which software can be developed. ➢ IEEE defines Architectural design as “The process of defining a collection of hardware and software components and their interfaces to establish the framework for the development of a computer system.” ➢ This framework is established by examining the software requirements document and designing a model for providing implementation details. ➢ These details are used to specify the components of the system along with their inputs, outputs, functions, and the interaction between them.
  • 4. Introduction Dr. K. Adisesha 4 Architectural Design: The software that is built for computer-based systems can exhibit one of these many architectural styles. ➢ Each style will describe a system category that consists of : ❖ A set of components(eg: a database, computational modules) that will perform a function required by the system. ❖ The set of connectors will help in coordination, communication, and cooperation between the components. ❖ Conditions that how components can be integrated to form the system. ❖ Semantic models that help the designer to understand the overall properties of the system.
  • 5. Introduction Dr. K. Adisesha 5 Architectural design: Architectural design is a process for identifying the sub-systems making up a system and the framework for sub-system control and communication. ➢ Software architectures can be designed at two levels of abstraction: ❖ Architecture in the small: is concerned with the architecture of individual programs. At this level, we are concerned with the way that an individual program is decomposed into components. ❖ Architecture in the large: is concerned with the architecture of complex enterprise systems that include other systems, programs, and program components. These enterprise systems are distributed over different computers, which may be owned and managed by different companies.
  • 6. Architectural Design Dr. K. Adisesha 6 Architectural Design Representation: Architectural design can be represented using the following models: ➢ Structural model: Illustrates architecture as an ordered collection of program components ➢ Dynamic model: Specifies the behavioral aspect of the software architecture and indicates how the structure or system configuration changes as the function changes due to change in the external environment. ➢ Process model: Focuses on the design of the business or technical process, which must be implemented in the system. ➢ Functional model: Represents the functional hierarchy of a system. ➢ Framework model: Attempts to identify repeatable architectural design patterns encountered in similar types of application. This leads to an increase in the level of abstraction.
  • 7. Architectural Design Dr. K. Adisesha 7 Architectural Design Output: The architectural design process results in an Architectural Design Document consists of a number of graphical representations that comprises software models along with associated descriptive text. ➢ Architectural design document gives the developers a solution to the problem stated in the Software Requirements Specification (SRS). ➢ In addition to ADD, other outputs of the architectural design are listed below. ❖ Various reports including audit report, progress report, and configuration status accounts report and various plans for detailed design phase, which include the following: ▪ Software verification and validation plan ▪ Software configuration management plan ▪ Software quality assurance plan ▪ Software project management plan.
  • 8. Architectural Design Dr. K. Adisesha 8 Advantages of Architectural Design: Three advantages of explicitly designing and documenting software architecture: ➢ Stakeholder communication: Architecture may be used as a focus of discussion by system stakeholders. ➢ System analysis: Well-documented architecture enables the analysis of whether the system can meet its non-functional requirements. ➢ Large-scale reuse: The architecture may be reusable across a range of systems or entire lines of products. ❖ Pros: simple, useful for communication with stakeholders, great for project planning. ❖ Cons: lack of semantics, types of relationships between entities, visible properties of entities in the architecture.
  • 9. Architectural design Dr. K. Adisesha 9 Uses of architectural models: Software architecture is most often represented using simple, informal block diagrams showing entities and relationships. ➢ As a way of facilitating discussion about the system design ❖ A high-level architectural view of a system is useful for communication with system stakeholders and project planning because it is not cluttered with detail. ❖ Stakeholders can relate to it and understand an abstract view of the system. ❖ They can then discuss the system as a whole without being confused by detail. ➢ As a way of documenting an architecture that has been designed ❖ The aim here is to produce a complete system model that shows the different components in a system, their interfaces and their connections.
  • 10. Architectural design Dr. K. Adisesha 10 Architectural design decisions: Architectural design is a creative process so the process differs depending on the type of system being developed. ➢ However, a number of common decisions span all design processes and these decisions affect the non-functional characteristics of the system: ❖ Is there a generic application architecture that can be used? ❖ How will the system be distributed? ❖ What architectural styles are appropriate? ❖ What approach will be used to structure the system? ❖ How will the system be decomposed into modules? ❖ What control strategy should be used? ❖ How will the architectural design be evaluated? ❖ How should the architecture be documented?
  • 11. Architectural design Dr. K. Adisesha 11 Architectural design decisions: The architecture of a system may be designed around one of more architectural patterns/styles, which capture the essence of an architecture and can be instantiated in different ways. ➢ The particular architectural style should depend on the non-functional system requirements: ❖ Performance: localize critical operations and minimize communications. Use large rather than fine-grain components. ❖ Security: use a layered architecture with critical assets in the inner layers. ❖ Safety: localize safety-critical features in a small number of sub-systems. ❖ Availability: include redundant components and mechanisms for fault tolerance. ❖ Maintainability: use fine-grain, replaceable components.
  • 12. Architectural design Dr. K. Adisesha 12 Architectural views: Each architectural model only shows one view or perspective of the system. It might show how a system is decomposed into modules, how the run-time processes interact or the different ways in which system components are distributed across a network. ➢ 4+1 view model of software architecture: ❖ A logical view: which shows the key abstractions in the system as objects or object classes. ❖ A process view: which shows how, at run-time, the system is composed of interacting processes. ❖ A development view: which shows how the software is decomposed for development. ❖ A physical view: which shows the system hardware and how software components are distributed across the processors in the system. ❖ Related using use cases or scenarios (+1).
  • 13. Architectural design Dr. K. Adisesha 13 Architectural Patterns: An architectural pattern is a stylized description of a good design practice, which has been tried and tested in different environments. ➢ Patterns are a means of representing, sharing and reusing knowledge. ➢ Patterns should include information about when they are and when the are not useful. Patterns may be represented using tabular and graphical descriptions. ➢ Various Architectural patterns are listed below: ❖ Model-View-Controller ❖ Layered Architecture ❖ Repository Architecture ❖ Client-server Architecture ❖ Pipe and filter Architecture
  • 14. Architectural patterns Dr. K. Adisesha 14 Model-View-Controller (MVC): Serves as a basis of interaction management in many web-based systems. The display presented to the user frequently changes over time in response to input or computation. ➢ Supported by most language frameworks. ➢ Decouples three major interconnected components: ❖ The Model is the central component of the pattern that directly manages the data, logic and rules of the application. It is the application's dynamic data structure, independent of the user interface. ❖ A View can be any output representation of information, such as a chart or a diagram. Multiple views of the same information are possible. ❖ The Controller accepts input and converts it to commands for the model or view.
  • 15. Architectural patterns Dr. K. Adisesha 15 Model-View-Controller (MVC): The display presented to the user frequently changes over time in response to input or computation. Different users have different needs for how they want to view the program ➢ The system is structured into three logical components that interact with each other. ❖ The Model component manages the system data and associated operations on that data. ❖ The View component defines and manages how the data is presented to the user. ❖ The Controller component manages user interaction (e.g., key presses, mouse clicks, etc.) and passes these interactions to the View and the Model.
  • 16. Architectural patterns Dr. K. Adisesha 16 Model-View-Controller (MVC): Separates presentation and interaction from the system data. The system is structured into three logical components that interact with each other. ➢ Advantages: ❖ Views and Controllers can be easily be added, removed, or changed during execution. User interface components can be changed, even at runtime. ➢ Disadvantages: ❖ Views and Controller are often hard to separate; frequent updates may slow data display and degrade user interface performance. ❖ The MVC style makes user interface components (views, controllers) highly dependent on model components.
  • 17. Architectural patterns Dr. K. Adisesha 17 Layered Architecture: Organizes the system into layers with related functionality associated with each layer. A layer provides services to the layer above it so the lowest-level layers represent core services that are likely to be used throughout the system. ➢ Used to model the interfacing of sub-systems. ➢ Organizes the system into a set of layers (or abstract machines) each of which provide a set of services. ➢ Supports the incremental development of sub-systems in different layers. When a layer interface changes, only the adjacent layer is affected. ➢ However, often artificial to structure systems in this way.
  • 18. Architectural patterns Dr. K. Adisesha 18 Layered Architecture: Used when building new facilities on top of existing systems; when the development is spread across several teams with each team responsibility for a layer of functionality; when there is a requirement for multi-level security. ➢ Advantages: ❖ Allows replacement of entire layers so long as the interface is maintained. ❖ Redundant facilities (e.g., authentication) can be provided in each layer to increase the dependability of the system.
  • 19. Architectural patterns Dr. K. Adisesha 19 Repository Architecture: All data in a system is managed in a central repository that is accessible to all system components. Components do not interact directly, only through the repository. ➢ Sub-systems must exchange data. This may be done in two ways: ❖ Shared data is held in a central database or repository and may be accessed by all sub-systems; ❖ Each sub-system maintains its own database and passes data explicitly to other sub-systems. ➢ When large amounts of data are to be shared, the repository model of sharing is most commonly used, this is an efficient data sharing mechanism.
  • 20. Architectural patterns Dr. K. Adisesha 20 Repository Architecture: Use this pattern when you have a system in which large volumes of information are generated that has to be stored for a long time. You may also use it in data-driven systems where the inclusion of data in the repository triggers an action or tool. ➢ Advantages: ❖ Components can be independent-they do not need to know of the existence of other components. Changes made by one component can be propagated to all components. ❖ All data can be managed consistently (e.g., backups done at the same time) as it is all in one place.
  • 21. Architectural patterns Dr. K. Adisesha 21 Client-Server Architecture: In a client-server architecture, the functionality of the system is organized into services, with each service delivered from a separate server. Clients are users of these services and access servers to make use of them. ➢ Distributed system model which shows how data and processing is distributed across a range of components, but can also be implemented on a single computer. ➢ Set of stand-alone servers which provide specific services such as printing, data management, etc., ➢ Set of clients which call on these services. ➢ Network which allows clients to access servers.
  • 22. Architectural patterns Dr. K. Adisesha 22 Client-server Architecture: Used when data in a shared database has to be accessed from a range of locations. Because servers can be replicated, may also be used when the load on a system is variable. ➢ Advantages: ❖ The principal advantage of this model is that servers can be distributed across a network. ❖ General functionality (e.g., a printing service) can be available to all clients and does not need to be implemented by all services.
  • 23. Architectural patterns Dr. K. Adisesha 23 Pipe and filter Architecture: The processing of the data in a system is organized so that each processing component (filter) is discrete and carries out one type of data transformation. ➢ The data flows (as in a pipe) from one component to another for processing. ➢ Functional transformations process their inputs to produce outputs. ➢ May be referred to as a pipe and filter model (as in UNIX shell). ➢ Variants of this approach are very common. When transformations are sequential, this is a batch sequential model which is extensively used in data processing systems. ➢ Not really suitable for interactive systems.
  • 24. Architectural patterns Dr. K. Adisesha 24 Pipe and filter Architecture: Commonly used in data processing applications (both batch- and transaction-based) where inputs are processed in separate stages to generate related outputs. ➢ Advantages: ❖ Easy to understand and supports transformation reuse. ❖ Workflow style matches the structure of many business processes. ❖ Evolution by adding transformations is straightforward. ❖ Can be implemented as either a sequential or concurrent system.
  • 25. Architectural patterns Dr. K. Adisesha 25 Application Architectures: A generic application architecture is an architecture for a type of software system that may be configured and adapted to create a system that meets specific requirements. ➢ Application systems are designed to meet an organizational need. ➢ As businesses have much in common, their application systems also tend to have a common architecture that reflects the application requirements. ➢ Application architectures can be used as a: ❖ Starting point for architectural design. ❖ Design checklist. ❖ Way of organizing the work of the development team. ❖ Means of assessing components for reuse. ❖ Vocabulary for talking about application types.
  • 26. Architectural patterns Dr. K. Adisesha 26 Application Architectures: As businesses have much in common, their application systems also tend to have a common architecture that reflects the application requirements. ➢ Examples of application types: ❖ Data processing applications: Data driven applications that process data in batches without explicit user intervention during the processing. ❖ Transaction processing applications: Data-centred applications that process user requests and update information in a system database. ❖ Event processing systems: Applications where system actions depend on interpreting events from the system's environment. ❖ Language processing systems: Applications where the users' intentions are specified in a formal language that is processed and interpreted by the system.
  • 27. OOD using UML Dr. K. Adisesha 27 Object-Oriented Design using UML: Structured object-oriented design processes involve developing a number of different system models. ➢ They require a lot of effort for development and maintenance and, for small systems, this may not be cost-effective. ➢ Common activities in these processes include: ❖ Define the context and modes of use of the system ❖ Design the system architecture ❖ Identify the principal system objects ❖ Develop design models ❖ Specify object interfaces
  • 28. OOD using UML Dr. K. Adisesha 28 Object-Oriented Design using UML: Object-Oriented Design is a software development approach to design and implement software system as a collection of interacting stateful objects with specified structure and behavior. ➢ We will take a look at some of OOD concepts that seem relevant to the UML: ❖ Classes, Object ❖ Interface ❖ Collaboration ❖ Use case ❖ Active classes ❖ Components ❖ Nodes
  • 29. OOD using UML Dr. K. Adisesha 29 Structural Things using UML: Graphical notations used in structural things are most widely used in UML. These are considered as the nouns of UML models. Interface Notation Use Case Notation Class & Object Notation Actor Notation Initial State Notation Final State Notation Active Class Notation Component Notation
  • 30. OOD using UML Dr. K. Adisesha 30 Structural Things using UML: Graphical notations used in structural things are most widely used in UML. These are considered as the nouns of UML models. ➢ Class & Object Notation: UML Classes are used to represent objects. Objects can be anything having properties and responsibility. The diagram is divided into four parts. ➢ Interface Notation: Interface is used to describe the functionality without implementation. Interface is represented by a circle. ➢ Use Case Notation: Use case is used to capture high level functionalities of a system. Use case is represented as an eclipse with a name inside it. ➢ Actor Notation: An actor can be defined as some internal or external entity that interacts with the system. ➢ Initial State Notation: Initial state is defined to show the start of a process. ➢ Final State Notation: Final state is used to show the end of a process.
  • 31. OOD using UML Dr. K. Adisesha 31 System context and interactions: Understanding the relationships between the software that is being designed and its external environment is essential for deciding how to provide the required system functionality and how to structure the system to communicate with its environment. ➢ Understanding of the context also lets you establish the boundaries of the system. ➢ Setting the system boundaries helps you decide what features are implemented in the system being designed and what features are in other associated systems. ❖ A system context is a structural model (e.g., a class diagram) that demonstrates the other systems in the environment of the system being developed. ❖ An interaction model is a dynamic model (e.g., a use case diagram + structured natural language description) that shows how the system interacts with its environment as it is used.
  • 32. OOD using UML Dr. K. Adisesha 32 Weather station: The weather information system establishes a satellite communication link with the weather station and requests transmission of the data. ➢ Understanding of the context also lets you establish the boundaries of the system ➢ Use case: Report weather Actors:Weather information system, Weather station
  • 33. OOD using UML Dr. K. Adisesha 33 Weather station: The weather information system establishes a satellite communication link with the weather station and requests transmission of the data. System Weather station Use case Report weather Actors Weather information system, Weather station Description The weather station sends a summary of the weather data that has been collected from the instruments in the collection period to the weather information system. The data sent are the maximum, minimum, and average ground and air temperatures; the maximum, minimum, and average air pressures; the maximum, minimum, and average wind speeds; the total rainfall; and the wind direction as sampled at five-minute intervals. Stimulus The weather information system establishes a satellite communication link with the weather station and requests transmission of the data. Response The summarized data is sent to the weather information system. Comments Weather stations are usually asked to report once per hour but this frequency may differ from one station to another and may be modified in the future.
  • 34. OOD using UML Dr. K. Adisesha 34 Architectural design: Once interactions between the system and its environment have been understood, you use this information for designing the system architecture. ➢ You identify the major components that make up the system and their interactions, and then may organize the components using an architectural pattern (e.g. a layered or client- server model).
  • 35. OOD using UML Dr. K. Adisesha 35 Architectural design: Identifying object classes is often a difficult part of object oriented design. There is no 'magic formula' for object identification. ➢ It relies on the skill, experience and domain knowledge of system designers. ➢ Object identification is an iterative process. You are unlikely to get it right first time. ➢ Approaches to object identification include: ❖ Use a grammatical approach based on a natural language description of the system. ❖ Base the identification on tangible things in the application domain. ❖ Use a behavioral approach and identify objects based on what participates in what behavior. ❖ Use a scenario-based analysis. The objects, attributes and methods in each scenario are identified.
  • 36. Discussion Dr. K. Adisesha 36 Queries ? Prof. K. Adisesha 9449081542 Reference: Sommerville, Software Engineering, 10 ed.,