SlideShare uma empresa Scribd logo
1 de 43
Baixar para ler offline
DESIGN PATTERNS
Teeeechhh taaaaalkkkk
A design pattern is a general reusable solution to a commonly
occurring problem within a given context in software design.A
design pattern is not a finished design that can be transformed
directly into source or machine code. It is a description or
template for how to solve a problem that can be used in many
different situations.
The Gang of Four (GoF)
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
• Template Method
•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
class Report!
def initialize!
@title = 'Monthly Report'!
@text = ['Things are going', 'really, really well.']!
end!
!
def output_report(format)!
if format == :plain!
puts("*** #{@title} ***")!
elsif format == :html!
puts('<html>')!
puts(' <head>')!
puts(" <title>#{@title}</title>")!
puts(' </head>')!
puts(' <body>')!
else!
raise "Unknown format: #{format}"!
end!
!
@text.each do |line|!
if format == :plain!
puts(line)!
else!
puts(" <p>#{line}</p>" )!
end!
end!
!
if format == :html!
puts(' </body>')!
puts('</html>')!
end!
end!
end!
class Report!
def initialize!
@title = 'Monthly Report'!
@text = ['Things are going', 'really, really well.']!
end!
!
def output_report!
output_start!
output_head!
output_body_start!
@text.each do |line|!
output_line(line)!
end!
output_body_end!
output_end!
end!
!
def output_start!
end!
!
def output_head!
raise 'Called abstract method: output_head'!
end!
!
def output_body_start!
end!
!
def output_line(line)!
raise 'Called abstract method: output_line'!
end!
!
def output_body_end!
end!
!
def output_end!
end!
end!
Template method
class HTMLReport < Report!
def output_start!
puts('<html>')!
end!
!
def output_head!
puts(' <head>')!
puts(" <title>#{@title}</title>")!
puts(' </head>')!
end!
!
def output_body_start!
puts('<body>')!
end!
!
def output_line(line)!
puts(" <p>#{line}</p>")!
end!
!
def output_body_end!
puts('</body>')!
end!
!
def output_end!
puts('</html>')!
end!
end!
•Template Method	

• Strategy
•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
class Report!
attr_reader :title, :text!
attr_accessor :formatter!
!
def initialize(formatter)!
@title = 'Monthly Report'!
@text = ['Things are going', 'really, really well.']!
@formatter = formatter!
end!
!
def output_report!
@formatter.output_report(self)!
end!
end!
!
Report.new(HTMLFormatter.new)
class HTMLFormatter!
def output_report(context)!
puts('<html>')!
puts(' <head>')!
# Output The rest of the report ...!
!
puts(" <title>#{context.title}</title>")!
puts(' </head>')!
puts(' <body>')!
context.text.each do |line|!
puts(" <p>#{line}</p>")!
end!
puts(' </body>')!
!
puts('</html>')!
end!
end!
•Template Method	

•Strategy	

• Observer
•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
class User!
def save!
save_to_database!
if new_record?!
notify_observers(:after_create)!
end!
notify_observers(:after_save)!
end!
end!
!
class UserEmailObserver!
def after_create(user)!
UserMailer.welcome_email(user)!
end!
end!
!
user = User.new!
user.add_observer(UserEmailObserver.new)!
•Template Method	

•Strategy	

•Observer	

• Composite
•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
class Task!
attr_reader :name!
!
def initialize(name)!
@name = name!
end!
!
def get_time_required!
0.0!
end!
end
class CompositeTask < Task !
def initialize(name)!
super(name)!
@sub_tasks = []!
end!
!
def add_sub_task(task)!
@sub_tasks << task!
end!
!
def remove_sub_task(task)!
@sub_tasks.delete(task)!
end!
!
def get_time_required!
time=0.0!
@sub_tasks.each {|task| time += task.get_time_required}!
time!
end!
end!
class MakeCakeTask < CompositeTask!
def initialize!
super('Make cake')!
add_sub_task( MakeBatterTask.new )!
add_sub_task( FillPanTask.new )!
add_sub_task( BakeTask.new )!
add_sub_task( FrostTask.new )!
add_sub_task( LickSpoonTask.new )!
end!
end!
!
MakeCakeTask.new.get_time_required
•Template Method	

•Strategy	

•Observer	

•Composite	

• Iterator
•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
External
array = ['red', 'green', 'blue']!
!
i = ArrayIterator.new(array)!
while i.has_next?!
puts "item: #{i.next_item}"!
end!
Hello Java ;-)
Internal
array = ['red', 'green', 'blue']!
array.each do |item|!
puts "item: #{item}"!
end!
External
array1 = [1, 2]!
array1 = [2, 3]!
!
sum = 0!
i1 = ArrayIterator.new(array1)!
i2 = ArrayIterator.new(array2)!
while i1.has_next? && i2.has_next?!
sum += i1.next_item * i2.next_item!
end!
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

• Command
•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
PrimerTemplate Method
class SlickButton!
def on_button_push!
raise "Abstract method on_button_push"!
end!
end!
!
class SaveButton < SlickButton!
def on_button_push!
document.save(filename)!
end!
end
So many subclasses :-(
class SlickButton!
attr_accessor :command!
!
def initialize(command)!
@command = command!
end!
!
def on_button_push!
@command.execute if @command!
end!
end!
!
class SaveCommand!
def execute!
# Save the current document...!
end!
end!
Command Pattern
class SlickButton!
attr_accessor :command!
!
def initialize(&block)!
@command = block!
end!
!
def on_button_push!
@command.call if @command!
end!
end!
!
save_button = SlickButton.new do!
document.save(filename)!
end!
Lambda
Composite, Command
PRIMER - INSTALLER
class Command!
attr_reader :description!
!
def initialize(description)!
@description = description!
end!
!
def execute!
end!
!
def unexecute!
end!
end!
!
class CreateFile < Command!
def initialize(path, contents)!
super "Create file: #{path}"!
@path = path!
@contents = contents!
end!
!
def execute!
f = File.open(@path, "w")!
f.write(@contents)!
f.close!
end!
!
def unexecute!
File.delete(@path)!
end!
end!
class CompositeCommand < Command!
def initialize!
@commands = []!
end!
!
def add_command(cmd)!
@commands << cmd!
end!
!
def execute!
@commands.each { |cmd| cmd.execute }!
end!
!
# ...!
!
def unexecute!
@commands.reverse.each { |cmd| cmd.unexecute }!
end!
!
# ...!
!
def description!
description = ''!
@commands.each { |cmd| description += cmd.description + "n" }!
return description!
end!
end!
class Installer < CompositeCommand!
def initialize!
add_command(CreateFile.new("file1.txt", "hello worldn"))!
add_command(CopyFile.new("file1.txt", "file2.txt"))!
add_command(DeleteFile.new("file1.txt"))!
end!
end!
!
installer = Installer.new!
installer.execute!
puts installer.description!
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

• Adapter
•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
class Database!
def initialize(adapter)!
@adapter = adapter!
end!
!
def create_table(table_name, fields)!
@adapter.create_table(table_name)!
fields.each_pair do |name, type|!
@adapter.create_column(table_name, name, type)!
end!
end!
end!
!
db = Database.new(MySQLAdapter.new(DB_URI))!
db.create_table(:users, email: :string)!
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

• Proxy
•Decorator	

•Singleton	

•Factory	

•Builder	

•Interpreter
class AccountProtectionProxy!
def initialize(real_account, owner_name)!
@subject = real_account!
@owner_name = owner_name!
end!
!
def withdraw(amount)!
check_access!
return @subject.withdraw(amount)!
end!
!
def check_access!
if Etc.getlogin != @owner_name !
raise "Illegal access: #{Etc.getlogin} cannot
access account."!
end!
end!
end!
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

• Decorator
•Singleton	

•Factory	

•Builder	

•Interpreter
class UserDecorator!
attr_reader :user!
delegate :first_name, :last_name,!
:position, :institution, to: :user!
!
def initialize(user)!
@user = user!
end!
!
def short_name!
"#{first_name[0]}. #{last_name}"!
end!
!
def description!
"#{short_name} is a #{position} at
#{institution}"!
end!
end!
<p>!
<b>Name:<b>!
{{short_name}}!
<br>!
{{description}}!
<p>!
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

• Singleton
•Factory	

•Builder	

•Interpreter
class SimpleLogger!
@@instance = SimpleLogger.new!
!
def self.instance!
return @@instance!
end!
!
def warn(s)!
puts s!
end!
end!
!
SimpleLogger.instance.warn("I don't know what I'm doing")!
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

• Factory
•Builder	

•Interpreter
factory :user do!
first_name 'John'!
last_name 'Doe'!
admin false!
!
factory :admin do!
admin true!
end!
end!
!
FactoryGirl.build(:user)!
FactoryGirl.build(:admin)!
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

• Builder
•Interpreter
user = UserBuilder.new('John', 'Doe')!
.age(30)!
.phone('1234567')!
.address('Fake address 1234')!
.build()!
Hello Java ;-)
•Template Method	

•Strategy	

•Observer	

•Composite	

•Iterator	

•Command	

•Adapter	

•Proxy	

•Decorator	

•Singleton	

•Factory	

•Builder	

• Interpreter
AST (Abstract SyntaxTree)	

querying stuff, building SQL, etc.
# Files that are bigger than 20KB and not writable,!
# or are mp3 files!
expr = Or.new(!
And.new(Bigger.new(20.kilobytes), Not.new(Writable.new)),!
FileName.new('*.mp3'))!
expr.evaluate # => [File, File, ...]!
•teamleadi določite enega ki naj v naslednji 1 uri
uporabi na projektu enega od patternov	

•checkmarks

Mais conteúdo relacionado

Semelhante a Techtalk design patterns

How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018
How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018
How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018
Mike Harris
 
JUG Münster 2014 - Code Recommenders & Codetrails - Wissenstransfer 2.0
JUG Münster 2014 - Code Recommenders & Codetrails - Wissenstransfer 2.0JUG Münster 2014 - Code Recommenders & Codetrails - Wissenstransfer 2.0
JUG Münster 2014 - Code Recommenders & Codetrails - Wissenstransfer 2.0
Marcel Bruch
 
Play framework: lessons learned
Play framework: lessons learnedPlay framework: lessons learned
Play framework: lessons learned
Peter Hilton
 

Semelhante a Techtalk design patterns (20)

Refactoring Workshop (Rails Pacific 2014)
Refactoring Workshop (Rails Pacific 2014)Refactoring Workshop (Rails Pacific 2014)
Refactoring Workshop (Rails Pacific 2014)
 
Test Driven Development - Workshop
Test Driven Development - WorkshopTest Driven Development - Workshop
Test Driven Development - Workshop
 
Introduction to Drupal (7) Theming
Introduction to Drupal (7) ThemingIntroduction to Drupal (7) Theming
Introduction to Drupal (7) Theming
 
How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018
How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018
How I Learned to Stop Worrying and Love Legacy Code - Ox:Agile 2018
 
TypeScript . the JavaScript developer best friend!
TypeScript . the JavaScript developer best friend!TypeScript . the JavaScript developer best friend!
TypeScript . the JavaScript developer best friend!
 
Ingo Muschenetz: Titanium Studio Deep Dive
Ingo Muschenetz: Titanium Studio Deep DiveIngo Muschenetz: Titanium Studio Deep Dive
Ingo Muschenetz: Titanium Studio Deep Dive
 
Coder sans peur du changement avec la meme pas mal hexagonal architecture
Coder sans peur du changement avec la meme pas mal hexagonal architectureCoder sans peur du changement avec la meme pas mal hexagonal architecture
Coder sans peur du changement avec la meme pas mal hexagonal architecture
 
Introduction to JavaScript design patterns
Introduction to JavaScript design patternsIntroduction to JavaScript design patterns
Introduction to JavaScript design patterns
 
Refactoring
RefactoringRefactoring
Refactoring
 
Milot Shala - C++ (OSCAL2014)
Milot Shala - C++ (OSCAL2014)Milot Shala - C++ (OSCAL2014)
Milot Shala - C++ (OSCAL2014)
 
Pruexx User's guide for beta testing
Pruexx User's guide for beta testingPruexx User's guide for beta testing
Pruexx User's guide for beta testing
 
Drupal module development
Drupal module developmentDrupal module development
Drupal module development
 
Real World Selenium Testing
Real World Selenium TestingReal World Selenium Testing
Real World Selenium Testing
 
RubyConf Portugal 2014 - Why ruby must go!
RubyConf Portugal 2014 - Why ruby must go!RubyConf Portugal 2014 - Why ruby must go!
RubyConf Portugal 2014 - Why ruby must go!
 
Oreilly
OreillyOreilly
Oreilly
 
Continuous improvements of developer efficiency with modern IDE
Continuous improvements of developer efficiency with modern IDEContinuous improvements of developer efficiency with modern IDE
Continuous improvements of developer efficiency with modern IDE
 
HTML5 Is the Future of Book Authorship
HTML5 Is the Future of Book AuthorshipHTML5 Is the Future of Book Authorship
HTML5 Is the Future of Book Authorship
 
JUG Münster 2014 - Code Recommenders & Codetrails - Wissenstransfer 2.0
JUG Münster 2014 - Code Recommenders & Codetrails - Wissenstransfer 2.0JUG Münster 2014 - Code Recommenders & Codetrails - Wissenstransfer 2.0
JUG Münster 2014 - Code Recommenders & Codetrails - Wissenstransfer 2.0
 
Writing clean code
Writing clean codeWriting clean code
Writing clean code
 
Play framework: lessons learned
Play framework: lessons learnedPlay framework: lessons learned
Play framework: lessons learned
 

Último

Último (20)

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 

Techtalk design patterns