Core Java

Gang of Four – Proxy Design Pattern

Proxy is another Structural design pattern which works ‘on behalf of’ or ‘in place of’ another object in order to access the later.

When to use this pattern?

Proxy pattern is used when we need to create a wrapper to cover the main object’s complexity from the client.

What are the usage scenarios?

  • Virtual Proxy – Imagine a situation where there is multiple database call to extract huge size image. Since this is an expensive operation we can possibly use the proxy pattern which would create multiple proxies and point to the huge size memory consuming object for further processing. The real object gets created only when a client first requests/accesses the object and after that we can just refer to the proxy to reuse the object. This avoids duplication of the object and hence saving memory.
  • Remote Proxy – A remote proxy can be thought about the stub in the RPC call. The remote proxy provides a local representation of the object which is present in the different address location. Another example can be providing interface for remote resources such as web service or REST resources.
  • Protective Proxy – The protective proxy acts as an authorisation layer to verify if the actual user has access to appropriate content. An example can be thought about the proxy server which provides restrictive internet access in office. Only the websites and contents which are valid will be allowed and the remaining ones will be blocked.
  • Smart Proxy – A smart proxy provides additional layer of security by interposing specific actions when the object is accessed. An example can be to check if the real object is locked before it is accessed to ensure that no other object can change it.

 
Structure:

Proxy Design Pattern Structure

 
Participants:

  • Subject – This object defines the common interface for RealSubject and Proxy so that a Proxy can be used anywhere a RealSubject is expected.
  • Proxy – It maintains a reference to the RealSubject so that Proxy can access it. It also implements the same interface as the RealSubject so that Proxy can be used in place of RealSubject. Proxy also controls the access to the RealSubject and can create or delete this object.
  • RealSubject – This refers the main object which the proxy represents.

 
Example:

We will discuss two examples in this article. The first one will be virtual proxy pattern and the other one for protection proxy pattern.

Virtual Proxy Example:

As mentioned earlier virtual proxy is useful to save expensive memory resources. Let’s take a scenario where the real image contains a huge size data which clients needs to access. To save our resources and memory the implementation will be as below:

  • Create an interface which will be accessed by the client. All its methods will be implemented by the ProxyImage class and RealImage class.
  • RealImage runs on the different system and contains the image information is accessed from the database.
  • The ProxyImage which is running on a different system can represent the RealImage in the new system. Using the proxy we can avoid multiple loading of the image.

Class Diagram:

Virtual Proxy Example

Code Example:

Image.java

public interface Image {
	public void showImage();
}

RealImage.java

public class RealImage implements Image {

	private String fileName = null; 
	public RealImage(String strFileName){
		this.fileName = strFileName;
	}
	@Override
	public void showImage() {
		System.out.println('Show Image:' +fileName);

	}
}

ProxyImage.java

public class ProxyImage implements Image {
	private RealImage img= null;
	private String fileName = null;

	public ProxyImage(String strFileName) {
		this.fileName = strFileName;
	}
	/*
	 * (non-Javadoc)
	 * @see com.proxy.virtualproxy.Image#showImage()
	 */
	@Override
	public void showImage() {
		if(img == null){
			img = new RealImage(fileName);
		}
		img.showImage();
	}
}

Client.java

public class Client {
public static void main(String[] args) {
 final Image img1 = new ProxyImage('Image***1');
 final Image img2 = new ProxyImage('Image***2');
 img1.showImage();
 img2.showImage();
	}
}

 
Protection Proxy Example:

  • Let’s assume that company ABC starts a new policy that employees will now be prohibited internet access based on their roles. All external emails websites will be blocked. In such situation we create InternetAccess interface which consists of operation grantInternetAccess().
  • The RealInternetAccess class which allows of internet access for all. However to restrict this access we will use ProxyInternetAccess class which will check user’s role and grant access based on their roles.

Class Diagram:

Protection Proxy Example

Code Example:

InternetAccess:

public interface InternetAccess {
	public void grantInternetAccess();
}

RealInternetAccess.java

public class RealInternetAccess implements InternetAccess {
	private String employeeName = null;

	public RealInternetAccess(String empName) {
		this.employeeName = empName;
	}

	@Override
	public void grantInternetAccess() {
		System.out.println('Internet Access granted for employee: '
				+ employeeName);
	}
}

ProxyInternetAccess.java

public class RealInternetAccess implements InternetAccess {
	private String employeeName = null;

	public RealInternetAccess(String empName) {
		this.employeeName = empName;
	}

	@Override
	public void grantInternetAccess() {
		System.out.println('Internet Access granted for employee: '
				+ employeeName);
	}
}

Client.java

public static void main(String[] args) {
		InternetAccess ia = new ProxyInternetAccess('Idiotechie');
		ia.grantInternetAccess();
	}

 
Benefits:

  • One of the advantages of Proxy pattern as you have seen in the above example is about security.
  • This pattern avoids duplication of objects which might be huge size and memory intensive. This in turn increases the performance of the application.
  • The remote proxy also ensures about security by installing the local code proxy (stub) in the client machine and then accessing the server with help of the remote code.

Drawbacks/Consequences:

This pattern introduces another layer of abstraction which sometimes may be an issue if the RealSubject code is accessed by some of the clients directly and some of them might access the Proxy classes. This might cause disparate behaviour.

Interesting points:

  • There are few differences between the related patterns. Like Adapter pattern gives a different interface to its subject, while Proxy patterns provides the same interface from the original object but the decorator provides an enhanced interface. Decorator pattern adds additional behaviour at runtime.
  • Proxy used in Java API: java.rmi.*;

Please don’t forget to leave your comments. In case you like this article please share this articles for your friends through the social networking links.

Download Sample Code:


 

Reference: Gang of Four – Proxy Design Pattern from our JCG partner Mainak Goswami at the Idiotechie blog.

Mainak Goswami

Mainak Goswami is an experienced Technology Consultant specializing in JEE, Web Development and Open source technologies. He is currently based out of United Kingdom. He is a technology enthusiast trying to explore the latest in the world of technology. His current area of interest is Mobility, NoSQL and Cloud computing. In past time he loves blogging on his website Idiotechie.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Detzler
Detzler
11 years ago

Hi Maniac,
your Proxy-Example contains Class-Duplication and missing RealInternetAccess-Object-Propagation

Back to top button