Open In App

Adapter Design Pattern

Last Updated : 25 Oct, 2024
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Save
Share
Report
News Follow

One structural design pattern that enables the usage of an existing class’s interface as an additional interface is the adapter design pattern. To make two incompatible interfaces function together, it serves as a bridge. This pattern involves a single class, the adapter, responsible for joining functionalities of independent or incompatible interfaces.

adapter-design-pattern

For more insights on effectively implementing the Adapter pattern in your projects, the System Design Course offers in-depth coverage and practical exercises to help you master this pattern.

What is Adapter Design Pattern?

Two incompatible interfaces or systems can cooperate by using the adapter design pattern, a structural design pattern. Because of incompatible interfaces, it serves as a bridge between two classes that would not otherwise be able to communicate. The adapter approach is very helpful when attempting to incorporate third-party libraries or legacy code into a new system.

Real-World Example of Adapter Design Pattern

Let’s understand this concept using a simple example:

Suppose you have two buddies, one of them speaks French exclusively and the other English exclusively. The language barrier prevents them from communicating the way you want them to.

  • You act as an adapter, translating messages between them. Your role allows the English speaker to convey messages to you, and you convert those messages into French for the other person.
  • In this way, despite the language difference, your adaptation enables smooth communication between your friends.
  • This role you play is similar to the Adapter design pattern, bridging the gap between incompatible interfaces.

Components of Adapter Design Pattern

Below are the components of adapter design pattern:

  • Target Interface: Defines the interface expected by the client. It represents the set of operations that the client code can use. It’s the common interface that the client code interacts with.
  • Adaptee: The existing class or system with an incompatible interface that needs to be integrated into the new system. It’s the class or system that the client code cannot directly use due to interface mismatches.
  • Adapter: A class that implements the target interface and internally uses an instance of the adaptee to make it compatible with the target interface. It acts as a bridge, adapting the interface of the adaptee to match the target interface.
  • Client: The code that uses the target interface to interact with objects. It remains unaware of the specific implementation details of the adaptee and the adapter. It’s the code that benefits from the integration of the adaptee into the system through the adapter.

Different implementations of Adapter Design Pattern

The Adapter Design Pattern can be applied in various ways depending on the programming language and the specific context. Here are the primary implementations:

1. Class Adapter (Inheritance-based)

  • In this approach, the adapter class inherits from both the target interface (the one the client expects) and the adaptee (the existing class needing adaptation).
  • Programming languages that allow multiple inheritance, like C++, are more likely to use this technique.
  • However, in languages like Java and C#, which do not support multiple inheritance, this approach is less frequently used.

2. Object Adapter (Composition-based)

  • The object adapter employs composition instead of inheritance. In this implementation, the adapter holds an instance of the adaptee and implements the target interface.
  • This approach is more flexible as it allows a single adapter to work with multiple adaptees and does not require the complexities of inheritance.
  • The object adapter is widely used in languages like Java and C#.

3. Two-way Adapter

  • A two-way adapter can function as both a target and an adaptee, depending on which interface is being invoked.
  • This type of adapter is particularly useful when two systems need to work together and require mutual adaptation.

4. Interface Adapter (Default Adapter)

  • When only a few methods from an interface are necessary, an interface adapter can be employed.
  • This is especially useful in cases where the interface contains many methods, and the adapter provides default implementations for those that are not needed.
  • This approach is often seen in languages like Java, where abstract classes or default method implementations in interfaces simplify the implementation process.

How Adapter Design Pattern works?

Below is how adapter design pattern works:

  • Step 1: The client initiates a request by calling a method on the adapter via the target interface.
  • Step 2: The adapter maps or transforms the client’s request into a format that the adaptee can understand using the adaptee’s interface.
  • Step 3: The adaptee does the actual job based on the translated request from the adapter.
  • Step 4: The client receives the results of the call, remaining unaware of the adapter’s presence or the specific details of the adaptee.

Adapter Design Pattern Example

Let’s understand adapter design pattern through an example:

Problem Statement:

Let’s consider a scenario where we have an existing system that uses a LegacyPrinter class with a method named printDocument() which we want to adapt into a new system that expects a Printer interface with a method named print(). We’ll use the Adapter design pattern to make these two interfaces compatible.

Class-Diagram-of-Adapter-Design-Pattern_

1. Target Interface (Printer)

The interface that the client code expects.

C++
// Target Interface

class Printer {
public:
    virtual void print() = 0;
};

2. Adaptee (LegacyPrinter)

The existing class with an incompatible interface.

C++
// Adaptee

class LegacyPrinter {
public:
    void printDocument() {
        std::cout << "Legacy Printer is printing a document." << std::endl;
    }
};

3. Adapter (PrinterAdapter)

The class that adapts the LegacyPrinter to the Printer interface.

C++
// Adapter

class PrinterAdapter : public Printer {
private:
    LegacyPrinter legacyPrinter;

public:
    void print() override {
        legacyPrinter.printDocument();
    }
};

4. Client Code

The code that interacts with the Printer interface.

C++
// Client Code

void clientCode(Printer& printer) {
    printer.print();
}

Complete Code for the above example:

C++
// Adapter Design Pattern Example Code

#include <iostream>

// Target Interface
class Printer {
public:
    virtual void print() = 0;
};

// Adaptee
class LegacyPrinter {
public:
    void printDocument() {
        std::cout << "Legacy Printer is printing a document." << std::endl;
    }
};

// Adapter
class PrinterAdapter : public Printer {
private:
    LegacyPrinter legacyPrinter;

public:
    void print() override {
        legacyPrinter.printDocument();
    }
};

// Client Code
void clientCode(Printer& printer) {
    printer.print();
}

int main() {
    // Using the Adapter
    PrinterAdapter adapter;
    clientCode(adapter);

    return 0;
}

Output
Legacy Printer is printing a document.

Pros of Adapter Design Pattern

Below are the pros of Adapter Design Pattern:

  • By creating an adapter, you can reuse existing code without needing to modify it. This promotes code reuse and helps maintain a cleaner architecture.
  • By separating the issues of interface adaptation, the adapter pattern frees classes to concentrate on their main duties without having to deal with adaptation code that clogs their logic.
  • Because you can simply switch out multiple adapters to support different interfaces without altering the underlying system.
  • By separating your system from particular implementations, adapters make it simpler to swap out or modify parts without compromising the functionality of other parts.

Cons of Adapter Design Pattern

Below are the cons of Adapter Design Pattern:

  • Introducing adapters can add a layer of complexity to your system. Having multiple adapters can make the code harder to navigate and understand.
  • The additional layer of indirection may introduce slight performance overhead, especially if the adapter needs to perform complex transformations.
  • If not managed properly, the use of adapters can lead to maintenance challenges. Keeping track of multiple adapters for various interfaces can become cumbersome.
  • There’s a risk of overusing adapters for trivial changes, which can lead to unnecessary complexity. It’s critical to assess whether an adapter is actually required in a particular circumstance.
  • Only two interfaces can be translated by adapters; if you need to adjust to more than one interface, you might need a lot of different adapters, which could make the design even more difficult.

When to use Adapter Design Pattern?

Use adapter design pattern when:

  • We need to connect systems or components that weren’t built to work together. The adapter allows these incompatible interfaces to communicate, making integration smoother.
  • Many times, we have existing code or libraries that we want to use, but they don’t match our current system. The adapter helps us incorporate this old code without having to rewrite it.
  • As projects grow, new components are frequently added. An adapter allows you to integrate these new pieces without affecting the existing code, keeping the system flexible and adaptable.
  • By isolating the changes needed for compatibility in one place, the adapter makes it easier to maintain the code. This reduces the risk of bugs that might arise from changing multiple parts of the system.

When not to use Adapter Design Pattern?

Do not use adapter design pattern when:

  • If the system is straightforward and all components are compatible, an adapter may be unnecessary.
  • Adapters can introduce a slight overhead, which might be a concern in performance-sensitive environments.
  • When there are no issues with interface compatibility, using an adapter can be redundant.
  • For projects with a very short lifespan, the overhead of implementing an adapter might not be worth it.




Next Article

Similar Reads

Article Tags :
three90RightbarBannerImg