SlideShare a Scribd company logo
Component Based Models
and Technology
Introduction
In contrast to design, which usually denotes a well-defined phase in the
software life cycle between requirements engineering and implementation,
modeling covers all activities ranging from analytical studies of an application
domain to testing of system parts.
Our experience has shown that these activities require a lot of knowledge and
creativity. Thus it is not purposeful to structure modeling activities by a strict
method. The process of modeling is not predictable and cannot be controlled
in a generic way.
Important properties of design or modeling techniques are the various visual
representation forms (diagrams and descriptions) of several system aspects.
We are not surprised by this focusing on design description and
representation, because our view on modeling agrees that it is simply
impossible to find adequate solutions just by following a strict method.
Style of Representation
The main purpose of the representation of the architecture is the
documentation of (intermediate) results of the modeling process to
communicate the concepts among developers, managers, programmers and
anyone else. On the one hand, it should be relatively (programming) language-
independent, but, on the other hand, the implementation should be rather
straightforward. Due to the importance of reusability, prefabricated components
should be easily embedable.
Most representation techniques use primarily diagrams and charts to capture
the essential model concepts. The reason is the more direct transformation of
mental models into graphic images and their better intuitive comprehensibility.
But graphics have their drawbacks: They tend to require enormous drawing
space which is usually just not available or useful.
Furthermore, transforming a graphic diagram into an executable program is
often a nontrivial, error-prone task. In this respect, textual representations are
superior. Unfortunately, they are less intuitive and prove inferior as thinking
tools or vehicles. So our solution encompasses both, a graphical and a textual
representation.
Composition Representation
The first kind of diagram or description depicts the decomposition of (part of)
the system into components and how these components are coupled. Each
building block has a unique name and a number of essential attributes. The
attributes serve to describe the main characteristics of their components.
Direct coupling expresses that one component uses another directly for some
reason and that the former knows the actions of the latter. Hence all actions
defined by the used part can be invoked.
Indirect coupling means that the first component can only use a (typically
small) set of standardized actions which are forwarded by the mediating
component. Mediating components which do not offer additional functionality
are represented in a collapsed form by a small circle.
Figure depicts a component structure model consisting of three coupled
components.
The second attribute of component2 holds a string value, which can be written
directly behind the attributes name whenever no other component refers to the
string.
The following textual description represents similar structure in a textual form.
The textual description gives a better chance to annotate attributes and couplings. Components
of the same kind, but with different couplings, can be described collectively in a list as shown
for comp4 , comp5, comp6 . Indirect coupling is indicated by a symbolized double arrow (-
>->).
The purpose of the component representation is to describe the static structure of the system. To
complement this picture, we need a description of the dynamic behavior, which is introduced in
the next section.
Collaboration Representation
It is not possible to give one aspect absolute precedence over the other; both the
composition and the collaboration model have to be developed in parallel.
For equal rights reasons, we now start with a textual representation. It first describes
the components by relevant actions and events which can and should be used by
other components. Each action is introduced by a leading ”>” symbol; the events are
marked by an appended ”>” symbol. Next, we describe all collaborations with
causality relationships. A causality relationship associates an event of an originator
component with an action of a receiver component. The meaning is obvious:
Whenever the originator component triggers the event (because of a state change
during an action execution), the associated action is invoked at the specified receiver
component. Optionally, a collaboration relationship may specify a list of arguments
which serve as parameters for the action. The collaboration relations of a component
implemented by a generic event dictionary where the event names serve as keys and
the action commands can be registered appropriately. When an event is triggered in a
specific component at run time, a dispatching mechanism looks up in the event
dictionary and activates one by one the action commands that are registered for the
event.
As in the composition model, equal
components can be described
collectively by arranging them in a list.
Figure 2 depicts the dynamic
collaboration model in a graphic form.
Layered Application Architecture
Composing applications out of components is not as simple as building toy
models out of Lego bricks; therefore we suggest a layered architecture for
highly interactive applications, with well defined functionality at each layer. For
typical information system applications, our architecture model consists of four
layers, as shown in Figure.
Layer 1: User Interface Model
The user interface layer consists entirely of the user interface building blocks, i.e.,
components which have a run-time representation on the screen. Obviously, the
task of these components is visualizing of application data and control devices as
well as capturing user input and triggering events for invoking the associated
commands. Very often, user interface components
can be changed either by direct manipulation by the user (e.g., selecting a list
item) or by changing program states (e.g., updating a displayed list). Since
interaction components cannot assume any functionality of the functional
components, the collaboration can only be configured dynamically in one
direction
Layer 2: Application Model
The application model consists of components which form the functional core of the
application. It has to build up and open the user interface at program start. During
program execution the application components have to maintain the user interface
according to the program state. Actuating a control element at the user interface
usually results in invoking a method of the application model. Since the application
model knows the user interface model as well as the lower-level model, it establishes
the dynamic collaboration relationships among all components. It is purposeful to
decompose a complex application model into several independent components
which either work together via dynamic collaboration or even better are just
synchronized by the underlying layer.
Layer 3: Access Model
The access layer serves as mediator between the user interface or the application
model on the one side and the domain model on the other side. It has two
important tasks: first, synchronizing accesses to and updates of the data (i.e.,
broadcasting changed events to all dependent view or application components)
and second, supplying view components with their data when required. Ideally,
the access layer should completely hide and encapsulate the underlying data, but
provide controlled access. Therefore, only values and copies of data objects
should be passed through to the higher layers. Application-specific access model
components can be viewed as the respective handling instances (authorities) for
the domain components.
Layer 4: Domain Model
The primary purpose of the domain model is to store the application data during
program execution. We prefer to use a structural object model, which is an object-
oriented data model of the domain. The domain model provides all necessary
operations for querying and manipulating the data in a basic, application-
independent form. Furthermore, the domain model is responsible for checking all
integrity conditions and ensuring other semantic characteristics of the data model.
If separated domain models might influence each other, all manipulations should
be done via the access layer. In such cases, only dynamic collaboration can be
used.
Modeling Process Activities
Domain Investigation
Having a sound knowledge on the problem domain is an absolute requirement for being able to
develop systems that solve real problems. For acquiring problem domain knowledge, a number
of techniques have been discovered and proven purposeful, including interviews,
questionnaires and accumulation of artifacts (forms, reports). Additionally, use cases and
scenarios can be used for describing business process activities. These utilities are documented
extensively in the requirements engineering literature.
Conceptual Modeling
"Conceptual modeling denotes an understanding and construction process with the purpose of
forming a model of some part of the world expressed by concepts and phenomena, i.e. a concept
formation process. The purpose of the model may either be the understanding of some existing
system or the design of some new model system."
The resulting model describes or represents concepts and phenomena of the problem domain and
their relationships in an informal way, so that the concepts and phenomena can be communicated
among all involved persons.
User Interface Modeling (Prototyping)
A crucial step in modeling is the development of a user view of the system.
This can be done by involving the experts (i.e., end users) as important participants in the process.
Data Modeling
Especially (but not exclusively) in information system development, data structures form a
decisive factor in the development process. The data engineering community has created a rich
repertoire for many aspects of data modeling.
Behavior Modeling
What we term behavior modeling is a consolidation and simplification of dynamic and state
modeling as described by Rumbaugh et al. [Rumbaugh91]. Here we view the system model as
a state automaton where each system state or mode is expressed in domain subject terms. The
behavior model is formed by a list of transactions. Each transaction is described by a user
command (input), a current state, the resulting visual response (output) and the resulting new
or old state. Additionally, each transaction may specify its implications on the data model. It is
important to understand that our behavior model views the system as a black box with a
known internal state. The behavior model should closely correspond to the conceptual model
of the end user of the system.
Component Modeling
Component modeling encompasses the activities of finding and identifying all components,
defining attributes, defining actions, defining events, and defining couplings and collaborations
of the proposed composition and collaboration model.
Components are usually already indicated by nouns of the glossary. They often correspond
to nouns, but in contrast to object modeling, closely related things which cannot exist
independently are grouped together within one component. Adjectives which can be associated
with component nouns are often candidates for attributes and verbs for actions. Since no
component is an island, some attributes may refer to other components, and/or events can be
identified which may be of interest to the environment
Interface Definition Modeling
We assume that a number of components can be reused from a library of prefabricated parts.
Only components which are not already available have to be implemented by means of a
program. For this purpose we suggest deriving class interface definitions out of the component
model. Developing the class definitions requires some experience to find good compromises
between optimal suitability for the system at hand and enough flexibility for future changes or
reuse engagements for the component.
Implementation and Test
Perhaps surprisingly, these activities belong to the modeling activities, too. But creating an
executable system in parallel with other modeling activities has the advantage that many
hindsights gained from programming can improve the overall process and the product.
Additionally, feasibility or efficiency problems of any kind arise much earlier, and developers
are motivated by an already working subsystem.
Component TechnologiesComponent Technologies
Overview
 Introduction
 ACME Architectural Description Language
 Java Bean Component Model
 COM, DCOM, MTS and COM+
 CORBA Component Model (CCM)
 .NET Component Model
 OSGI Component Model
Introduction
 A Short Historical Perspective
 Component Interface and Connections
 Performing Services Transparently
A Short Historical Perspective
 Programming languages, can be seen from either
 The run-time point of view or,
 The design and reuse perspective
Component Interface and
Connections
 ADLs primarily address the issues related to the
early phases of software engineering:
 Design
 Analysis
 They identify a number of concepts, such as:
 Architecture, configurations, connectors, bindings,
properties, hierarchical models, style, static analysis and
behavior.
Component Interactions
Iteractions with
traditional software entities
Interactions
with
other
components
Interact
with
other
component
Interactions with
component
infrastructure
Components
Traditional
software
entities
Component
Infrastructure
Majors steps in CBD lifecycle
Aspect Phase Actor
Interface Definition Designer
Assembly Assembly Architect
Implementation Implementation Developer
Lifecycle Packaging,
Deployment
Administrator
Framework,
run-time support
Execution End User
ACME Architectural Description Language
 Components and Ports
 Connectors and Roles
 Systems and Attachments
 Representations and Bindings
 Properties, Constraints, Types and Styles
Components and Ports
 Components
 Represent the computational elements and data
stores of a system.
 Ports
 Are the points of interaction between a
component and its environment.
Component
Port
Connectors and Roles
 Connectors
 Represent interactions between components such as
method calls or an SQL connection between a client and
a database server.
 The interface of a connector is defined as a set of
roles
Connector
Role
Systems and Attachments
 The structure of a system is specified by a set of
components, a set of connectors, and a set of
attachments.
 Attachment
 Links a component port to a connector role.
Attachement
Representations and Bindings
Connector
Component
Port
Role
Attachement
Binding
Java Bean Component Model
 Key Features
 Interface of a Component
 Implementation of a Component
 Components Assembly
 Packaging and Deployment
Key Features
 Bean Box
 "A Java Bean is a reusable software component that
can be manipulated visually in a builder tool”.
 The Java Bean was designed for the construction of
graphical user interface (GUI).
 Explicitly tailored to interact in two different contexts:
 At composition time, within the builder tool.
 At execution time, with the runtime environment.
Interface of a Component
 This model defines four types of port:
 methods,
 properties,
 event sources and
 event sinks called listeners.
Read-only property
Write-only property
Property
Method
Event source
Event sink (listener)
Bounded property
v Vetoable property
ro
wo
1 Unicast event source
Ports
Implementation of a Component
 Most bean components are implemented by a simple
Java object, the object being encapsulated in the
component, but there are more sophisticated
implementations possible.
 Wrapping a legacy object.
 Multiple-objects implementation.
 Dependency on traditional entities.
Implementations of Bean Components
Object
Method
Method call
Binding
A simple implementation A more complex implementation
Components Assembly
 Assembly is one of the key features of Java Bean
though no not specific solution is provided.
 Different ways of assembling components are
supplied.
Component-based assembly Heterogeneous assembly
Packaging and Deployment
 Java Beans define a model for packaging
components into archives.
 Includes the definition of dependency relationships between
the package items.
 The customization code can be more complex than
the component itself!
 Each package item can be marked "Design Only", so
that they can be removed in a final application.
COM, DCOM, MTS and COM+
 Interfaces and Assembly
 Implementation
 Framework
 Lifecycle
Interfaces and Assembly
 A COM interface is seen as a C++ virtual class and
takes the form of a list of data and function
declarations without associated code.
 All interfaces are descendants of the IUnknown
interface.
Component interface
Interface
Component implementation
Implementation
 A COM object is a piece of binary code, written in any
programming language, as long as the compiler
generates code following the binary interoperability
convention.
Framework
 Standard interfaces
 A simple run-time
Lifecycle
 COM, and COM+ are strictly execution time and
binary component models.
 No lifecycle issues are explicitly supported.
CORBA Component Model (CCM)
 Interface and Assembly
 Framework : The Container Approach

Lifecycle
Interface and Assembly
 A component interface is made of ports divided into:
 Facets
 Receptacles
 Event sources
 Event sinks
Component interface
Attribute
Facet
Event source
Event sink
Ports
Receptacle Segment
Component implementation
Framework : The Container Approach
 Services can be made available to components without having
to change that component’s source code.
CCM run-time infrastrucure
container
Lifecycle
 CCM is the best effort to date:
 To gather the advances made in different fields,
 To include a wide spectrum of lifecycle activities,
while still claiming efficiency and heterogeneity
capabilities,
 However, the whole does not provide the feeling
of being as “simple” as claimed.
.NET Component Model
 Interfaces and Assembly
 Implementation
 Framework
 Lifecycle
Interfaces and Assembly
 programming language approach for component
programming.
 The program contains the information related to the
relationships with other “components”, and that the
compiler is responsible for generating the information
needed at execution.
 There is no explicit concept of connection but rather the
traditional list of imported and exported resources.
Implementation
 A component (assembly) is made of modules, which
are traditional executable files (DLL).
 Modules cannot be assemblies, thus the .NET model
is not hierarchical.
Component interface
Attribute
Method
Event source
Ports
Event source
Component implementation
Modules
Framework
 .NET relies on the traditional programming
approach : the framework is seen as the language run-
time support.
 Transaction control relies on MTS.
Lifecycle
 Assemblies (and their modules) are local to an
application, and thus different DLLs with same name can
run simultaneously.
 Each assembly has a versioning information about itself
and about the assemblies it depends on.
 Version control is delegated to the dynamic loader, which selects
the “right” version.
 Significantly improve the application packaging and
deployment.
 Early lifecycles phases do not seem to have received
much attention.
OSGI Component Model
 Components
 Interface of a Bundle Component
 Assembly of Bundle Components

Implementation of a Bundle Component
Components
 A bundle use three kinds of ports to express its
interactions with
 Traditional technology
 Other components
 The run-time environment
 Bundles may listen to events published by the framework
such as the insertion of a new component in a system.
Interface of a Bundle Component
Package export
Package import
Service use
Ports
Service interface
static
dynamic
Interface of a bundle component
Assembly of Bundle Components
 A system is an evolving set of bundle
components.
 A bundle component publishes a service interface
 It can attach to it a set of properties describing its
characteristics.
 A component requires an interface for its use,
 It will select one via a query expression based on these
properties.
 This flexibility also has its counterpart
 There is no guarantee than the service will continue to
be available
Implementation of a Bundle Component
 JAR archive containing:
 Service components
 Java packages
 Other resources files
Package
Resource
Service component
Activator
Thank you!Thank you!
Mayukh Maitra (2K11/SE/038)
Saransh Garg (2K11/SE/063)
Siddharth Malhotra (2K11/SE/074)
Isha Panesar (2K11/SE/034)

More Related Content

What's hot (20)

PDF
JavaScript - Chapter 12 - Document Object Model
WebStackAcademy
 
PPT
Command Design Pattern
Shahriar Hyder
 
PDF
Asp.net state management
priya Nithya
 
PPT
Graphical User Interface in JAVA
suraj pandey
 
PPTX
Introduction to php
shanmukhareddy dasi
 
PDF
Fragments In Android
DivyaKS12
 
PPTX
Cookie & Session In ASP.NET
ShingalaKrupa
 
PPTX
Message and Stream Oriented Communication
Dilum Bandara
 
PPTX
JAVA AWT
shanmuga rajan
 
PPTX
Java Servlet
Yoga Raja
 
PPTX
Content provider in_android
PRITI TELMORE
 
PPT
Java: GUI
Tareq Hasan
 
PPT
Object Oriented Design Concept
Sharath g
 
PPTX
Relationship Among Token, Lexeme & Pattern
Bharat Rathore
 
PPTX
Android Architecture.pptx
priya Nithya
 
PPTX
servlet in java
sowfi
 
PDF
software design principles
Cristal Ngo
 
PDF
Ooad
Hari Aryal
 
PPTX
Event Handling in java
Google
 
PPTX
Fragment
nationalmobileapps
 
JavaScript - Chapter 12 - Document Object Model
WebStackAcademy
 
Command Design Pattern
Shahriar Hyder
 
Asp.net state management
priya Nithya
 
Graphical User Interface in JAVA
suraj pandey
 
Introduction to php
shanmukhareddy dasi
 
Fragments In Android
DivyaKS12
 
Cookie & Session In ASP.NET
ShingalaKrupa
 
Message and Stream Oriented Communication
Dilum Bandara
 
JAVA AWT
shanmuga rajan
 
Java Servlet
Yoga Raja
 
Content provider in_android
PRITI TELMORE
 
Java: GUI
Tareq Hasan
 
Object Oriented Design Concept
Sharath g
 
Relationship Among Token, Lexeme & Pattern
Bharat Rathore
 
Android Architecture.pptx
priya Nithya
 
servlet in java
sowfi
 
software design principles
Cristal Ngo
 
Event Handling in java
Google
 

Similar to Component based models and technology (20)

PPTX
UML and Software Modeling Tools.pptx
Nwabueze Obioma
 
PDF
Object oriented analysis and design unit- iv
Shri Shankaracharya College, Bhilai,Junwani
 
PDF
Software Engineering Tools and Practices.pdf
MeagGhn
 
PPT
Object oriented sad-5 part ii
Bisrat Girma
 
PDF
Object-Oriented Analysis and Design report
ritikapoudel2017
 
PPT
Ppt slides 05
locpx
 
PDF
INTRODUCTION TO UML DIAGRAMS
Ashita Agrawal
 
PPTX
software engineering Architecture and design Unit 3.pptx
SomnathMule5
 
PPT
6. Requirement Modelinbbdhdhbdhhdbbdg.ppt
harshpately63
 
PPTX
PHASE II.pptx
MotiDiro1
 
PPTX
Uml
steffy D
 
PDF
Modeling software architecture with uml
International Journal of Science and Research (IJSR)
 
PPTX
Uml
Vishwa Mohan
 
PPTX
Chapter 2_NEW-An overview of UMLupdated.pptx
aragawbayuh
 
PPTX
UNIT 3-DEMONSTRATING A COMPREHENSIVE UNDERSTANDING OF SOFTWARE DESIGN.pptx
LeahRachael
 
PPTX
Software requirement specification Unit 3.pptx
SomnathMule5
 
PPTX
Architecture and design
himanshu_airon
 
PPT
Introduction to Object orientation , Modeling as a Design Technique Modeling ...
DhwaniDesai21
 
PPT
Design concepts and principles
saurabhshertukde
 
PDF
Uml examples
Ashenafi Workie
 
UML and Software Modeling Tools.pptx
Nwabueze Obioma
 
Object oriented analysis and design unit- iv
Shri Shankaracharya College, Bhilai,Junwani
 
Software Engineering Tools and Practices.pdf
MeagGhn
 
Object oriented sad-5 part ii
Bisrat Girma
 
Object-Oriented Analysis and Design report
ritikapoudel2017
 
Ppt slides 05
locpx
 
INTRODUCTION TO UML DIAGRAMS
Ashita Agrawal
 
software engineering Architecture and design Unit 3.pptx
SomnathMule5
 
6. Requirement Modelinbbdhdhbdhhdbbdg.ppt
harshpately63
 
PHASE II.pptx
MotiDiro1
 
Modeling software architecture with uml
International Journal of Science and Research (IJSR)
 
Chapter 2_NEW-An overview of UMLupdated.pptx
aragawbayuh
 
UNIT 3-DEMONSTRATING A COMPREHENSIVE UNDERSTANDING OF SOFTWARE DESIGN.pptx
LeahRachael
 
Software requirement specification Unit 3.pptx
SomnathMule5
 
Architecture and design
himanshu_airon
 
Introduction to Object orientation , Modeling as a Design Technique Modeling ...
DhwaniDesai21
 
Design concepts and principles
saurabhshertukde
 
Uml examples
Ashenafi Workie
 
Ad

More from Saransh Garg (18)

PPTX
Technical non-technical-requirement-of-cots-selection
Saransh Garg
 
PPTX
Selecting with multiple interfaces
Saransh Garg
 
PPTX
Selecting cots vendor in cbse process
Saransh Garg
 
PPTX
Scs.pptx repaired
Saransh Garg
 
PPTX
Repo for cbt
Saransh Garg
 
PPT
Rbce
Saransh Garg
 
PPTX
Predicting system trustworthyness
Saransh Garg
 
PPTX
Koala component model (1)
Saransh Garg
 
PPT
Javabean1
Saransh Garg
 
PPTX
Integration in component based technology
Saransh Garg
 
PPTX
Embedded system.pptx
Saransh Garg
 
PPT
Cots integration
Saransh Garg
 
PPTX
Corba model ppt
Saransh Garg
 
PPTX
Composition of cots
Saransh Garg
 
PPTX
Components in real time systems
Saransh Garg
 
PPTX
Component object model and
Saransh Garg
 
PPT
Cbt component based technology architectures
Saransh Garg
 
PPTX
Architecture support for component
Saransh Garg
 
Technical non-technical-requirement-of-cots-selection
Saransh Garg
 
Selecting with multiple interfaces
Saransh Garg
 
Selecting cots vendor in cbse process
Saransh Garg
 
Scs.pptx repaired
Saransh Garg
 
Repo for cbt
Saransh Garg
 
Predicting system trustworthyness
Saransh Garg
 
Koala component model (1)
Saransh Garg
 
Javabean1
Saransh Garg
 
Integration in component based technology
Saransh Garg
 
Embedded system.pptx
Saransh Garg
 
Cots integration
Saransh Garg
 
Corba model ppt
Saransh Garg
 
Composition of cots
Saransh Garg
 
Components in real time systems
Saransh Garg
 
Component object model and
Saransh Garg
 
Cbt component based technology architectures
Saransh Garg
 
Architecture support for component
Saransh Garg
 
Ad

Recently uploaded (20)

PPSX
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
PPTX
Gall bladder, Small intestine and Large intestine.pptx
rekhapositivity
 
PPTX
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
PPTX
How to Configure Prepayments in Odoo 18 Sales
Celine George
 
PPTX
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
PPSX
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
PPTX
SCHOOL-BASED SEXUAL HARASSMENT PREVENTION AND RESPONSE WORKSHOP
komlalokoe
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PPTX
Explorando Recursos do Summer '25: Dicas Essenciais - 02
Mauricio Alexandre Silva
 
PPTX
Pyhton with Mysql to perform CRUD operations.pptx
Ramakrishna Reddy Bijjam
 
PPTX
How to Define Translation to Custom Module And Add a new language in Odoo 18
Celine George
 
PPTX
LEGAL ASPECTS OF PSYCHIATRUC NURSING.pptx
PoojaSen20
 
PDF
IMP NAAC REFORMS 2024 - 10 Attributes.pdf
BHARTIWADEKAR
 
PPTX
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PPTX
PPT on the Development of Education in the Victorian England
Beena E S
 
PPTX
ROLE OF ANTIOXIDANT IN EYE HEALTH MANAGEMENT.pptx
Subham Panja
 
PPTX
HEAD INJURY IN CHILDREN: NURSING MANAGEMENGT.pptx
PRADEEP ABOTHU
 
PDF
1, 2, 3… E MAIS UM CICLO CHEGA AO FIM!.pdf
Colégio Santa Teresinha
 
PDF
Federal dollars withheld by district, charter, grant recipient
Mebane Rash
 
PDF
The-Beginnings-of-Indian-Civilisation.pdf/6th class new ncert social/by k san...
Sandeep Swamy
 
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
Gall bladder, Small intestine and Large intestine.pptx
rekhapositivity
 
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
How to Configure Prepayments in Odoo 18 Sales
Celine George
 
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
SCHOOL-BASED SEXUAL HARASSMENT PREVENTION AND RESPONSE WORKSHOP
komlalokoe
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
Explorando Recursos do Summer '25: Dicas Essenciais - 02
Mauricio Alexandre Silva
 
Pyhton with Mysql to perform CRUD operations.pptx
Ramakrishna Reddy Bijjam
 
How to Define Translation to Custom Module And Add a new language in Odoo 18
Celine George
 
LEGAL ASPECTS OF PSYCHIATRUC NURSING.pptx
PoojaSen20
 
IMP NAAC REFORMS 2024 - 10 Attributes.pdf
BHARTIWADEKAR
 
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PPT on the Development of Education in the Victorian England
Beena E S
 
ROLE OF ANTIOXIDANT IN EYE HEALTH MANAGEMENT.pptx
Subham Panja
 
HEAD INJURY IN CHILDREN: NURSING MANAGEMENGT.pptx
PRADEEP ABOTHU
 
1, 2, 3… E MAIS UM CICLO CHEGA AO FIM!.pdf
Colégio Santa Teresinha
 
Federal dollars withheld by district, charter, grant recipient
Mebane Rash
 
The-Beginnings-of-Indian-Civilisation.pdf/6th class new ncert social/by k san...
Sandeep Swamy
 

Component based models and technology

  • 2. Introduction In contrast to design, which usually denotes a well-defined phase in the software life cycle between requirements engineering and implementation, modeling covers all activities ranging from analytical studies of an application domain to testing of system parts. Our experience has shown that these activities require a lot of knowledge and creativity. Thus it is not purposeful to structure modeling activities by a strict method. The process of modeling is not predictable and cannot be controlled in a generic way. Important properties of design or modeling techniques are the various visual representation forms (diagrams and descriptions) of several system aspects. We are not surprised by this focusing on design description and representation, because our view on modeling agrees that it is simply impossible to find adequate solutions just by following a strict method.
  • 3. Style of Representation The main purpose of the representation of the architecture is the documentation of (intermediate) results of the modeling process to communicate the concepts among developers, managers, programmers and anyone else. On the one hand, it should be relatively (programming) language- independent, but, on the other hand, the implementation should be rather straightforward. Due to the importance of reusability, prefabricated components should be easily embedable. Most representation techniques use primarily diagrams and charts to capture the essential model concepts. The reason is the more direct transformation of mental models into graphic images and their better intuitive comprehensibility. But graphics have their drawbacks: They tend to require enormous drawing space which is usually just not available or useful. Furthermore, transforming a graphic diagram into an executable program is often a nontrivial, error-prone task. In this respect, textual representations are superior. Unfortunately, they are less intuitive and prove inferior as thinking tools or vehicles. So our solution encompasses both, a graphical and a textual representation.
  • 4. Composition Representation The first kind of diagram or description depicts the decomposition of (part of) the system into components and how these components are coupled. Each building block has a unique name and a number of essential attributes. The attributes serve to describe the main characteristics of their components. Direct coupling expresses that one component uses another directly for some reason and that the former knows the actions of the latter. Hence all actions defined by the used part can be invoked. Indirect coupling means that the first component can only use a (typically small) set of standardized actions which are forwarded by the mediating component. Mediating components which do not offer additional functionality are represented in a collapsed form by a small circle.
  • 5. Figure depicts a component structure model consisting of three coupled components. The second attribute of component2 holds a string value, which can be written directly behind the attributes name whenever no other component refers to the string. The following textual description represents similar structure in a textual form.
  • 6. The textual description gives a better chance to annotate attributes and couplings. Components of the same kind, but with different couplings, can be described collectively in a list as shown for comp4 , comp5, comp6 . Indirect coupling is indicated by a symbolized double arrow (- >->). The purpose of the component representation is to describe the static structure of the system. To complement this picture, we need a description of the dynamic behavior, which is introduced in the next section.
  • 7. Collaboration Representation It is not possible to give one aspect absolute precedence over the other; both the composition and the collaboration model have to be developed in parallel. For equal rights reasons, we now start with a textual representation. It first describes the components by relevant actions and events which can and should be used by other components. Each action is introduced by a leading ”>” symbol; the events are marked by an appended ”>” symbol. Next, we describe all collaborations with causality relationships. A causality relationship associates an event of an originator component with an action of a receiver component. The meaning is obvious: Whenever the originator component triggers the event (because of a state change during an action execution), the associated action is invoked at the specified receiver component. Optionally, a collaboration relationship may specify a list of arguments which serve as parameters for the action. The collaboration relations of a component implemented by a generic event dictionary where the event names serve as keys and the action commands can be registered appropriately. When an event is triggered in a specific component at run time, a dispatching mechanism looks up in the event dictionary and activates one by one the action commands that are registered for the event.
  • 8. As in the composition model, equal components can be described collectively by arranging them in a list. Figure 2 depicts the dynamic collaboration model in a graphic form.
  • 9. Layered Application Architecture Composing applications out of components is not as simple as building toy models out of Lego bricks; therefore we suggest a layered architecture for highly interactive applications, with well defined functionality at each layer. For typical information system applications, our architecture model consists of four layers, as shown in Figure.
  • 10. Layer 1: User Interface Model The user interface layer consists entirely of the user interface building blocks, i.e., components which have a run-time representation on the screen. Obviously, the task of these components is visualizing of application data and control devices as well as capturing user input and triggering events for invoking the associated commands. Very often, user interface components can be changed either by direct manipulation by the user (e.g., selecting a list item) or by changing program states (e.g., updating a displayed list). Since interaction components cannot assume any functionality of the functional components, the collaboration can only be configured dynamically in one direction Layer 2: Application Model The application model consists of components which form the functional core of the application. It has to build up and open the user interface at program start. During program execution the application components have to maintain the user interface according to the program state. Actuating a control element at the user interface usually results in invoking a method of the application model. Since the application model knows the user interface model as well as the lower-level model, it establishes the dynamic collaboration relationships among all components. It is purposeful to decompose a complex application model into several independent components which either work together via dynamic collaboration or even better are just synchronized by the underlying layer.
  • 11. Layer 3: Access Model The access layer serves as mediator between the user interface or the application model on the one side and the domain model on the other side. It has two important tasks: first, synchronizing accesses to and updates of the data (i.e., broadcasting changed events to all dependent view or application components) and second, supplying view components with their data when required. Ideally, the access layer should completely hide and encapsulate the underlying data, but provide controlled access. Therefore, only values and copies of data objects should be passed through to the higher layers. Application-specific access model components can be viewed as the respective handling instances (authorities) for the domain components. Layer 4: Domain Model The primary purpose of the domain model is to store the application data during program execution. We prefer to use a structural object model, which is an object- oriented data model of the domain. The domain model provides all necessary operations for querying and manipulating the data in a basic, application- independent form. Furthermore, the domain model is responsible for checking all integrity conditions and ensuring other semantic characteristics of the data model. If separated domain models might influence each other, all manipulations should be done via the access layer. In such cases, only dynamic collaboration can be used.
  • 12. Modeling Process Activities Domain Investigation Having a sound knowledge on the problem domain is an absolute requirement for being able to develop systems that solve real problems. For acquiring problem domain knowledge, a number of techniques have been discovered and proven purposeful, including interviews, questionnaires and accumulation of artifacts (forms, reports). Additionally, use cases and scenarios can be used for describing business process activities. These utilities are documented extensively in the requirements engineering literature. Conceptual Modeling "Conceptual modeling denotes an understanding and construction process with the purpose of forming a model of some part of the world expressed by concepts and phenomena, i.e. a concept formation process. The purpose of the model may either be the understanding of some existing system or the design of some new model system." The resulting model describes or represents concepts and phenomena of the problem domain and their relationships in an informal way, so that the concepts and phenomena can be communicated among all involved persons.
  • 13. User Interface Modeling (Prototyping) A crucial step in modeling is the development of a user view of the system. This can be done by involving the experts (i.e., end users) as important participants in the process. Data Modeling Especially (but not exclusively) in information system development, data structures form a decisive factor in the development process. The data engineering community has created a rich repertoire for many aspects of data modeling. Behavior Modeling What we term behavior modeling is a consolidation and simplification of dynamic and state modeling as described by Rumbaugh et al. [Rumbaugh91]. Here we view the system model as a state automaton where each system state or mode is expressed in domain subject terms. The behavior model is formed by a list of transactions. Each transaction is described by a user command (input), a current state, the resulting visual response (output) and the resulting new or old state. Additionally, each transaction may specify its implications on the data model. It is important to understand that our behavior model views the system as a black box with a known internal state. The behavior model should closely correspond to the conceptual model of the end user of the system.
  • 14. Component Modeling Component modeling encompasses the activities of finding and identifying all components, defining attributes, defining actions, defining events, and defining couplings and collaborations of the proposed composition and collaboration model. Components are usually already indicated by nouns of the glossary. They often correspond to nouns, but in contrast to object modeling, closely related things which cannot exist independently are grouped together within one component. Adjectives which can be associated with component nouns are often candidates for attributes and verbs for actions. Since no component is an island, some attributes may refer to other components, and/or events can be identified which may be of interest to the environment Interface Definition Modeling We assume that a number of components can be reused from a library of prefabricated parts. Only components which are not already available have to be implemented by means of a program. For this purpose we suggest deriving class interface definitions out of the component model. Developing the class definitions requires some experience to find good compromises between optimal suitability for the system at hand and enough flexibility for future changes or reuse engagements for the component. Implementation and Test Perhaps surprisingly, these activities belong to the modeling activities, too. But creating an executable system in parallel with other modeling activities has the advantage that many hindsights gained from programming can improve the overall process and the product. Additionally, feasibility or efficiency problems of any kind arise much earlier, and developers are motivated by an already working subsystem.
  • 16. Overview  Introduction  ACME Architectural Description Language  Java Bean Component Model  COM, DCOM, MTS and COM+  CORBA Component Model (CCM)  .NET Component Model  OSGI Component Model
  • 17. Introduction  A Short Historical Perspective  Component Interface and Connections  Performing Services Transparently
  • 18. A Short Historical Perspective  Programming languages, can be seen from either  The run-time point of view or,  The design and reuse perspective
  • 19. Component Interface and Connections  ADLs primarily address the issues related to the early phases of software engineering:  Design  Analysis  They identify a number of concepts, such as:  Architecture, configurations, connectors, bindings, properties, hierarchical models, style, static analysis and behavior.
  • 20. Component Interactions Iteractions with traditional software entities Interactions with other components Interact with other component Interactions with component infrastructure Components Traditional software entities Component Infrastructure
  • 21. Majors steps in CBD lifecycle Aspect Phase Actor Interface Definition Designer Assembly Assembly Architect Implementation Implementation Developer Lifecycle Packaging, Deployment Administrator Framework, run-time support Execution End User
  • 22. ACME Architectural Description Language  Components and Ports  Connectors and Roles  Systems and Attachments  Representations and Bindings  Properties, Constraints, Types and Styles
  • 23. Components and Ports  Components  Represent the computational elements and data stores of a system.  Ports  Are the points of interaction between a component and its environment. Component Port
  • 24. Connectors and Roles  Connectors  Represent interactions between components such as method calls or an SQL connection between a client and a database server.  The interface of a connector is defined as a set of roles Connector Role
  • 25. Systems and Attachments  The structure of a system is specified by a set of components, a set of connectors, and a set of attachments.  Attachment  Links a component port to a connector role. Attachement
  • 27. Java Bean Component Model  Key Features  Interface of a Component  Implementation of a Component  Components Assembly  Packaging and Deployment
  • 28. Key Features  Bean Box  "A Java Bean is a reusable software component that can be manipulated visually in a builder tool”.  The Java Bean was designed for the construction of graphical user interface (GUI).  Explicitly tailored to interact in two different contexts:  At composition time, within the builder tool.  At execution time, with the runtime environment.
  • 29. Interface of a Component  This model defines four types of port:  methods,  properties,  event sources and  event sinks called listeners. Read-only property Write-only property Property Method Event source Event sink (listener) Bounded property v Vetoable property ro wo 1 Unicast event source Ports
  • 30. Implementation of a Component  Most bean components are implemented by a simple Java object, the object being encapsulated in the component, but there are more sophisticated implementations possible.  Wrapping a legacy object.  Multiple-objects implementation.  Dependency on traditional entities.
  • 31. Implementations of Bean Components Object Method Method call Binding A simple implementation A more complex implementation
  • 32. Components Assembly  Assembly is one of the key features of Java Bean though no not specific solution is provided.  Different ways of assembling components are supplied. Component-based assembly Heterogeneous assembly
  • 33. Packaging and Deployment  Java Beans define a model for packaging components into archives.  Includes the definition of dependency relationships between the package items.  The customization code can be more complex than the component itself!  Each package item can be marked "Design Only", so that they can be removed in a final application.
  • 34. COM, DCOM, MTS and COM+  Interfaces and Assembly  Implementation  Framework  Lifecycle
  • 35. Interfaces and Assembly  A COM interface is seen as a C++ virtual class and takes the form of a list of data and function declarations without associated code.  All interfaces are descendants of the IUnknown interface. Component interface Interface Component implementation
  • 36. Implementation  A COM object is a piece of binary code, written in any programming language, as long as the compiler generates code following the binary interoperability convention.
  • 38. Lifecycle  COM, and COM+ are strictly execution time and binary component models.  No lifecycle issues are explicitly supported.
  • 39. CORBA Component Model (CCM)  Interface and Assembly  Framework : The Container Approach  Lifecycle
  • 40. Interface and Assembly  A component interface is made of ports divided into:  Facets  Receptacles  Event sources  Event sinks Component interface Attribute Facet Event source Event sink Ports Receptacle Segment Component implementation
  • 41. Framework : The Container Approach  Services can be made available to components without having to change that component’s source code. CCM run-time infrastrucure container
  • 42. Lifecycle  CCM is the best effort to date:  To gather the advances made in different fields,  To include a wide spectrum of lifecycle activities, while still claiming efficiency and heterogeneity capabilities,  However, the whole does not provide the feeling of being as “simple” as claimed.
  • 43. .NET Component Model  Interfaces and Assembly  Implementation  Framework  Lifecycle
  • 44. Interfaces and Assembly  programming language approach for component programming.  The program contains the information related to the relationships with other “components”, and that the compiler is responsible for generating the information needed at execution.  There is no explicit concept of connection but rather the traditional list of imported and exported resources.
  • 45. Implementation  A component (assembly) is made of modules, which are traditional executable files (DLL).  Modules cannot be assemblies, thus the .NET model is not hierarchical. Component interface Attribute Method Event source Ports Event source Component implementation Modules
  • 46. Framework  .NET relies on the traditional programming approach : the framework is seen as the language run- time support.  Transaction control relies on MTS.
  • 47. Lifecycle  Assemblies (and their modules) are local to an application, and thus different DLLs with same name can run simultaneously.  Each assembly has a versioning information about itself and about the assemblies it depends on.  Version control is delegated to the dynamic loader, which selects the “right” version.  Significantly improve the application packaging and deployment.  Early lifecycles phases do not seem to have received much attention.
  • 48. OSGI Component Model  Components  Interface of a Bundle Component  Assembly of Bundle Components  Implementation of a Bundle Component
  • 49. Components  A bundle use three kinds of ports to express its interactions with  Traditional technology  Other components  The run-time environment  Bundles may listen to events published by the framework such as the insertion of a new component in a system.
  • 50. Interface of a Bundle Component Package export Package import Service use Ports Service interface static dynamic Interface of a bundle component
  • 51. Assembly of Bundle Components  A system is an evolving set of bundle components.  A bundle component publishes a service interface  It can attach to it a set of properties describing its characteristics.  A component requires an interface for its use,  It will select one via a query expression based on these properties.  This flexibility also has its counterpart  There is no guarantee than the service will continue to be available
  • 52. Implementation of a Bundle Component  JAR archive containing:  Service components  Java packages  Other resources files Package Resource Service component Activator
  • 53. Thank you!Thank you! Mayukh Maitra (2K11/SE/038) Saransh Garg (2K11/SE/063) Siddharth Malhotra (2K11/SE/074) Isha Panesar (2K11/SE/034)