paint-brush
Design Patterns: WTF is a Shim?by@nishray
2,382 reads
2,382 reads

Design Patterns: WTF is a Shim?

by NishrayFebruary 4th, 2021
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

The term "shim" appeared to being placed offhand, with the context not being setup properly to indicate what it is exactly that the "Shim" represented. Shim is likely still an acceptable term, when the component is acting as a combination of adapter and a proxy. If the component does fit in with a more specific role of being a proxy, adapter or facade, then using that term should be encouraged in design meetings to avoid confusion. The term 'shim' is used to describe an adapter, facade or proxy in Structural patterns.
featured image - Design Patterns: WTF is a Shim?
Nishray HackerNoon profile picture

During design meetings at my workplace and even during other conversations with friends, the term "shim" appeared to being placed offhand, with the context not being setup properly to indicate what it is exactly that the "shim" represented.

Clearly I wasn't the first person to come across this concern, as evidenced by the person who asked this question on stackoverflow:

https://stackoverflow.com/questions/2116142/what-is-a-shim

The popular answer to that linked question, fits great for all the uses of shim that I came across in my conversations. So being the novice that I am I decided to look further into the gang of four to see how shim might describe an adapter, facade, or proxy in Structural patterns.

Adapter: When shim is describing a code construct that facilitates interactions between two classes with incompatible interfaces. This term implies that certain translations need to be made in the adapter.

Proxy: It's mostly a passthrough to another component where restrictions could be placed on how the wrapped component is accessed.

Facade: Typically used as a way for the client to access all functionality exposed by a complex system through one component rather than multiple different components.

Bottomline

Shim is likely still an acceptable term, when the component is acting as a combination of adapter and a proxy, but if the component does fit in with a more specific role of being a proxy, adapter or facade, then using that term should be encouraged in design meetings to avoid confusion.

P.S.: https://en.wikipedia.org/wiki/Design_Patterns, is a wonderful resource for learning more about these terms.