CSC/ECE 517 Fall 2010/ch3 3h az

From Expertiza_Wiki
Jump to navigation Jump to search

Objective

After reading this Wiki Chapter,the reader should get an overview of

  1. What is a strategy pattern, when and how to use it.
  2. Implementation of strategy pattern in Dynamic and Static object oriented languages.

Introduction

A design pattern is a general reusable solution to a commonly occurring problem in software design3. Strategy Pattern in one such pattern which helps the user to use multiple algorithms interchangeably to reduce multiple conditional statements. This helps in making the code more maintainable.

The intent of Strategy Pattern is to define a family of algorithms,encapsulate each algorithm, and make them interchangeable. Strategy lets the algorithm vary independently from clients that use it. As an algorithm evolves to handle more and more situations, it can become very complex and difficult to maintain, Strategy pattern can be used to resolve this situation8.

Components in the implementation of a strategy pattern

The components in the implementation of a strategy pattern are1:

Strategy:

  • Declares an interface common to all supported algorithms. Context uses this interface to call the algorithm defined by a ConcreteStrategy.

ConcreteStrategy:

  • Implements the algorithm using the Strategy interface.

Context:

  • Is configured with a ConcreteStrategy object
  • Maintains a reference to a Strategy object
  • May define an interface that lets Strategy access its data.

When to use Strategy Pattern

  1. Many related classes differ only in their behavior.
  2. You need different variants of an algorithm. For example, defining different algorithms based on space-time tradeoffs.
  3. A class defines many behaviors, and these appear as multiple conditional statements in its operations.Instead, move related conditional branches into their own Strategy class.

Related Patterns

Bridge and State pattern are related patterns to the strategy pattern. Listed below are the key differences6 7-

Strategy Pattern Bridge Pattern State Pattern
The Strategy pattern deals with USING different implementations to implement

different algorithms. Strategy pattern is meant for behavior.

The Bridge pattern deals with HOW you deal with multiple implementations. The Bridge pattern is meant for structure. The State pattern deals with HOW you switch between different states/implementations
It defines a family of algorithms, encapsulate each one and make them interchangeable. It allows an object to alert its behavior when its internal state changes. The object will appear to change its class.The bridge pattern is useful when both the class as well as what it does vary often. The class itself can be thought of as the implementation and what the class can do as the abstraction. It allows an object to alert its behavior when its internal state changes. The object will appear to change its class.
One way to implement the Strategy pattern is to use the Bridge pattern approach or the State pattern approach, but the strategy pattern can also be

implemented a number of other ways.

You cannot use the strategy pattern to implement bridge pattern. You cannot use the strategy pattern to implement state pattern.

Illustration of Strategy pattern through real world example

To illustrate the strategy pattern, let us consider an example of a basic file transfer scenario, where we want to compress the file before transmission. Image files and text files are compressed by using different compression algorithms. Here we would like to demonstrate how this algorithm can be encapsulated in objects and how these objects can be selected without using the conditional statements.

The following UML class diagram captures the scenario we are illustrating:

ApplicationObject would be having an instance of IcompressStrategy. IcompressStrategy is the common interface and it defines generic algorithmic methods which would be extended by various classes which implement the algorithm. Having instance of the interface in the Applicationobject would make it possible for selecting different algorithms interchangeably.

Based on the File type, we can instantiate the right kind of Compressor. Here we can also have Factory method which helps in deciding the right subclass of IcompressStrategy to instantiate.

Implementation of Strategy pattern in Dynamic Object Oriented language

Below is the Ruby Code which makes use of the object-oriented principle to illustrate strategy pattern


class CompressContext
  def initialize(compression_strategy)
    self.class.send :include, compression_strategy
  end
end
 
module TextCompressor
  def compress
     puts 'Compression the text file'
  end
end
 
module ImageCompressor
  def compress
     puts 'Compression the image file'
  end
end
 
class Main
  def self.compressandSend(*args)
    file = args[0]
    
    #=> compressing text file
    compressType = CompressContext.new(TextCompressor)
    compressType.compress    
    
    #=> compressing image file
    compressType = CompressContext.new(ImageCompressor)
    compressType.compress    
 end
  
Main.compressandSend("filepath")
end

In the above implementation, we are defining two separate modules named TextCompressor and ImageCompressor. The appropriate module would be included in the CompressContext. By invoking the module method we would be selecting appropriate strategy.


Below is the Ruby Code which makes use of blocks to illustrate strategy pattern:

class CompressContext
  def initialize(&strategy)
    @strategy = strategy
  end
 
  def compress
    @strategy.call
  end
end

#=> Compress Text File
textCompresser = CompressContext.new { puts 'block which can be used for text compression' }
textCompresser.compress 

#=> Compress Image File
imageCompresser = CompressContext.new { puts 'block which can be used for Image compression' }
imageCompresser.compress 

In the above code, we are making use of closure feature of Ruby language to initialize appropriate strategy in initialize method and invoking this method later.

Implementation of Strategy pattern in Static Object Oriented language

Java Code to demonstrate strategy pattern implementation

// Main Method of Context Class..

 File file = getFile(); //get file path..
 Compresser  ci = CompresserFactory.getCompresser( file.type() );
 ci.performAction();

// implementations:
   interface  Compresser  {
        public void compressAction();
  } 

 class ImageCompressStrategy implements Compresser { 
         public void compressAction() {
             // Use Standard JPEG compress algorithm ....
         }
 }


class TextCompressStrategy implements Compresser { 
         public void compressAction () {
             // use Haufman text compress algorithm.
         }

}

Comparison of Dynamic and Static object-oriented language features in implementing Strategy pattern

The following are the key observations noted when we implemented Strategy Pattern in Dynamic and Static object-oriented language:

  • For implementing the strategy pattern in a static object-oriented language like Java, we need to define a common interface and the interface must be extended by other classes which implement different algorithm.In the case of dynamic object-oriented language like Ruby,as we have seen in the example section 3.2, modules can be extended to include strategy methods.There is no need to have a common interface.
  • In static object-oriented languages, to implement each algorithm we need to have different interface/strategy which would be extended by different ConcreteStrategy classes.This would result in increasing the code base.Whereas in dynamic object-oriented languages, each module can have different strategies and the context class can include the module and selectively call the appropriate method.
  • In both the Static object-oriented and Dynamic object-oriented languages,the design pattern framework can be implemented with equal clarity. But the Java language does not use language idioms, which makes the code easier to understand if one knows object-oriented languages. In Ruby, using blocks and other such language specific constructs might make understanding the code a little more tough.

Conclusion

The dynamic feature of Ruby helps make implementation of Strategy Pattern succinct with the use of blocks and other such language constructs.By using its block construct,one can eliminate the behavioral classes altogether. The static nature of Java requires it to create a interface and extend it to implement different behaviors. As a result the code is usually longer. The block language construct of Ruby can be used to implement different behaviors at run time, in addition to being included in modules at compile time.This flexibility is allowed by meta-programming.Also,Ruby provides better code re-usability through the use of unbounded polymorphism.

References

  1. http://www.dofactory.com/Patterns/PatternStrategy.aspx
  2. Head First Design Patterns
  3. Design Pattern Wiki
  4. CSC517 Class notes
  5. Strategy Pattern wiki
  6. Differences between Strategy and Bridge Patterns
  7. Differences between Strategy and State Patterns
  8. Strategy Pattern

See Also

  1. http://wiki.asp.net/page.aspx/289/strategy/