2013-05-01 03:11:00 +02:00
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Common.EnsureThat;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Cache
|
|
|
|
|
{
|
2013-05-23 07:12:01 +02:00
|
|
|
|
public interface ICacheManger
|
2013-05-01 03:11:00 +02:00
|
|
|
|
{
|
2013-05-30 06:55:23 +02:00
|
|
|
|
ICached<T> GetCache<T>(Type host, string name);
|
|
|
|
|
ICached<T> GetCache<T>(Type host);
|
2013-05-23 07:12:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class CacheManger : ICacheManger
|
|
|
|
|
{
|
|
|
|
|
private readonly ICached<object> _cache;
|
2013-05-01 03:11:00 +02:00
|
|
|
|
|
2013-05-23 07:12:01 +02:00
|
|
|
|
public CacheManger()
|
2013-05-01 03:11:00 +02:00
|
|
|
|
{
|
2013-05-23 07:12:01 +02:00
|
|
|
|
_cache = new Cached<object>();
|
|
|
|
|
|
2013-05-01 03:11:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-30 06:55:23 +02:00
|
|
|
|
public ICached<T> GetCache<T>(Type host)
|
2013-05-01 03:11:00 +02:00
|
|
|
|
{
|
2013-05-30 06:55:23 +02:00
|
|
|
|
Ensure.That(() => host).IsNotNull();
|
|
|
|
|
return GetCache<T>(host, host.FullName);
|
2013-05-23 07:12:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-30 06:55:23 +02:00
|
|
|
|
public ICached<T> GetCache<T>(Type host, string name)
|
2013-05-23 07:12:01 +02:00
|
|
|
|
{
|
2013-05-30 06:55:23 +02:00
|
|
|
|
Ensure.That(() => host).IsNotNull();
|
|
|
|
|
Ensure.That(() => name).IsNotNullOrWhiteSpace();
|
|
|
|
|
|
|
|
|
|
return (ICached<T>)_cache.Get(host.FullName + "_" + name, () => new Cached<T>());
|
2013-05-01 03:11:00 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|