CSC/ECE 517 Fall 2009/wiki2 11 zv: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 13: Line 13:


Example of Factory Code
Example of Factory Code
{{{
 
class GearFactory
class GearFactory
   def new()  
   def new()  
Line 32: Line 32:
   end
   end
end
end
}}}
 
The above code does not have to distinguish between a factory and an ordinary class. We can call the class using the followijng code.
The above code does not have to distinguish between a factory and an ordinary class. We can call the class using the followijng code.
client.doSomething(GearFactory.new)          # Use the factory
client.doSomething(GearFactory.new)          # Use the factory
client.doSomething(Cog)                      #Use the Cog class
client.doSomething(Cog)                      #Use the Cog class
client.doSomething(Sprocket)                #Use the Sprocket class
client.doSomething(Sprocket)                #Use the Sprocket class

Revision as of 05:09, 7 October 2009

Overview

Before starting off with design patterns for Ruby we need to define what a design pattern is, Design patterns can be described as "a general reusable solution to a commonly occurring problem in software design." [1] The idea of design patterns is to not to reinvent the wheel but to solve the current problems by using solutions that have worked in the past. A design pattern names, abstracts, and identifies the key aspects of a common design structure that make it useful for creating a reusable object-oriented design. It helps to identify the classes and instances and the way they collaborate with each other to form a solution to a problem. Design patterns c an be classified into 3 parts Creational, Structural, Behavioral (See if we can give links for these.)

Factory

Factories The factory design pattern is an object oriented design pattern. It is a creational design pattern and deals with the issues faced in creating objects. The main goal of this implementation is to isolate teh code that creates the class form the concete implementation of that class. Ruby example for the same is given below.


Example of Factory Code

class GearFactory

 def new() 
   if ( ... some condition )
      return Sprocket.new()
   else
      return Cog().new()
   end
 end

end

Our client class now becomes: class GearUser

 def doSomething(factory )
   ...
   my_gear = factory.new()
   ...
 end

end

The above code does not have to distinguish between a factory and an ordinary class. We can call the class using the followijng code. client.doSomething(GearFactory.new) # Use the factory client.doSomething(Cog) #Use the Cog class client.doSomething(Sprocket) #Use the Sprocket class