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?
feedback
|
|
Proxy, Decorator, Adapter, and Bridge are all variations on "wrapping" a class. But their uses are different.
| |||||||||||||||||
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! | |||||||||
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 | |||
|
feedback
|
|
As Bill's answer says, their use cases are different. So are their structures.
| |||
|
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). | |||||
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. | ||||
|
feedback
|