Real World Example of the Strategy Pattern - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T18:46:30Zhttp://stackoverflow.com/feeds/question/370258http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/370258/real-world-example-of-the-strategy-pattern3Real World Example of the Strategy PatternTired2008-12-16T01:29:29Z2009-01-29T02:06:50Z
<p>Hi All,</p>
<p>I've been reading about the OCP principal and how to use the strategy pattern to accomplish this.</p>
<p>I was going to try and explain this to a couple of people, but the only example I can think of is using different validation classes based on what status an "order" is.</p>
<p>I've read a couple of articles online, but these don't usually describe a real like reason to use the strategy, like generating reports/bills/validation etc...</p>
<p>Are there any real world examples where you think a strategy pattern is common?</p>
http://stackoverflow.com/questions/370258/real-world-example-of-the-strategy-pattern/370270#3702705Answer by Oscar Reyes for Real World Example of the Strategy PatternOscar Reyes2008-12-16T01:40:38Z2009-01-29T01:51:08Z<p>What about this: </p>
<p>You have to encrypt a file. </p>
<p>For small files, you can use "in memory" strategy, where the complete file is read and kept in memory ( let's say for files < 1 gb ) </p>
<p>For large files, you can use another strategy, where parts of the file are read in memory and partial encrypted results are stored in tmp files.</p>
<p>These may be two different strategies for the same task.</p>
<p>The client code would look the same:</p>
<pre><code> File file = getFile();
Cipher c = Cipher.getCipher( file.size() );
c.performAction();
// implementations:
interface Cipher {
public void performAction();
}
class InMemoryCipherStrategy implements Cipher {
public void performAction() {
// load in byte[] ....
}
}
class SwaptToDiskCipher implements Cipher {
public void performAction() {
// swapt partial results to file.
}
}
</code></pre>
<p>The </p>
<pre><code> Cipher c = Cipher.getCipher( file.size() );
</code></pre>
<p>Would return the correct strategy instance for the cipher.</p>
<p>I hope this helps.</p>
<p><em>( I don't even know if Cipher is the right word :P )</em></p>
http://stackoverflow.com/questions/370258/real-world-example-of-the-strategy-pattern/370327#3703270Answer by tvanfosson for Real World Example of the Strategy Patterntvanfosson2008-12-16T02:36:25Z2008-12-16T02:36:25Z<p>I have an application that synchronizes it's user base each day against our enterprise directory. User's are eligible or not eligible based on their status in the University. Each day the provisioning program goes through and makes sure that those who are supposed to be eligible are provisioned in the application and those who are not are de-provisioned (actually according to a graceful degradation algorithm, but that's beside the point). On Saturday I do a more thorough update that synchronizes some properties of each user as well as making sure that they have the proper eligibility. At the end of the month I do some bill back processing based on usage for that month.</p>
<p>I use a composable strategy pattern to do this synchronization. The main program basically chooses a master strategy depending on the day of the week (sync changes only/sync all) and the time of semester relative to the academic calendar. If the billing cycle is ending, then it also composes it with a billing strategy. It then runs the chosen strategy via a standard interface.</p>
<p>I don't know how common this is, but I felt like it was a perfect fit for the strategy pattern.</p>
http://stackoverflow.com/questions/370258/real-world-example-of-the-strategy-pattern/370419#3704190Answer by Josh for Real World Example of the Strategy PatternJosh2008-12-16T03:57:39Z2008-12-16T03:57:39Z<p>I used the strategy approach in a fairly complex engine in an application that is a good example. Essentially the engine's role was to go and first find a list of people who had a widget, it's second role was to figure out which were the 10 best people with a widget based on an unknown number of parameters (things like price distance previous business together, ammount on stock, shipping options etc etc etc...)</p>
<p>Essentially what we did was we broke the problem into two strategies the first being data retrieval, as we knew that we had multiple sources of our widgets and we needed to be able to get the data and transform it to a common structure.</p>
<p>We then also realized that we had multiple algorithims some were based on weighting the parameters, others were very weird and propitery and I couldn't do them justice without pulling out visios and charts and well you get the picture, we had lots of algorithims for selecting the best people. </p>
<p>Our service itself was very thing it essentially defined the inputs, outputs and did some normalization of the data, it also used a provider pattern to plug-in the application specific data providers and algorithim providers which used the strategy. This was a fairly effective system.</p>
<p>We had some debates if we were using a strategy or a template pattern which we never resolved.</p>
http://stackoverflow.com/questions/370258/real-world-example-of-the-strategy-pattern/370502#3705020Answer by Alan for Real World Example of the Strategy PatternAlan2008-12-16T05:06:26Z2008-12-16T05:06:26Z<p>A few weeks ago, I added a common Java interface which was implemented by one of our domain objects. This domain object was loaded from the database, and the database representation was a star schema with about 10+ branches. One of the consequences of having such a heavy weight domain object is that we've had to make other domain objects that represented the same schema, albeit less heavyweight. So I made the other lightweight objects implement the same interface. Put otherwise we had:</p>
<pre><code>public interface CollectibleElephant {
long getId();
String getName();
long getTagId();
}
public class Elephant implements CollectibleElephant { ... }
public class BabyElephant implements CollectibleElephant { ... }
</code></pre>
<p>Originally, I wanted to use <code>CollectibleElephant</code> to sort <code>Elephant</code>s. Pretty quickly, my teammates glommed onto <code>CollectibleElephant</code> to run security checks, filter them as they get sent to the GUI, etc.</p>
http://stackoverflow.com/questions/370258/real-world-example-of-the-strategy-pattern/471233#4712331Answer by grootjans for Real World Example of the Strategy Patterngrootjans2009-01-22T23:07:35Z2009-01-22T23:07:35Z<p>Are you sure that the status of an "order" is not a State pattern? I have a hunch that an order will not be handled differently depending on its status.</p>
<p>Take for example the method <em>Ship</em> on the Order: </p>
<pre><code>order.Ship();
</code></pre>
<ul>
<li>If the shipping method varies in
function of its status, then you've
got a strategy pattern.</li>
<li>If however
the <em>Ship()</em> method succeeds only
when the order has been paid, and
the order has not been shipped yet,
you've got a state pattern.</li>
</ul>
<p>The best example of the state pattern (and other patterns) I found was in the book "<a href="http://rads.stackoverflow.com/amzn/click/0596007124" rel="nofollow">Head First Design Patterns</a>", which is amazing.
A close second will be <a href="http://blog.cumps.be/design-patterns-strategy-pattern/" rel="nofollow">David Cumps' blogging series of patterns</a>.</p>
http://stackoverflow.com/questions/370258/real-world-example-of-the-strategy-pattern/490255#4902550Answer by coxymla for Real World Example of the Strategy Patterncoxymla2009-01-29T02:06:50Z2009-01-29T02:06:50Z<p>We had to create a third-party provisioning interface for an enterprise platform with a very complicated database. The submission of data to be provisioned was as a list of our data types which were put into a priority queue in our application so they could be written to the database in the correct order due to dependencies.</p>
<p>The process to write that data was then quite simple, keep popping off the top of the priority queue and then choose a strategy based on the type of the object that you extract.</p>