Things to know about various UML diagrams (Sequence, activity, State transition, Component and Deployment)

Things to know about various UML diagrams (Sequence, activity, State transition, Component and Deployment)

In this blog, we are going to focus on object oriented design and analysis for a solution. We will be covering basics of UML and various behaviour, interaction and structure UML Diagrams. We are going to cover Sequence diagram, Activity diagram, State transition diagrams, component diagrams and Deployment diagrams.

Some of the physical and conceptual elements.

  1. An object represents an actual person or thing in the real world.
  2. Class represents a set of objects with similar responsibilities.
  3. Interface represents a set of operations.
  4. Collaboration defines an interaction between elements.

Q.What is UML?

It is a standard language for visualising and documenting the artefacts of the software system. UML helps teams better communicate and validate the design of the software.

As there are a lot of stakeholders in the system, hence we require various diagrams during various stages of the software development. A general UML diagram classification would be based on the state of diagrams,

  1. Static: use case diagram and class diagram
  2. Dynamic: state diagram, activity diagram, sequence diagram, collaboration diagram.
  3. Implementation: component diagram, deployment diagram.

A general UML diagram classification would be based on the type of UML diagrams,

  1. Behavioural diagrams: A type of diagram that depicts behaviour of a system.
    1. Use case, activity, state machine, and interaction diagrams.
  2. Interaction diagrams: A subset of behaviour diagrams which emphasise object interactions.
    1. Collaboration, activity and sequence diagrams.
  3. Structure diagrams: A type of diagram that depicts the element of a specification that are irrespective of time.
    1. class, composite structure, component, and deployment.
Credits:https://programmerprodigycode.files.wordpress.com/2021/12/4189c-0wzkvkvh4fwjv5vfx.png

Various Relationships Present in UML:

1.Dependencies: a semantic relationship between two or more elements. It is denoted using a dashed line pointing from dependent class to independent class.

2. Generalisation: it denotes an inheritance of attributes and behaviour from the super class to subclass. It is denoted using an hollow triangle pointing from subclass to parent class.

  • it represents ” is a” relationships among classes and objects.
  • Represented by a line with an hollow arrow head pointing to the super class at the super class end

UML permits a class to inherit from multiple super classes although some programming language do not permit multiple inheritance.

3.Association: If two classes need to communicate with each other, there must be an association between them. It represents “has a” or “uses” relationships. Various other important information about associations are,

  1. We can indicate the multiplicity of an association by adding multiplicity adornments to the line denoting the association.
  2. We can also indicate the behaviour of an object in an association using role names.
  3. We can constrain the association relation ship by defining the navigability of the association.
  4. Association can also be objects themselves called link classes or an association classes.
  5. A class can also have self association.
  6. Indicated by a line, the end of the line contains cardinality of the relationship.
Credits: https://medium.com/@smagid_allThings/uml-class-diagrams-tutorial-step-by-step-520fd83b300b

We can model objects that contain other objects by way of special association called aggregation and compositions.

  1. An aggregations specifies a whole part relationships between an aggregate and a constitute part where the part can exist independently from the aggregate. Aggregations are denoted by a hollow diamond on the association.
    1. Indicated by a black diamond means a strong aggregation.
    2. It represents “contains”,”is part of”, “whole-part” relation.
  2. A composition indicates a strong ownership and coincident lifetime of parts by the whole. They are denoted by a filled diamond adornment on the association.
Credits: https://phpmusings.files.wordpress.com/2021/03/image-14-1.png?w=987

Various UML Diagrams

1.Sequence diagrams:

An interaction diagram that models a single scenario executing in the system. They described the flow of messages, events and actions between objects. Various components of a sequence diagram

  1. Participant: an object or entity that acts in the sequence diagram.
    1. syntax is <objectname>:<classname>
  2. Message: communication between participant objects.
    1. Indicated by a horizontal arrow
    2. Different message have different arrows heads. And a dashed arrow back indicates a return.
  3. Horizontal axis represents objects participating
  4. Vertical axis represents time spent

You can also specify the lifetime of objects,

  1. creation: arrow with ‘new’ written above it.
  2. deletion: an X at the bottom of object’s lifeline
    1. Java does not explicitly delete objects, they fall out of scope and are garbage collected.

Q.How do we indicate a method call?

Activation, a thick box over object’s life line; drawn when object’s method is on the stack.

  1. Either that object is running its code, or it is on the stack waiting for another object’s method to finish.
  2. We can nest them to indicate recursion.

We can also indicate selection and loops using frame, a box around part of a sequence diagram to indicate selection or loop

  1. if -> (opt) [condition]
  2. if/else -> (alt) [condition], separated by horizontal dashed line
  3. loop -> (loop) [conditions or items to loop over]

We can link a sequence diagram to another sequence diagram with either:

  1. an unfinished arrow and comment
  2. a “ref” frame that names the other diagram

Why should we draw sequence diagram rather than just coding out our solution?

Sequence diagram can be a bit above code, as they are language agnostic as well as non coders can do sequence diagrams and they give information flow based on time.

2.Activity Diagrams:

Activity diagrams consist of activities, states and transitions between activities and state. They describe

  1. How activities are coordinated to provide a service.
  2. The events needed to achieve some operation
  3. How the events in a single use case relate to one another
  4. How a collection of use cases co ordinate to create a workflow for an organisation

There can be different activity arragnement:

  1. Sequential: one activity is follwed by another
  2. Parallel : tow or moree sets of activites are performed concurrently, and order is irrelevant.
    1. We can jump between the parallel flows.

For complicated use cases, use activity diagrams rather than use case diagrams. Activity diagrams are like flowcharts, but flow charts are usually limited to sequential activities while activity diagrams can show parallel activities as well.

Activity diagrams components

  1. Activities and actions: An activity is the process being modelled, basically an activity is a unit of work that needs to be carried out
    1. An activity is like a state where the criterion for leaving the state is the completion of the activity
    2. Activities are the vertices of the diagram
  2. Transition and activity edges: A transition is the movement from one activity to another, the change from one state to another or the movement between a state and an activity in either direction.
    1. Transition take place when one activity is complete and the next can commence. Each edge may have a guard condition.
    2. A transition can be split into multiple paths and multiple paths combined into a single transition by using a synchronisation bar.
    3. A synchronisation may have many in arcs from activities and a number of out arcs to activities.
  3. Control Nodes:
    1. An initial node is the starting point for an activity
    2. There are two types of final nodes:
      1. activity final terminates the entire activity
      2. flow final terminates a path through an activity but not the entire activity.
    3. Forks: A fork node splits the current flow through an activity into multiple concurrent flows.
      1. A fork is where the paths split on an occurrence of the transition all the activities with arcs from the transitions are initiated.
    4. Joins: A join synchronises multiple flows of an activity back to a single flow of execution.
      1. The bar represents synchronisation of the completion of those activities with arcs into the transition.
  4. Decision point: A decision involves selecting one control flow transition out of many control flow transition based on a condition.
    1. Each branched edge contains a guard condition .
    2. Guard expressions (inside []) label the transitions coming out of a branch.
  5. Merge point: A merge point bring together alternate flows into a single output flow – not that it does not synchronise multiple concurrent flows.
  6. Swim lanes: Activity diagrams that show activities by class. Arrange activities into vertical zones exasperated by lines, where each zone represents the responsibilities of a particular class.

When an activity diagram represents a decomposition of a higher level activity there can be only start point .

3.State transition diagrams:

A state chart diagram / state diagram models the dynamic aspects of the system by showing the flow of control from state to state for a particular class. Every class may have its own state chart diagram,

  1. Only classes with interesting or complex internal behaviour will be modelde with state chard diagrams
  2. Statechart diagrams are not shared among classes.

Whereas an activity diagram models the flow of control from activity to activity a state chart diagram models the flow of control from event to event. State chart diagrams show how an object reacts to external events or condition during the course of its lifetime

They are useful in modelling real time systems or the part of a system that interacts with a human user. Components involved in state transition diagrams are,

1.State: A state is a condition or situation during the life of an object in which it satisfies some condition, performs some activity or waits for some event. A state may include

  1. name, entry /exit actions, internal transition, activities, sub states, deferred events.
  2. Initial state; starting state for the state machine or a substrate
  3. Final state: indicates the state machine’s execution has completed.
  4. real time state machine do not include final state.
  5. Neither initial or final state contains any of the parts found in traditional states.

Different types of states,

  1. Simple state: a state that contains no sub states
  2. Composite states; a state that contains sub states
  3. Sub state: a state that is nested inside another sub state.
    1. Sub states allow state diagrams to show different levels of abstraction
    2. Sub states may be sequential or concurrent
    3. Sub state may be nested to any level.
  4. Sequential sub states; a state diagram with a single state
    1. the containing state becomes an abstract state
    2. the use of sub states simplifies state diagrams by reducing the number of transition lines
    3. A nested sequential state diagram may have at most one initial state and one final state.
  5. History states; allows an object to remember which sub state was last active when the containing state was exited.
    1. Upon re- entry to the containing state, the sub state that was last active will be re-entered directly.
  6. Concurrent sub states: used when tow or more state diagrams are executing concurrently with a single object.
    1. Allows an object to be in multiple states simultaneously
    2. the concurrent state diagrams within a containing state must begin and end execution simultaneously.
    3. If one concurrent state diagram finishes first, it must wait for the other to complete before existing the conatining state.
Credits: https://www.rff.com/state_transition.png

2.Transition: a directed relationship between two states. A flow of control through a state chart diagram. It contains 5 parts:

  1. Source state: current state before transition fires.
  2. Event trigger: external stimulus that has the potential to cause a transition to fire
  3. Guard condition: a condition that must be satisfied before a transtion can fire.
  4. Action: an executable atomic computation
  5. Target state: new state after transition fires.

Advanced transitions,

  1. Entry action: upon each entry to a state, a specified action is automatically executed.
    1. syntax: entry/action
  2. Exit action: just prior to leaving a state, a specified action is automatically executed
    1. syntax: exit/action
  3. Internal transition: the handling of an event without leaving the current state.
    1. Used to avoid a states entry and exit actions.
    2. Syntax: event/ action
  4. Activities; ongoing work that an object performs while ina particular state. The work automatically terminates when the state is exited.
    1. Activities are ongoing operations; actions are instantaneous operations.
    2. Difference between regular and do activity events is that regular activities occur “instantaneously” and cannot be interrupted by regular events, while do activities can take finite time and be interrupted.
    3. Syntax: do/activity
  5. Deferred Event: An event whose occurrences is responded to at a later time.
    1. once an event has been deferred it remains deferred until a state is entered where that particular type of event is not listed as deferred. The state diagram then responds to the event as if it had just occurred.

State transition diagram represents the behaviour of a system by depicting its states and the events that cause the system to change state. Indicates what actions are taken as a consequence of a particular event.

State diagrams are good at describing the behaviour of an object across several use cases. But not good at describing behaviour that involves a number of objects collaborating.

4.Component Diagram:

Components diagrams are static Implementation diagrams, describing the different elements required for implementing a system. UML component diagrams describe software components and their dependencies to each other. A component is an autonomous unit within a system having,

Component and systems can be flexibly reused and replaced. They are often referred to as “wiring diagrams”, the wiring of components can be represented on diagrams by means of components and dependencies between them.

  1. one or more provided and required interfaces
  2. its internals are hidden and inaccessible
  3. being encapsulated
  4. its dependencies are designed such that it can be treated as independent as possible

Components can be labelled with a stereotype there are number of standard stereotypes. A component can have :

1.An interface, a collection of one or more operations. Implementation is normally provided by a class/component. A provided interface can be of two types,

  1. A provided interface, characteristic services that the component offers to it environment.
    1. Modelled using a ball, labelled with the name, attached by a solid line to the component.
  2. A required interface, characterise services that the component expects from its environment.
    1. Modelled using a socket, labelled with the name, attached by a solid line to the component.

For multiple components we could provide an abstraction notation for joining the interfaces.

2.Components can be connected by usage dependencies.

  1. A usage dependency is a relationship which one element requires another element for its full implementation.
  2. It is shown as dashed arrow with a <<use>> keyword. Pointing from the dependent component to independent component.

3.PORT, all interactions of a component with its environment are achieved through a port. The internals are fully isolated from the environment. This specifies a distinct interaction point in any context that satisfies the constraints specified by its ports.

  1. between that component and its environment
  2. between that component and its interval parts

Ports can support unidirectional communication or bi-directional communication. If there are multiple interfaces associated with a port, these interfaces may be listed iwth the interface icon seperated by commas

4.A component can have an external and internal view,

  1. An external view shows publicly visible properties and operations
    1. symbols sicking out of the component box
  2. An internal views of a component is where the realizing classes are nested with the component shape.

Realisation is a relationship between two set of model elements. Where one represent a specification and the other one represents an implementation of the latter.

There are two types of Assembly connectors:

1.Assembly connector: A connector between 2 components defines that one component provides the services that another component requires. They must only be defined from a required interface to provided interface.

The semantics for an assemble connector

  1. The signals that travel along an instance of connector origination in a required port and deliver to a provided port.
  2. The interfaces provided and required must be compatible
  3. The interface compatibility between provided and required ports are connected enabling an existing component in a system to replaced.
  4. Multiple connection directed from a single required interface to provide interfaces indicate that the instance will handle the signal will be determined at execution time.

2.Delegation connector links the external contract of a component to the internal realisation. It represents the forwarding of signals and must only be defined between used interfaces or ports of the same kind.

The semantics for an delegation connector

  1. Behaviour that is available on a component instance which is not realised by that component itself, but by another instance that has compatible capabilities.
  2. Used to model the hierarchical decomposition.
  3. Message and signal flow will occur between the connected ports.

5.Deployment diagrams

They show the physical relationship between hardware and software in a system. They shows the configuration of run time processing nodes and the components that live on them.

The purpose of deployment diagrams can be described as,

  1. Visualise the hardware topology of a system
  2. Describe the hardware components used to deploy software components
  3. Describe the runtime processing nodes.

Deployment diagram represent the deployment view of a system. It consists of nodes, they are noting but physical hardware used to deploy the application. Mostly used for system engineers.

An efficient deployment diagram is very important as it controls the following parameters,

  1. Performance
  2. Scalability
  3. Maintainability
  4. Portability

Deployment diagrams can be used,

  1. To model the hardware topology of a system
  2. To model the embedded system
  3. To model the hardware details for a client/server system
  4. To model the hardware details of a distributed application.
  5. For forward and reverse engineering.

A variety of shapes make up deployment diagrams.

  1. Artifact: a product developed by the software, symbolised by a rectangle with the name and the word “artifact” enclosed by double arrows.
  2. Association: a line that indicates a message or other type of communication between nodes
  3. Component: a rectangle with two tabs that indicate a software element
  4. Dependency: a dashed line that ends in an arrow, which indicates that one node or component id dependent on another.
  5. Interface: A circle that indicates a contractual relationship. Those objects that realise the interface must complete some sort of obligation
  6. A node: A hardware or software object, shown by a 3d box
  7. Node as container: a node that contains another node inside it
  8. Stereotype: A device contained within the node, present at the top of the node, with the name bracketed by double arrows.
  9. Package: A file shaped box that groups together all the device nodes to encapsulate the entire deployment.

There are two types of nodes in a deployment diagram,

  1. device nodes are computing resource with processing capabilities and the ability to execute programs.
  2. An execution environment node, is any computer system that resides with a device node. It could be an os, or another servlet container.

An artifact is the specification of a physical piece of information, defined by the user represents a concrete element in the physical world. You can use the artifiact to describe a framework which is used during the software development process or an executable file. Artifacts are deployed on the nodes.

An aritifact manifest one or more model elements. A <<manifestation>> is the concrete physical of one or more model elements.

For our academic purpose, we took slack application as a reference to draw our UML diagrams. You can find them at: https://github.com/kakabisht/Slack_ooad_diagrams

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s