IoC, Dll References, and Assembly Scanning - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T02:18:46Zhttp://stackoverflow.com/feeds/question/809051http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning3IoC, Dll References, and Assembly ScanningJeffrey Knight2009-04-30T21:00:20Z2009-05-03T05:10:22Z
<p>Although this question is related to StructureMap, my <i>general</i> question is: </p>
<blockquote>
<p>When wiring up components with an IoC
container <b>in code</b> (as opposed
to configuring via <b>xml</b>) do you
generally need explicit project/build
references to all assemblies?</p>
</blockquote>
<p>Why the separate assemblies? Because:</p>
<p><hr /></p>
<blockquote>
<p>"Abstract classes residing in a
separate assembly from their concrete
implementations are a great way to
achieve such separation." -<b>Framework
Design Guidelines p.91</b></p>
</blockquote>
<p><hr /></p>
<p>Example:</p>
<p>Let's say I have <em>PersonBase.dll</em> and <em>Bob.dll</em></p>
<p><em>Bob</em> inherits from the abstract class <em>PersonBase</em>. They're both in the <em>Person</em> namespace. <b>But in different assemblies</b>.</p>
<p>I'm programming to <em>PersonBase</em>, not <em>Bob</em>.</p>
<p>Back in my main code, I need a person. StructureMap can scan assemblies. Great, I'll ask StructureMap for one!</p>
<p>Now, in my main code, I am of course referring only to <em>PersonBase</em>, not to <em>Bob</em>. I actually don't want my code to know <em>anything</em> about <em>Bob</em>. No project references, no nuthin. That's the whole point.</p>
<p>So I want to say:</p>
<pre><code>//Reference: PersonBase.dll (only)
using Person;
...
//this is as much as we'll ever be specific about Bob:
Scan( x=> { x.Assembly("Bob.dll"); }
//Ok, I should now have something that's a PersonBase (Bob). But no ?
ObjectFactory.GetAllInstances<PersonBase>().Count == 0
</code></pre>
<p>No luck. What does work is being explicit that I want Bob:</p>
<pre><code>//Reference: PersonBase.dll and Bob.dll
using Person;
...
Scan( x => {x.Assembly("Bob.dll"); }
//If I'm explicit, it works. But Bob's just a PersonBase, what gives?
ObjectFactory.GetAllInstances<Bob>().Count == 1 //there he is!
</code></pre>
<p>But now I've had to reference <em>Bob.dll</em> in my project which is exactly what I didn't want. </p>
<p>I can avoid this situation using Spring + Xml configuration. But then I'm back to Spring + Xml configuration ... !</p>
<blockquote>
<p>Am I missing something with using
StructureMap, or as a general
principle, do (fluent) IoC
configurations need explict references
to all assemblies?</p>
</blockquote>
<p>Possibly related question: <a href="http://stackoverflow.com/questions/508399/structuremap-and-scanning-assemblies">http://stackoverflow.com/questions/508399/structuremap-and-scanning-assemblies</a></p>
http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/809107#8091071Answer by Chris Brandsma for IoC, Dll References, and Assembly ScanningChris Brandsma2009-04-30T21:12:09Z2009-04-30T21:12:09Z<p>You can do xml configuration with StructureMap as well. You can even mix them if you want.</p>
<p>There are also StructureMap Attributes you could put in your Bob class to tell StructureMap how to load the assembly. DefaultConstructor is one I end up using from time to time.</p>
http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/809172#8091720Answer by Paco for IoC, Dll References, and Assembly ScanningPaco2009-04-30T21:25:12Z2009-04-30T21:25:12Z<p>The automatic scan option only works when you keep the naming, assembly and namespace conventions. You can manually configure structuremap with a fluent interface. Example: </p>
<pre><code>ObjectFactory.Initialize(initialization =>
initialization.ForRequestedType<PersonBase>()
.TheDefault.Is.OfConcreteType<Bob>());
</code></pre>
http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/815500#8155000Answer by not.that.dave.foley for IoC, Dll References, and Assembly Scanningnot.that.dave.foley2009-05-02T20:02:23Z2009-05-02T20:02:23Z<p>What we do on my current project (which uses AutoFac, not StructureMap, but I think it shouldn't make a difference):</p>
<p>We have the interfaces defining external services that the application uses in a core assembly, let's say <code>App.Core</code> (like your PersonBase).</p>
<p>Then we have the implementations of these interfaces in <code>Services.Real</code> (like Bob.dll). </p>
<p>In our case we also have <code>Service.Fake</code>, which are used for facilitating UI testing with dependencies on other enterprise services and databases, etc.</p>
<p>The front-end "client" application itself (in our case, ASP.NET MVC app) references <code>App.Core</code>. </p>
<p>When the app starts, we use <code>Assembly.Load</code> to load the appropriate "Services" implementation DLL, based on a config setting.</p>
<p>Each of these DLLs has an implementation of IServiceRegistry that returns a list of the services that it implements:</p>
<pre><code>public enum LifestyleType { Singleton, Transient, PerRequest}
public class ServiceInfo {
public Type InterfaceType {get;set;}
public Type ImplementationType {get;set;}
// this might or might not be useful for your app,
// depending on the types of services, etc.
public LifestyleType Lifestyle {get;set;}
}
public interface IServiceRegistry {
IEnumerable<ServiceInfo> GetServices();
}
</code></pre>
<p>... the application finds this ServiceRegistry via reflection and enumerates through these ServiceInfo instances and registers them on the container. For us, this register-all-services lives in the Web application, but it's possible (and preferable in many cases) to have it in a separate assembly.</p>
<p>This way we can isolate the domain logic from the infrastructure code, and prevent "just-this-once" work-arounds where the application ends up depending on a direct reference to the infrastructure code. We also avoid having to have a reference to the container in each Services implementation.</p>
<p>One really important thing if you are doing this: make <em>sure</em> that you have tests that verify that you can create each "top-level" type (in our case, ASP.NET MVC Controllers) with each potential configuration of the IOC container. </p>
<p>Otherwise, it is pretty easy to forget to implement one interface and break huge sections of your application.</p>
http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/816376#8163761Answer by Jeffrey Knight for IoC, Dll References, and Assembly ScanningJeffrey Knight2009-05-03T05:04:14Z2009-05-03T05:10:22Z<p>I finally got this sorted out. It looks like this:</p>
<p><img src="http://img396.imageshack.us/img396/1343/iocuml.jpg" alt="IoC Uml" /></p>
<p>with the assemblies</p>
<ul>
<li>Core.exe
<li>PersonBase.dll (references by Core.exe)
<li>Bob.dll (loaded up run time via StructureMap Scan)
<li>Betty.dll (loaded up run time via StructureMap Scan)
</ul>
<p>To get it with StructureMap, I needed a custom "ITypeScanner" to support scanning for assemblies:</p>
<pre><code>public class MyScanner : ITypeScanner {
public void Process(Type type, PluginGraph graph) {
if(type.BaseType == null) return;
if(type.BaseType.Equals(typeof(PersonBase))) {
graph.Configure(x =>
x.ForRequestedType<PersonBase>()
.TheDefault.Is.OfConcreteType(type));
}
}
}
</code></pre>
<p>So my main code looks like:</p>
<pre><code>ObjectFactory.Configure(x => x.Scan (
scan =>
{
scan.AssembliesFromPath(Environment.CurrentDirectory
/*, filter=>filter.You.Could.Filter.Here*/);
//scan.WithDefaultConventions(); //doesn't do it
scan.With<MyScanner>();
}
));
ObjectFactory.GetAllInstances<PersonBase>()
.ToList()
.ForEach(p =>
{ Console.WriteLine(p.FirstName); } );
</code></pre>