123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- namespace Caliburn.Micro.Core {
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- /// <summary>
- /// Extension methods for the <see cref="SimpleContainer"/>.
- /// </summary>
- public static class ContainerExtensions {
- /// <summary>
- /// Registers a singleton.
- /// </summary>
- /// <typeparam name="TImplementation">The type of the implementation.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="key">The key.</param>
- /// <returns>The container.</returns>
- public static SimpleContainer Singleton<TImplementation>(this SimpleContainer container, string key = null) {
- return Singleton<TImplementation, TImplementation>(container, key);
- }
- /// <summary>
- /// Registers a singleton.
- /// </summary>
- /// <typeparam name="TService">The type of the service.</typeparam>
- /// <typeparam name="TImplementation">The type of the implementation.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="key">The key.</param>
- /// <returns>The container.</returns>
- public static SimpleContainer Singleton<TService, TImplementation>(this SimpleContainer container, string key = null)
- where TImplementation : TService {
- container.RegisterSingleton(typeof (TService), key, typeof (TImplementation));
- return container;
- }
- /// <summary>
- /// Registers an service to be created on each request.
- /// </summary>
- /// <typeparam name="TImplementation">The type of the implementation.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="key">The key.</param>
- /// <returns>The container.</returns>
- public static SimpleContainer PerRequest<TImplementation>(this SimpleContainer container, string key = null) {
- return PerRequest<TImplementation, TImplementation>(container, key);
- }
- /// <summary>
- /// Registers an service to be created on each request.
- /// </summary>
- /// <typeparam name="TService">The type of the service.</typeparam>
- /// <typeparam name="TImplementation">The type of the implementation.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="key">The key.</param>
- /// <returns>The container.</returns>
- public static SimpleContainer PerRequest<TService, TImplementation>(this SimpleContainer container, string key = null)
- where TImplementation : TService {
- container.RegisterPerRequest(typeof (TService), key, typeof (TImplementation));
- return container;
- }
- /// <summary>
- /// Registers an instance with the container.
- /// </summary>
- /// <typeparam name="TService">The type of the service.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="instance">The instance.</param>
- /// <returns>The container.</returns>
- public static SimpleContainer Instance<TService>(this SimpleContainer container, TService instance) {
- container.RegisterInstance(typeof (TService), null, instance);
- return container;
- }
- /// <summary>
- /// Registers a custom service handler with the container.
- /// </summary>
- /// <typeparam name="TService">The type of the service.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="handler">The handler.</param>
- /// <returns>The container.</returns>
- public static SimpleContainer Handler<TService>(this SimpleContainer container,
- Func<SimpleContainer, object> handler) {
- container.RegisterHandler(typeof (TService), null, handler);
- return container;
- }
- /// <summary>
- /// Registers all specified types in an assembly as singleton in the container.
- /// </summary>
- /// <typeparam name="TService">The type of the service.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="assembly">The assembly.</param>
- /// <param name="filter">The type filter.</param>
- /// <returns>The container.</returns>
- public static SimpleContainer AllTypesOf<TService>(this SimpleContainer container, Assembly assembly,
- Func<Type, bool> filter = null) {
- if (filter == null)
- filter = type => true;
- var serviceType = typeof (TService);
- var types = from type in assembly.GetTypes()
- where serviceType.IsAssignableFrom(type)
- && !type.IsAbstract()
- && !type.IsInterface()
- && filter(type)
- select type;
- foreach (var type in types) {
- container.RegisterSingleton(typeof (TService), null, type);
- }
- return container;
- }
- /// <summary>
- /// Requests an instance.
- /// </summary>
- /// <typeparam name="TService">The type of the service.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="key">The key.</param>
- /// <returns>The instance.</returns>
- public static TService GetInstance<TService>(this SimpleContainer container, string key = null) {
- return (TService) container.GetInstance(typeof (TService), key);
- }
- /// <summary>
- /// Gets all instances of a particular type.
- /// </summary>
- /// <typeparam name="TService">The type to resolve.</typeparam>
- /// <param name="container">The container.</param>
- /// <returns>The resolved instances.</returns>
- public static IEnumerable<TService> GetAllInstances<TService>(this SimpleContainer container) {
- return container.GetAllInstances(typeof (TService)).Cast<TService>();
- }
- /// <summary>
- /// Determines if a handler for the service/key has previously been registered.
- /// </summary>
- /// <typeparam name="TService">The service type.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name="key">The key.</param>
- /// <returns>True if a handler is registere; false otherwise.</returns>
- public static bool HasHandler<TService>(this SimpleContainer container, string key = null) {
- return container.HasHandler(typeof (TService), key);
- }
- /// <summary>
- /// Unregisters any handlers for the service/key that have previously been registered.
- /// </summary>
- /// <typeparam name="TService">The service type.</typeparam>
- /// <param name="container">The container.</param>
- /// <param name = "key">The key.</param>
- public static void UnregisterHandler<TService>(this SimpleContainer container, string key = null) {
- container.UnregisterHandler(typeof(TService), key);
- }
- }
- }
|