Skip to main content

Structural Design Patterns - Adapter

Structural Design Patterns in Swift

Adapter: To unify the interfaces of incompatible classes that already exists

Bridge: It decouples abstraction from its implementation, so that we can change them independently. It reduces the impact of changes

Decorator: Used to add new responsibilities to objects without modifying the underlying classes

Composite pattern: Describes how to combine objects so that each of them can be either simple or composite object.

Facade: Allows us to expose functionality of entire sub system via single class

Fly weight pattern: Used to effectively sharing no. of instances of a class by reducing number of object instances at runtime.

Proxy pattern: Proxy objects acts as a surrogate for more complex objects that me expensive for create or use.




Adapter: This pattern maps the existing interface to other interface.


Eg., Two classes A and B are implementing a protocol P, so we use polymorphism to call the methods of A and B classes. Now when a new class C does not implement the protocol P and we need to use the class C along with A and B, we couldn’t do it as the interface is different. In order to add the new method/interface to C (similar to A and B) we need Adapter Pattern

Adapter Pattern can be used in two ways 
  1. Creating new adapter class:
    Creating class D which adopts method protocol P and insod

    protocol P {
         func shareMessage(msg: String)
    }
    class D: P {
         func shareMessage(msg: String) {
               someObjectWithDifferentInterface.differentMethod(message: msg)
         }  
  2. Extending existing class to add new functionality:

    extension C: P {
         func shareMessage(msg: String) {
               someObjectWithDifferentInterface.differentMethod(message: msg)
         }  
    }

Adapter - The problem when adapter is not used



Adapter - The solution with object adapter




Adapter - The solution with adapter via extension  




Comments

Popular posts from this blog

User defined settings iOS

With User defined settings  we can set values specific to build configuration. Creating User Defined Settings Select Target > Build Settings Click Plus icon, present beside the search bar Using User Defined Settings when we need to access the values set in User defined build settings we can do it in two ways  From info.plist $(NEW_SETTING) From Code let value = Bundle.main.infoDictionary?["NEW_SETTING"] as! String

Agile Overview

Agile Manifesto: Many processes like Scrum, Kanban, Lean, Extreme Programming(XP), Crystal Clear, Agile Unified Process, Dynamic Systems Development Method, Feature Driven Development, Agile Modeling  what they were doing is same so they came up with Agile Manifesto which is set of 4 Values and 12 principals. The 4 Values are: Individuals and Interactions Over Process and tools: As process and tools avoid direct interactions the agile manifesto values Interactions. Working Software Over  Documentation: Giving value to Woking software than the document which describes the software. Customer collaboration Over Contract: We should not stick to contract, as technology changes. Responding to change over plan We should unfollow plans and de prioritise tasks which take longer time  The 12 Principles of Agile Manifesto: Underlying Agile Concepts: Short Feedback Loops Just in Time Requirements and Design Software does not need blue prints like before b...

Cloning repositories using SSH

Using the Secure Shell (SSH) protocol, you can connect and authenticate to remote servers and services. With SSH keys, you can connect to Version Control Account (BitBucket/GitHub..) accounts without supplying your username or password at each visit.  We need to generate SSH key pair, Add the private key to ssh agent and public key to Version control account. 1. Generating SSH key pair Open  Terminal  and paste the text below, substituting in your email address or some unique key like employee Id. ssh-keygen -t rsa -b 4096 -C " your_email@example.com " This creates a new ssh key, using the provided email as a label. This generates public/private rsa key pair. When you're prompted to "Enter a file in which to save the key," press Enter. This accepts the default file location. 2.   Adding your SSH key to the ssh-agent Start the ssh-agent in the background. eval "$(ssh-agent -s)" If you're using macOS Sierra 10.12.2 or l...