I was looking at the Proxy Pattern, and to me it seems an awful lot like the Decorator, Adaptor, and Bridge Patterns. Am I misunderstanding something? What's the difference? Why would I use the proxy pattern veses the others? How have you used them in the past in real world projects?

link|improve this question

62% accept rate
1  
There are often patterns that look very similar, but differ in their intent (the strategy and state patterns come to mind). I think this is often due to the fact that design patterns are based on common solid design principles. – Jason Down Sep 23 '09 at 4:48
Well, these four patterns have the exact same implementation details. State verses Strategy can at least be summed up as state-full verses stateless (for the most part). Often, the Strategy is just method injection, where the state pattern uses an interface to do more then abstract away a method call. The strategy, also, at the end of the day, is a hack to allow functional programming in the OO world. – Charles Graham Sep 25 '09 at 13:58
feedback

6 Answers

up vote 107 down vote accepted

Proxy, Decorator, Adapter, and Bridge are all variations on "wrapping" a class. But their uses are different.

  • Proxy could be used when you want to lazy-instantiate an object, or hide the fact that you're calling a remote service, or control access to the object.

  • Decorator is also called "Smart Proxy." This is used when you want to add functionality to an object, but not by extending that object's type. This allows you to do so at runtime.

  • Adapter is used when you have an abstract interface, and you want to map that interface to another object which has similar functional role, but a different interface.

  • Bridge is very similar to Adapter, but we call it Bridge when you define both the abstract interface and the underlying implementation. I.e. you're not adapting to some legacy or third-party code, you're the designer of all the code but you need to be able to swap out different implementations.

  • Facade is a higher-level (read: simpler) interface to a subsystem of one or more classes. Think of Facade as a sort of container for other objects, as opposed to simply a wrapper.

link|improve this answer
1  
Good answer. May be worth adding some examples of where you see it in the wild? e.g Proxy classes in Web Services. +1 from me. – Rob Cooper Dec 8 '08 at 19:06
3  
That was such a good answer, that I had to expand the question just to fit it. Thanks! – Charles Graham Dec 8 '08 at 19:15
@Rob: thanks, but I'd rather keep this answer short and sweet. I encourage you to write another answer with examples in the wild! – Bill Karwin Dec 8 '08 at 19:30
1  
Excellent answer Sir. +1 to you :) – Perpetualcoder Dec 8 '08 at 20:15
Great answer! What with Facade? – Lars Corneliussen Mar 20 '09 at 14:34
show 3 more comments
feedback

There's a great deal of overlap in many of the GoF patterns. They're all build on the power of polymorphism and sometimes only really differ in intent. (strategy vs state)

My understanding of patterns increased 100 fold after reading Head First Design Patterns.

I highly recommend it!

link|improve this answer
2  
+1. I heartily agree with the book recommendation. – Abizern Dec 21 '08 at 20:29
2  
+1 for Head First Design Patterns. I'm reading it currently. – Attilah Sep 26 '10 at 14:53
feedback

They are quite similar, and I the lines between them are quite gray. I would suggest you read the entries in the c2 wiki about both of them;

http://c2.com/cgi/wiki?ProxyPattern http://c2.com/cgi/wiki?DecoratorPattern

The entries and discussions there are quite extensive, and they also link to other relevant articles. By the way, the c2 wiki is excellent when wondering about the neuances between different patterns.

To sum the C2 entries up, I would say a Decorator adds/changes behavior, but a proxy has more to do with access control (lazy instantiation, remote access, security etc). But like I said, the lines between them are gray, and I see references to proxies that could easily be viewed as decorators and vice versa.

Hope this helps.

Regards, Bent André Solheim

link|improve this answer
feedback

As Bill's answer says, their use cases are different.

So are their structures.

  • Proxy and Decorator both have the same interface as their wrapped types, but the proxy creates an instance under the hood, whereas the decorator takes an instance in the constructor.

  • Adapter and Facade both have a different interface than what they wrap. But the adapter derives from an existing interface, whereas the facade creates a new interface.

  • Bridge and Adapter both point at an existing type. But the bridge will point at an abstract type, and the adapter might point to a concrete type. The bridge will allow you to pair the implementation at runtime, whereas the adapter usually won't.

link|improve this answer
feedback

I use it quite often when consuming web services. The Proxy Pattern should probably be renamed to something more pragmatic, like 'Wrapper Pattern". I also have a library that is a Proxy to MS Excel. It makes it very easy to automate Excel, without having to worry about background details such as what version is installed (if any).

link|improve this answer
Wouldn't that just be the Adaptor Pattern? – Charles Graham Dec 8 '08 at 18:39
A web service is consumed by a Proxy, whereas the Adapter Pattern is used more for the conversion or translation of data from one form to another. – hmcclungiii Dec 8 '08 at 19:13
feedback

Speaking detail implementation, I find a difference between Proxy and Decorator, Adapter, Facade ... In common implementation of these patterns there's a target object wrapped by a enclosing object. Client uses enclosing object instead of target object. And the target object actually play an important part inside some of methods of enclosing object.

However, in case of Proxy, enclosing object can play some methods by itself, it just initialize target object when client calls some methods that it needs target object take part in. This is lazy initialization. In case of other patterns, enclosing object is virtually based on target object. So target object is always initialized along with enclosing object in constructors/setters.

Another thing, a proxy does exactly what a target does whereas other patterns add more functionality to target.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.