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

From Expertiza_Wiki
Jump to navigation Jump to search
Line 56: Line 56:
end
end
end
end
</pre><br>
</pre><br>The employees can get raises because we made the salary field accessible with attr_accessor.<br>
The employees can get raises because we made the salary field accessible with attr_accessor.<br>
<pre>
<pre>
jim = Employee.new("Jim Flintstone", "Crane Operator", 5000.0)
jim = Employee.new("Jim Flintstone", "Crane Operator", 5000.0)
# Give Jim a raise
# Give Jim a raise
jim.salary=8000.0
jim.salary=8000.0
</pre><br>
</pre><br>Now, adding some code to keep the payroll department informed of pay changes:<br>
Now, adding some code to keep the payroll department informed of pay changes:<br>
<pre>
<pre>
class Payroll
class Payroll

Revision as of 02:24, 9 October 2009

Design patterns

The idea of design pattern was first introduced by the architect Christopher Alexander in the field of architecture. Later it has been adapted for various other disciplines, including computer science.

A design pattern is a formal way of documenting a solution to a design problem in a particular field of expertise. In software engineering, a design pattern is a solution to a general and commonly occurring problem in software design. A design pattern is not a finished design that can be transformed directly into code. But it is a description or template for how to solve a problem that can be used in many different situations.

e.g.

We can find some common steps or building blocks in any process. Suppose we have to build a home. Then high level of disign 
will be based on how many rooms do we wish to have on each floor. once we are done with this then its just the matter of 
duplicating it for the other floors. This is very common and basic design for construction.

Design patterns in ruby

Almost every design patterns of ruby are borrowed from the GOF book. Following is the list of common pattern used in ruby.

  1. Template
  2. Strategy
  3. Observer
  4. Composite
  5. Iterator
  6. Commands
  7. Adapter
  8. Proxy
  9. Decorator
  10. Singleton
  11. Factory
  12. Builder
  13. Interpreter

Factory



Observer


Introduction:

The observer pattern (sometimes known as publish/subscribe) is a software design pattern in which an object, called the 'subject', maintains a list of its dependents, called 'observers', and notifies them automatically of any state changes, usually by calling one of their methods. It is mainly used to implement distributed event handling systems.

Example Scenario where Observer Pattern is Used:
Consider a personnel system where an employee's salary changes and the payroll department needs to know when these changes take place. Here, How can one make the Employee object spread the news about salary changes without tangling it up with the payroll system? In such a situation, Observer pattern is used. Initially, an object is created that is interested in the state of a person's(any employee's) finances. This object then needs to simply register with that person's 'Employee Object' ahead of time. Once registered, that object would receive timely updates about the ups and downs of the person's paycheck.

Here is a basic version of an Employee object that tracks an employee. It does not have any code that tells about any salary updates.

class Employee
attr_reader :name
attr_accessor :title, :salary
def initialize( name, title, salary )
@name = name
@title = title
@salary = salary
end
end


The employees can get raises because we made the salary field accessible with attr_accessor.

jim = Employee.new("Jim Flintstone", "Crane Operator", 5000.0)
# Give Jim a raise
jim.salary=8000.0


Now, adding some code to keep the payroll department informed of pay changes:

class Payroll
def update( changed_employee )
puts("Cut a new check for #{changed_employee.name}!")
puts("His salary is now #{changed_employee.salary}!")
end
end


class Employee
attr_reader :name, :title
attr_reader :salary
def initialize( name, title, salary,payroll)
@name = name
@title = title
@salary = salary
@payroll = payroll
end
def salary=(new_salary)
@salary = new_salary
@payroll.update(self)
end
end


Strategy



Conclusion


See Also

[1]

[2]


[3]

[4]

[5]

[6]



References

[1]

[2]

[3]