mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Common.Composition;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public interface IServiceFactory
|
|
{
|
|
T Build<T>() where T : class;
|
|
IEnumerable<T> BuildAll<T>() where T : class;
|
|
object Build(Type contract);
|
|
IEnumerable<Type> GetImplementations(Type contract);
|
|
}
|
|
|
|
public class ServiceFactory : IServiceFactory
|
|
{
|
|
private readonly IContainer _container;
|
|
|
|
public ServiceFactory(IContainer container)
|
|
{
|
|
_container = container;
|
|
}
|
|
|
|
public T Build<T>() where T : class
|
|
{
|
|
return _container.Resolve<T>();
|
|
}
|
|
|
|
public IEnumerable<T> BuildAll<T>() where T : class
|
|
{
|
|
return _container.ResolveAll<T>().GroupBy(c => c.GetType().FullName).Select(g => g.First());
|
|
}
|
|
|
|
public object Build(Type contract)
|
|
{
|
|
return _container.Resolve(contract);
|
|
}
|
|
|
|
public IEnumerable<Type> GetImplementations(Type contract)
|
|
{
|
|
return _container.GetImplementations(contract);
|
|
}
|
|
}
|
|
} |