Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Wrangle Cross-cutting Concerns with Event Driven Development

Wrangle Cross-cutting Concerns with Event Driven Development

Event driven programming is becoming essential to many applications and frameworks that can be utilized to make your application more flexible and “plugin” ready.

Learn how to effectively use events in applications to reduce code complexity of cross-cutting concerns, how various frameworks implement events and make them available to the developer, and the benefits and drawbacks of utilizing aspect oriented development with real world examples.

We will also look at many popular frameworks (Symfony2, CakePHP, Zend, etc) to see how their event architecture is implemented at a bird’s-eye view and how developers can take advantage, including a demo using Symfony2’s dispatcher to illustrate the benefits of event driven design.

Zumba Technology

October 05, 2013
Tweet

More Decks by Zumba Technology

Other Decks in Programming

Transcript

  1. Chris Saylor Lead Engineer @cjsaylor 150+ countries 14 million weekly

    class participants 15 million monthly pageviews 47 million monthly service requests Zumba Fitness
  2. What to expect What are cross-cutting concerns? Origins from Observer

    pattern Asynchronous vs Synchronous Logic abstraction Demo Events in the wild Advantages and drawbacks Futher considerations
  3. Cross-cutting concerns are parts of a program that rely on

    or must affect many other parts of the system. Source: Wikipedia.org
  4. What are the risks of cross cutting concerns? Coupling systems

    too tightly (aka "Tangling") Lots of code duplications (aka "Scattering")
  5. Single Responsibility Principle If a class and its services should

    be responsible for one thing, how do we deal with unrelated business rules that must be addressed by that class?
  6. Observer Pattern The root of Event Driven Applications began with

    the observer pattern which tracks the state of a subject by attaching observers to the subject so that when it changes, all observers are notified.
  7. SplObserver The interface is a standard lib to implement this

    pattern. SplObserver An SplSubject object attaches the observer. The SplSubject then calls an update on the observer when notifying the registered observers.
  8. App event in javascript Syncronous in order of execution Asyncronous

    in order of completion $ ( ' p ' ) . o n ( ' c l i c k ' , f u n c t i o n ( ) { ( f u n c t i o n ( ) { c o n s o l e . l o g ( ' f i r s t ? ' ) ; } ( ) ) ; } ) . o n ( ' c l i c k ' , f u n c t i o n ( ) { ( f u n c t i o n ( ) { c o n s o l e . l o g ( ' s e c o n d ? ' ) ; } ( ) ) ; } ) ;
  9. App event in PHP Syncronous Predictable order of execution and

    completion < ? p h p $ e v e n t - > o n ( ' e v e n t 1 ' , f u n c t i o n ( ) { e c h o " F i r s t ! " ; } ) - > o n ( ' e v e n t 1 ' , f u n c t i o n ( ) { e c h o " S e c o n d . " } ) ;
  10. Separation of Concerns Use synchronous events to separate chunks of

    business logic away from core functionality Provides for modularity Allow for unit testing listeners Multiple messages - multiple listeners
  11. Example Before < ? p h p f u n

    c t i o n l o g i n ( $ u s e r n a m e , $ p a s s w o r d ) { t r y { / / g e t u s e r f r o m d b $ u s e r = R e p o s i t o r y : : g e t ( $ u s e r n a m e , $ p a s s w o r d ) ; / / C h e c k i f a n a d m i n i f ( $ u s e r - > r o l e - > a d m i n ) { $ _ S E S S I O N [ ' a d m i n ' ] = t r u e ; } / / L o g u s e r ' s l o g i n $ u s e r - > u p d a t e L a s t L o g i n ( t i m e ( ) ) ; R e p o s i t o r y : : s a v e U s e r ( $ u s e r ) ; } c a t c h ( \ E x c e p t i o n $ e ) { r e t u r n f a l s e ; } r e t u r n t r u e ; }
  12. Example After < ? p h p f u n

    c t i o n l o g i n ( $ u s e r n a m e , $ p a s s w o r d ) { t r y { / / g e t u s e r f r o m d b $ u s e r = R e p o s i t o r y : : g e t ( $ u s e r n a m e , $ p a s s w o r d ) ; / / F i r e p o s t l o g i n e v e n t $ e v e n t : : t r i g g e r ( ' a f t e r L o g i n ' , c o m p a c t ( ' u s e r ' ) ) ; } c a t c h ( \ E x c e p t i o n $ e ) { r e t u r n f a l s e ; } r e t u r n t r u e ; < ? p h p $ e v e n t : : l i s t e n ( ' a f t e r L o g i n ' , f u n c t i o n ( $ e v e n t ) { i f ( $ e v e n t - > d a t a [ ' u s e r ' ] - > r o l e - > a d m i n ) { $ _ S E S S I O N [ ' a d m i n ' ] = t r u e } } ) ; $ e v e n t : : l i s t e n ( ' a f t e r L o g i n ' , f u n c t i o n ( $ e v e n t ) { $ e v e n t - > d a t a [ ' u s e r ' ] - > u p d a t e L a s t L o g i n ( t i m e ( ) ) ; R e p o s i t o r y : : s a v e U s e r ( $ e v e n t - > d a t a [ ' u s e r ' ] ) ;
  13. CakePHP Controllers have beforeFilter, beforeRender, and components with similar callbacks

    Models have behaviors with before find/save Exposed event library
  14. Symfony 2 can be used as a standalone event library.

    Can be easily incorporated via Composer EventDispatcher
  15. Zend can be used to create events and listeners of

    said events Can be extracted from Zend, but not as easily as Symfony 2. EventManagers
  16. Decouple Code Advantage: Modular design can reduce core functionality bugs

    when modifying modules. Allows for open frameworks to allow third parties to implement custom solutions without modifying core files. Disadvantage: Code is harder to follow and needs good organizational management. Documentation of what events will be called when is almost a must.
  17. Plugin Architecture Advantage: Enable or disable plugins on the fly.

    Essential for open source targeting developers to implement. Disadvantage: No dependencies should exist be between plugins.
  18. Testing Advantage: Test the listeners separate from the core functionality.

    Execute listeners from core test cases via external event triggers. Mock event callbacks to test event trigger placement. Disadvantage: Multiple event bindings in test suites results in undesired event triggers. Unbinding specific event callbacks can be difficult to do.
  19. Synchronous or Asynchronous? Make a judgment on whether an event

    listener should process it now or post-request process with a call to a message queue.
  20. Events and Variable Reference Using an object for passage into

    the event so all event handlers have access to the same data.
  21. Specialization Is the logic I'm trying to abstract into an

    event worth doing so? Would this logic best be housed in the core logic?
  22. Further Reading Using application events to hook in plugins Decoupling

    applications with domain events Domain Events