SlideShare une entreprise Scribd logo
1  sur  22
Télécharger pour lire hors ligne
A Dependency Injection Primer

     In which @rowan_m discovers a 
        gateway drug to quality.
Chapter 1  The Green Field

   In which our heroine begins a new 
     endeavour for a local publican
Developers shouldn't couple

 How one might start to write their application code:
$bar = new DrinkMapper();
$drink = $bar->getCocktail('bloody mary');
Naïve use of patterns

Supporting code as written by our eager, young protagonist:
 
// our data mapper
class DrinkMapper {
    public function getCocktail($name) {
        $bar = new PitcherAndPiano();
        $row = $bar->getCocktail($name);
        return new Cocktail($row);
    }
}
 
// our domain object
class Cocktail extends ArrayObject {}
Naïve use of patterns (continued)

Supporting code as written by our eager, young protagonist:
 
// our storage
class PitcherAndPiano {
    public function getCocktail($name) {
        $db = new PDO('mysql:host=localhost;'.
            'dbname=pnp', 'puser', 'ppass');
        $row = $db
            ->query("SELECT * FROM cocktails'.
                ' WHERE name = '$name'")
            ->fetch();
        return $row;
    }
}
Chapter 2  Foreboding Clouds

    In which the gruff senior developer 
      mutters darkly about unit tests 
Constructors for a house of cards

  Our heroine attempts to test 
from the deepest class upwards.
                
               
 Emboldened by her success 
with PHPUnit_Extensions_
 Database_TestCase on the 
PitcherAndPiano class, she 
        moves on...
Foundations begin to crumble

    This method  cannot  be unit tested due to these
          concrete dependencies within the code.
 
// our data mapper
class DrinkMapper {
    public function getCocktail($name) {
        $bar = new PitcherAndPiano();
        $row = $bar->getCocktail($name);
        return   new Cocktail($row);
    }
}
Filling in the cracks

    After some research, our intrepid heroine tries Setter Injection:
class DrinkMapper {
    private $_bar;

        public function setBar(
                PitcherAndPiano $bar) {
            $this->_bar = $bar;
        }

        public function getCocktail($name) {
            $row = $this->_bar->getCocktail($name);
            return new Cocktail($row);
        }
}
Setter Injection Abuse

              Still the saturnine senior shows scorn
                  for the implied improvements.
                                  
                               
                               
    Setters should be used with caution as they introduce 
                         mutability.
      Immutable classes are simpler and more efficient.
                               
                               
                                   
 This setter requires that it is called before the finder method.
       The object cannot be constructed in a valid state.
Constructing correctly

    Enlightened, our heroine progresses to Constructor Injection:

class DrinkMapper {
    private $_bar;

        public function setBar__construct(
                PitcherAndPiano $bar) {
            $this->_bar = $bar;
        }

        public function getCocktail($name) {
            $row = $this->_bar->getCocktail($name);
            return new Cocktail($row);
        }
}
Understand rules to break them

   Of course, our senior now provides contrary observations.
                                
                              
                                   
A long list of constructor parameters may indicate the class has 
  too many responsibilities. However, it may be valid. Setter 
             injection is the right solution in places.
                                   
                                  
                                   
 Constructor parameters are not self­documenting. One must 
                refer to the code of the called class.
Chapter 3   Weather the Storm

   In which our heroine puts her new skills 
     into practice via a training montage.
The other class

Our heroine ponders why her new skills do not fit the other class.
class DrinkMapper {
    private $_bar;

        public function __construct(
                PitcherAndPiano $bar) {
            $this->_bar = $bar;
        }

    public function getCocktail( 
            $name, Cocktail $cocktail) {
        $row = $this->_bar->getCocktail($name);
        return $cocktail->exchangeArray($row);
    }
}
An awkward feeling

 Without disturbing the senior's slumber, our heroine ponders...

                               
 That is now dependent on another mutable class. It does not 
       make sense for a Cocktail to exist sans content.
                              
                               
 Callers must now construct the return type too, leading to a 
                great deal of repeated code.
The industrial revolution

 Inspiration strikes and our heroine recalls the Factory Pattern:
class DrinkFactory {
    public static $ctClass = 'Cocktail';
   
    public static function getCocktail(array $data) {
        return new self::$ctClass($data);
    }
}
 
class DrinkMapper { [...]
    public function getCocktail($name) {
        $row = $this->_bar->getCocktail($name);
        return DrinkFactory::getCocktail($row);
    }
}
Mass production

          With a few tweaks, our heroine obtains her
                 holy grail of 100% coverage!

                              
Factories can replace constructors within libraries. Controllers 
may arguably use constructors directly due to their specialised 
                            nature.
                                
                              
Factories may also detect the presence of an object over a class 
            name to aid in injecting mock objects.
Chapter 4   Pastures New

 In which our heroine travels on her 
    new wheel, only to discover...
      she did not invent it first!
Exploring the frontier

          Our heroine begins to push the boundaries.

                               
 Define interfaces for injected classes for even looser coupling.

                               
      Swap implementations in real­life, not just mocks.
Founding fathers

          Martin Fowler first coined the term as
         a specialisation of Inversion of Control:
    http://martinfowler.com/articles/injection.html
                               
                          
       He additionally covers Interface Injection
                 and Service Locators

                          
            Goodness, he's a sharp fellow:
           http://twitter.com/martinfowler
They are among us!

 Richard Miller has written rather extensively on the subject
                  with respect to Symfony 2:
 http://miller.limethinking.co.uk/tag/dependency­injection/

                             
            Take advantage of his delicious brain.

                             
              He may also be found on Twitter:
               http://twitter.com/mr_r_miller
Questions & Discussion

          fin

Contenu connexe

Similaire à A Dependency Injection Primer

Task 2
Task 2Task 2
Task 2
EdiPHP
 

Similaire à A Dependency Injection Primer (20)

PHPSpec BDD for PHP
PHPSpec BDD for PHPPHPSpec BDD for PHP
PHPSpec BDD for PHP
 
laravel tricks in 50minutes
laravel tricks in 50minuteslaravel tricks in 50minutes
laravel tricks in 50minutes
 
50 Laravel Tricks in 50 Minutes
50 Laravel Tricks in 50 Minutes50 Laravel Tricks in 50 Minutes
50 Laravel Tricks in 50 Minutes
 
Migrating to dependency injection
Migrating to dependency injectionMigrating to dependency injection
Migrating to dependency injection
 
Singletons in PHP - Why they are bad and how you can eliminate them from your...
Singletons in PHP - Why they are bad and how you can eliminate them from your...Singletons in PHP - Why they are bad and how you can eliminate them from your...
Singletons in PHP - Why they are bad and how you can eliminate them from your...
 
Dependency Injection and Pimple
Dependency Injection and PimpleDependency Injection and Pimple
Dependency Injection and Pimple
 
PHPSpec BDD Framework
PHPSpec BDD FrameworkPHPSpec BDD Framework
PHPSpec BDD Framework
 
Does your code spark joy? Refactoring techniques to make your life easier.
Does your code spark joy? Refactoring techniques to make your life easier.Does your code spark joy? Refactoring techniques to make your life easier.
Does your code spark joy? Refactoring techniques to make your life easier.
 
Rich Model And Layered Architecture in SF2 Application
Rich Model And Layered Architecture in SF2 ApplicationRich Model And Layered Architecture in SF2 Application
Rich Model And Layered Architecture in SF2 Application
 
Rich domain model with symfony 2.5 and doctrine 2.5
Rich domain model with symfony 2.5 and doctrine 2.5Rich domain model with symfony 2.5 and doctrine 2.5
Rich domain model with symfony 2.5 and doctrine 2.5
 
WordPress Capabilities Magic
WordPress Capabilities MagicWordPress Capabilities Magic
WordPress Capabilities Magic
 
Effective Java with Groovy - How Language Influences Adoption of Good Practices
Effective Java with Groovy - How Language Influences Adoption of Good PracticesEffective Java with Groovy - How Language Influences Adoption of Good Practices
Effective Java with Groovy - How Language Influences Adoption of Good Practices
 
PHP OOP Lecture - 02.pptx
PHP OOP Lecture - 02.pptxPHP OOP Lecture - 02.pptx
PHP OOP Lecture - 02.pptx
 
Михаил Крайнюк - Form API + Drupal 8: Form and AJAX
Михаил Крайнюк - Form API + Drupal 8: Form and AJAXМихаил Крайнюк - Form API + Drupal 8: Form and AJAX
Михаил Крайнюк - Form API + Drupal 8: Form and AJAX
 
Object Trampoline: Why having not the object you want is what you need.
Object Trampoline: Why having not the object you want is what you need.Object Trampoline: Why having not the object you want is what you need.
Object Trampoline: Why having not the object you want is what you need.
 
Как получить чёрный пояс по WordPress? v2.0
Как получить чёрный пояс по WordPress? v2.0Как получить чёрный пояс по WordPress? v2.0
Как получить чёрный пояс по WordPress? v2.0
 
Ioc container | Hannes Van De Vreken | CODEiD
Ioc container | Hannes Van De Vreken | CODEiDIoc container | Hannes Van De Vreken | CODEiD
Ioc container | Hannes Van De Vreken | CODEiD
 
Corinna-2023.pptx
Corinna-2023.pptxCorinna-2023.pptx
Corinna-2023.pptx
 
Task 2
Task 2Task 2
Task 2
 
My Development Story
My Development StoryMy Development Story
My Development Story
 

Plus de Rowan Merewood

Algorithm, Review, Sorting
Algorithm, Review, SortingAlgorithm, Review, Sorting
Algorithm, Review, Sorting
Rowan Merewood
 

Plus de Rowan Merewood (6)

Sensible scaling
Sensible scalingSensible scaling
Sensible scaling
 
Estimation or, "How to Dig your Grave"
Estimation or, "How to Dig your Grave"Estimation or, "How to Dig your Grave"
Estimation or, "How to Dig your Grave"
 
TDD and Getting Paid
TDD and Getting PaidTDD and Getting Paid
TDD and Getting Paid
 
Algorithm, Review, Sorting
Algorithm, Review, SortingAlgorithm, Review, Sorting
Algorithm, Review, Sorting
 
Living With Legacy Code
Living With Legacy CodeLiving With Legacy Code
Living With Legacy Code
 
State Machines to State of the Art
State Machines to State of the ArtState Machines to State of the Art
State Machines to State of the Art
 

Dernier

Dernier (20)

Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
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
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 

A Dependency Injection Primer