clean code ii - dependency injection at socal code camp san diego (07/27/2013)

48
Dependency Injection San Diego, July 27 th , 2013 SolCal Code Camp Clean Code II

Upload: theo-jungeblut

Post on 29-Nov-2014

1.291 views

Category:

Business


0 download

DESCRIPTION

All 3 Clean Code presentations provide great value by themselves, but taken together are designed to offer a holistic approach to successful software creation. This presentation requires you to know and understand basics like DRY, SoC, SRP, SOLID etc. which will be explained in the 1st Clean Code session. However, it will start at the basics of DI and will work towards intermediate and advanced scenarios depending on the participating group. Why writing Clean Code makes us more efficient Over the lifetime of a product, maintaining the product is actually one - if not the most - expensive area(s) of the overall product costs. Writing clean code can significantly lower these costs. However, writing clean code also makes you more efficient during the initial development time and results in more stable code. You will be presented design patterns and best practices which will make you write better and more easily maintainable code, seeing code in a holistic way. You will learn how to apply them by using an existing implementation as the starting point of the presentation. Finally, patterns & practices benefits are explained. This presentation is based on C# and Visual Studio 2010. However, the demonstrated patterns and practice can be applied to every other programming language too.

TRANSCRIPT

Page 1: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Dependency Injection

San Diego, July 27th, 2013

SolCalCode Camp

Clean Code II

Page 2: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Theo Jungeblut• Engineering manager & lead by day

at AppDynamics in San Francisco

• Coder & software craftsman by night, house builder and soon to be dad

• Architects decoupled solutions & crafts maintainable code to last

• Worked in healthcare and factory automation, building mission critical applications, framework & platforms

• Degree in Software Engineeringand Network Communications

• Enjoys cycling, running and [email protected]

www.designitright.net

Page 3: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Rate Session & Win a Shirt

http://www.speakerrate.com/theoj

Page 4: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Where to get the Slides

http://www.slideshare.net/theojungeblut

Page 5: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Overview

• What is the issue?• What is Dependency Injection?• What are Dependencies?• What is the IoC-Container doing for you?• What, how, why?• Q & A

Page 6: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

UI

Service

ProcessorProcessor

Service

ResourcesResources

UI

Processor

A cleanly layered Architecture

Page 7: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

What is the problem?

Page 8: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)
Page 9: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

What is Clean Code?

Page 10: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Clean Code is maintainable

Source code must be:• readable & well structured• extensible• testable

Page 11: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Code Maintainability *

Principles Patterns Containers

Why? How? What?

Extensibility Clean Code Tool reuse

* from: Mark Seemann’s “Dependency Injection in .NET” presentation Bay.NET 05/2011

Page 12: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

What is Dependency Injection?

Page 13: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Without Dependency Injectionpublic class ExampleClass{

private Logger logger;

public ExampleClass(){

this.logger = new Logger();

this.logger.Log(“Constructor call”);}

}

Page 14: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

public class ExampleClass{

private Logger logger;

public ExampleClass(){

this.logger = new Logger();

this.logger.Log(“Constructor call”);}

}

Without Dependency Injection

Avoid

Page 15: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Inversion of Control –

Constructor Injectionhttp://www.martinfowler.com/articles/injection.html

public class ExampleClass{

private ILogger logger;

public ExampleClass(ILogger logger){

this.logger = logger;if (logger == null){

throw new ArgumentNullException(“logger”);

}

this.logger.Log(“Constructor call”);}

}

Page 16: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Why is Dependency Injection beneficial?

Page 17: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Benefits of Dependency InjectionBenefit Description

Late binding Services can be swapped withother services.

Extensibility Code can be extended and reusedin ways not explicitly planned for.

Paralleldevelopment

Code can be developed in parallel.

Maintainability Classes with clearly definedresponsibilities are easier to maintain.

TESTABILITY Classes can be unit tested.

* from Mark Seemann’s “Dependency Injection in .NET”, page 16

Page 18: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

The Adapter Patternfrom Gang of Four, “Design Patterns”

Page 19: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

What are

Dependencies ?

Page 20: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Stable Dependency

“A DEPENDENCY that can be referenced without any detrimental effects.

The opposite of a VOLATILE DEPENDENCY. “

* From Glossary: Mark Seemann’s “Dependency Injection in .NET”

Page 21: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Volatile Dependency“A DEPENDENCY that involves side effects that

may be undesirable at times.

This may include modules that don’t yet exist, or that have adverse requirements on its

runtime environment.

These are the DEPENDENCIES that are addressed by DI.“

* From Glossary: Mark Seemann’s “Dependency Injection in .NET”

Page 22: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Lifetime a Job

for the Container

Page 23: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

public class ExampleClass{

private Logger logger;

public ExampleClass(){

this.logger = new Logger();

this.logger.Log(“Constructor call”);}

}

Without Dependency Injection

Avoid

Page 24: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

“Register, Resolve, Release”“Three Calls Pattern by Krzysztof Koźmic: http://kozmic.pl/

1. Register 2. Resolve

Build up You code

Execute ReleaseClean

up

Page 25: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

What the IoC-Container will do for you

1. Register 2. Resolve

Build up

ReleaseClean up

Page 26: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Separation of Concern (SoC)probably by Edsger W. Dijkstra in 1974

You codeExecu

te

• Focus on purpose of your code• Know only the contracts of the

dependencies• No need to know

implementations• No need to handle lifetime of

the dependencies

Page 27: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

The 3 Dimensions of DI

1.Object Composition2.Object Lifetime3.Interception

Page 28: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Register - Composition Root

• XML based Configuration• Code based Configuration• Convention based (Discovery)

Page 29: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Resolve

Resolve a single object request for example by Constructor Injection by resolving the needed object graph for this object.

Page 30: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Release

Release objects from Container when not needed anymore.

Page 31: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Anti Patterns

Page 32: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Control Freak

http://www.freakingnews.com/The-Puppet-Master-will-play-Pics-102728.asp

Page 33: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

// UNITY Exampleinternal static class Program{ private static UnityContainer unityContainer; private static SingleContactManagerForm singleContactManagerForm;

private static void InitializeMainForm() { singleContactManagerForm = unityContainer.Resolve<SingleContactManagerForm>(); }}

Inversion of Control –

Service Locatorhttp://www.martinfowler.com/articles/injection.html

Page 34: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

// UNITY Exampleinternal static class Program{ private static UnityContainer unityContainer; private static SingleContactManagerForm singleContactManagerForm;

private static void InitializeMainForm() { singleContactManagerForm = unityContainer.Resolve<SingleContactManagerForm>(); }}

Inversion of Control –

Service Locatorhttp://www.martinfowler.com/articles/injection.html

Anti-Pattern

based on Mark Seemann

Page 35: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Inversion of Control –

Setter (Property) Injection

// UNITY Examplepublic class ContactManager : IContactManager{ [Dependency] public IContactPersistence ContactPersistence { get { return this.contactPersistence; }

set { this.contactPersistence = value; } }}

http://www.martinfowler.com/articles/injection.html

Page 36: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Property Injection

+ Easy to understand

- Hard to implement robust

* Take if an good default exists

- Limited in application otherwise

Page 37: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Method Injectionpublic class ContactManager : IContactManager{ …. public bool Save (IContactPersistencecontactDatabaseService, IContact contact) { if (logger == null) {

throw new ArgumentNullException(“logger”); } …. // Additional business logic executed before calling the save

return contactDatabaseService.Save(contact); }}

http://www.martinfowler.com/articles/injection.html

Page 38: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Method Injection

• Needed for handling changing dependencies in method calls

Page 39: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Ambient Contextpublic class ContactManager : IContactManager{ …. public bool Save (….) { …. IUser currentUser = ApplicationContext.CurrentUser; …. }}

* The Ambient Context object needs to have a default value if not assigned yet.

Page 40: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Ambient Context

• Avoids polluting an API with Cross Cutting Concerns

• Only for Cross Cutting Concerns

• Limited in application otherwise

Page 41: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

InterceptionPublic class LoggingInterceptor : IContactManager{ public bool Save(IContact contact) { bool success;

this. logger.Log(“Starting saving’);

success = this.contactManager.Save(contact);

this. logger.Log(“Starting saving’);

return success; }}

Public class ContactManager : IContactManager{ public bool Save(IContact contact) { ….

return Result }}

* Note: strong simplification of what logically happens through interception.

Page 42: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Dependency Injection Container & more• Typically support all types of Inversion of Control mechanisms• Constructor Injection• Property (Setter) Injection• Method (Interface) Injection• Service Locator

•.NET based DI-Container• Unity• Castle Windsor • StructureMap• Spring.NET• Autofac• Puzzle.Nfactory• Ninject• PicoContainer.NET• and more

Related Technology:• Managed Extensibility Framework (MEF)

Page 43: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

The “Must Read”-Book(s)

http://www.manning.com/seemann/

by Mark Seemann

Dependency Injection is a set of software design principles and patterns that enable us to develop loosely coupled code.

Page 44: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Summary Clean Code - DIMaintainability is achieved through:

• Simplification, Specialization Decoupling (KISS, SoC, IoC, DI)

• Dependency InjectionConstructor Injection as default, Property and Method Injection as needed, Ambient Context for Dependencies with a default,Service Locator never

• Registration Configuration by Convention if possible, exception in Code as neededConfiguration by XML for explicit extensibility and post compile setup

• Quality through Testability (all of them!)

Graphic by Nathan Sawaya

courtesy of brickartist.com

Page 45: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Downloads, Feedback & Comments:

Q & A

Graphic by Nathan Sawaya courtesy of brickartist.com

[email protected] www.speakerrate.com/theoj

Page 46: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

References… http://www.manning.com/seemann/http://en.wikipedia.org/wiki/Keep_it_simple_stupidhttp://picocontainer.org/patterns.htmlhttp://en.wikipedia.org/wiki/Dependency_inversion_principlehttp://en.wikipedia.org/wiki/Don't_repeat_yourselfhttp://en.wikipedia.org/wiki/Component-oriented_programminghttp://en.wikipedia.org/wiki/Service-oriented_architecturehttp://www.martinfowler.com/articles/injection.htmlhttp://www.codeproject.com/KB/aspnet/IOCDI.aspxhttp://msdn.microsoft.com/en-us/magazine/cc163739.aspxhttp://msdn.microsoft.com/en-us/library/ff650320.aspxhttp://msdn.microsoft.com/en-us/library/aa973811.aspxhttp://msdn.microsoft.com/en-us/library/ff647976.aspxhttp://msdn.microsoft.com/en-us/library/cc707845.aspxhttp://msdn.microsoft.com/en-us/library/bb833022.aspxhttp://unity.codeplex.com/

Lego (trademarked in capitals as LEGO)

Page 47: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

Blog, Rating, Slides

http://www.DesignItRight.net

www.speakerrate.com/theoj

www.slideshare.net/theojungeblut

Page 48: Clean Code II - Dependency Injection at SoCal Code Camp San Diego (07/27/2013)

… thanks for you attention!

And visit and support the

www.sandiegodotnet.com

Please fill out the feedback, and…

www.speakerrate.com/theoj