ServiceProvider, cache etc. done with generics without cast - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T07:29:37Z http://stackoverflow.com/feeds/question/178255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast 0 ServiceProvider, cache etc. done with generics without cast SeeR 2008-10-07T12:42:12Z 2008-11-02T20:05:16Z <p>I'm talking about c# <del>3.5</del> 3.0. I know how to do it when cache or ServiceProvider can have only one instance for the whole application. In this case ServiceProvider can look like this</p> <pre><code>public static class Service&lt;T&gt; { public static T Value {get; set;} } </code></pre> <p>and can be used for different types like this:</p> <pre><code>Service&lt;IDbConnection&gt;.Value = new SqlConnection("..."); Service&lt;IDesigner&gt;.Value = ...; //... IDbCommand cmd = Service&lt;IDbConnection&gt;.Value.CreateCommand(); </code></pre> <p>Static cache is also easy:</p> <pre><code>public static class Cache&lt;T&gt; { private static Dictionary&lt;int, T&gt; cache = new Dictionary&lt;int, T&gt;(); public static void Add(int key, T value) { cache.Add(key, value); } public static T Find(int key) { return cache[key]; } } </code></pre> <p>and can be used like this:</p> <pre><code>Cache&lt;string&gt;.Add(1, "test"); Cache&lt;DateTime&gt;.Add(2, DateTime.Now); //... string found = Cache&lt;string&gt;.Find(1); </code></pre> <p><br> <strong>My question is</strong>: how can I create similiar cache or service provider when I want to have 2 or more different instances of each. Here is example code, how I want to use service provider:</p> <pre><code>ServiceProvider provider = new ServiceProvider(); provider.Add&lt;IDbConnection&gt;(new SqlConnection("...")); provider.Add&lt;IDesigner&gt;(...); //... ServiceProvider provider1 = new ServiceProvider(); provider1.Add&lt;IDbConnection&gt;(new SqlConnection("...")); //... //... IDbCommand cmd1 = provider.GetService&lt;IDbConnection&gt;().CreateCommand(); IDbCommand cmd2 = provider1.GetService&lt;IDbConnection&gt;().CreateCommand(); </code></pre> <p>The only implementation that I have in my head is using <strong>casting which I want to avoid</strong>.</p> <pre><code>public class ServiceProvider { private Dictionary&lt;Type, object&gt; services = new Dictionary&lt;Type, object&gt;(); public void Add&lt;T&gt;(T value) { services.Add(typeof(T), value); } public T GetService&lt;T&gt;() { return (T) services[typeof (T)]; } } </code></pre> http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/178310#178310 2 Answer by Tony the Pony for ServiceProvider, cache etc. done with generics without cast Tony the Pony 2008-10-07T12:58:57Z 2008-10-08T20:25:08Z <p>Why are you particularly desperate to avoid casting? Yes, it feels "unsafe" - but you can basically guarantee that it's not going to be an issue in ServiceProvider, and the clients aren't doing any casting.</p> <p>This is a reasonably common problem, but I don't believe there's any nice solution to it within .NET generics - it's a type relationship which can't be expressed, basically.</p> <p>EDIT: I've now <a href="http://msmvps.com/blogs/jon_skeet/archive/2008/10/08/mapping-from-a-type-to-an-instance-of-that-type.aspx" rel="nofollow">blogged</a> about this and encapsulated the behaviour in a type. Feel free to take that code if it keeps things cleaner for you.</p> http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/186847#186847 0 Answer by James Hart for ServiceProvider, cache etc. done with generics without cast James Hart 2008-10-09T11:34:01Z 2008-10-09T11:34:01Z <p>As I posted to <a href="http://msmvps.com/blogs/jon_skeet/archive/2008/10/08/mapping-from-a-type-to-an-instance-of-that-type.aspx" rel="nofollow">Jon Skeet's blog,</a> the following approach might help you avoid casts, if that's a worry (though perhaps this introduces some other more serious issues than casting :)).</p> <p>If you have a weak dictionary implementation (one that uses weak-reference keys and cleans out otherwise unreferenced keys and their associated values), you could try something like this:</p> <pre><code> public class TypeDictionary { private class InnerTypeDictionary&lt;T&gt; { static WeakDictionary&lt;TypeDictionary, T&gt; _innerDictionary = new WeakDictionary&lt;TypeDictionary, T&gt;(); public static void Add(TypeDictionary dic, T value) { _innerDictionary.Add(dic, value); } public static T GetValue(TypeDictionary dic) { return _innerDictionary[dic]; } } public void Add&lt;T&gt;(T value) { InnerTypeDictionary&lt;T&gt;.Add(this, value); } public T GetValue&lt;T&gt;() { return InnerTypeDictionary&lt;T&gt;.GetValue(this); } } </code></pre> <p>It has the benefit of making all the type lookups into static generic type lookups, without direct recourse to System.Type objects, so I guess that might give you a performance kick. Would be interested to know if it does suit your caching scenario.</p> http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/189329#189329 0 Answer by SeeR for ServiceProvider, cache etc. done with generics without cast SeeR 2008-10-09T21:44:07Z 2008-11-02T20:05:16Z <p><del>I think I found the solution. Here you have my implementation of ServiceProvider You can find the description of it on <a href="http://seermindflow.blogspot.com/2008/10/is-it-possible-to-write-c-application.html" rel="nofollow">my blog</a>.</p> <pre><code>public class ServiceContainer : IDisposable { readonly IList&lt;IService&gt; services = new List&lt;IService&gt;(); public void Add&lt;T&gt;(T service) { Add&lt;T,T&gt;(service); } public void Add&lt;Key, T&gt;(T service) where T : Key { services.Add(new Service&lt;Key&gt;(this, service)); } public void Dispose() { foreach(var service in services) service.Remove(this); } ~ServiceContainer() { Dispose(); } public T Get&lt;T&gt;() { return Service&lt;T&gt;.Get(this); } } public interface IService { void Remove(object parent); } public class Service&lt;T&gt; : IService { static readonly Dictionary&lt;object, T&gt; services = new Dictionary&lt;object, T&gt;(); public Service(object parent, T service) { services.Add(parent, service); } public void Remove(object parent) { services.Remove(parent); } public static T Get(object parent) { return services[parent]; } } </code></pre> <p>Yes it uses static field, but all references are removed in finalizer so the only drawback is that ServiceProvider stays one GC generation longer than usually.</del></p> <p><strong>EDIT</strong>: OK, after few tries I must admit that Jon Skeet was right, currently there is no simple solution to this problem. My solution written above can work only if I fulfill 2 constraints:</p> <ol> <li>I use <code>Dictionary&lt;WeakReference, T&gt; services</code> instead of <code>Dictionary&lt;object, T&gt; services</code></li> <li>No service will have reference to ServiceProvider.</li> </ol> <p>Otherwise you will have memory leaks :-(</p> <p>Simple solution that Microsoft could provide is to create native WeakReference&lt; T > which will solve constraint No 2. and we can write services like this:</p> <pre><code>Dictionary&lt;WeakReference, WeakReference&lt;T&gt;&gt; services </code></pre> http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/223299#223299 0 Answer by jezell for ServiceProvider, cache etc. done with generics without cast jezell 2008-10-21T20:06:03Z 2008-10-21T20:06:03Z <p>There is not a good way to do this without casting. Don't get hung up on the casting cost. Focus on things that actually impact performance... for example, hashing isn't free to begin with. You shouldn't be calling back into your service provider every time you want to use a service. Get the reference a single time and you don't have to worry about mounting costs of retrieval:</p> <p>var service = provider.GetService();</p> <p>service.DoSomething();</p> <p>service.DoSomethingElse();</p>