ServiceProvider, cache etc. done with generics without cast - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T07:29:37Zhttp://stackoverflow.com/feeds/question/178255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast0ServiceProvider, cache etc. done with generics without castSeeR2008-10-07T12:42:12Z2008-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<T>
{
public static T Value {get; set;}
}
</code></pre>
<p>and can be used for different types like this:</p>
<pre><code>Service<IDbConnection>.Value = new SqlConnection("...");
Service<IDesigner>.Value = ...;
//...
IDbCommand cmd = Service<IDbConnection>.Value.CreateCommand();
</code></pre>
<p>Static cache is also easy:</p>
<pre><code>public static class Cache<T>
{
private static Dictionary<int, T> cache = new Dictionary<int, T>();
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<string>.Add(1, "test");
Cache<DateTime>.Add(2, DateTime.Now);
//...
string found = Cache<string>.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<IDbConnection>(new SqlConnection("..."));
provider.Add<IDesigner>(...);
//...
ServiceProvider provider1 = new ServiceProvider();
provider1.Add<IDbConnection>(new SqlConnection("..."));
//...
//...
IDbCommand cmd1 = provider.GetService<IDbConnection>().CreateCommand();
IDbCommand cmd2 = provider1.GetService<IDbConnection>().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<Type, object> services = new Dictionary<Type, object>();
public void Add<T>(T value)
{
services.Add(typeof(T), value);
}
public T GetService<T>()
{
return (T) services[typeof (T)];
}
}
</code></pre>
http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/178310#1783102Answer by Tony the Pony for ServiceProvider, cache etc. done with generics without castTony the Pony2008-10-07T12:58:57Z2008-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#1868470Answer by James Hart for ServiceProvider, cache etc. done with generics without castJames Hart2008-10-09T11:34:01Z2008-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<T>
{
static WeakDictionary<TypeDictionary, T> _innerDictionary = new WeakDictionary<TypeDictionary, T>();
public static void Add(TypeDictionary dic, T value)
{
_innerDictionary.Add(dic, value);
}
public static T GetValue(TypeDictionary dic)
{
return _innerDictionary[dic];
}
}
public void Add<T>(T value)
{
InnerTypeDictionary<T>.Add(this, value);
}
public T GetValue<T>()
{
return InnerTypeDictionary<T>.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#1893290Answer by SeeR for ServiceProvider, cache etc. done with generics without castSeeR2008-10-09T21:44:07Z2008-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<IService> services = new List<IService>();
public void Add<T>(T service)
{
Add<T,T>(service);
}
public void Add<Key, T>(T service) where T : Key
{
services.Add(new Service<Key>(this, service));
}
public void Dispose()
{
foreach(var service in services)
service.Remove(this);
}
~ServiceContainer()
{
Dispose();
}
public T Get<T>()
{
return Service<T>.Get(this);
}
}
public interface IService
{
void Remove(object parent);
}
public class Service<T> : IService
{
static readonly Dictionary<object, T> services = new Dictionary<object, T>();
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<WeakReference, T> services</code> instead of <code>Dictionary<object, T> 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< T > which will solve constraint No 2. and we can write services like this:</p>
<pre><code>Dictionary<WeakReference, WeakReference<T>> services
</code></pre>
http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/223299#2232990Answer by jezell for ServiceProvider, cache etc. done with generics without castjezell2008-10-21T20:06:03Z2008-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>