Exemplo n.º 1
0
 private static void ValidateConfiguration(DependenciesConfiguration configuration)
 {
     foreach (var implementations in configuration.Dependencies
              .SelectMany(
                  keyValuePair => keyValuePair.Value.Where(implementations => implementations.Type.IsAbstract)))
     {
         throw new ValidationException(implementations + " is abstract class");
     }
 }
Exemplo n.º 2
0
        public static IEnumerable <object> CreateClassIEnumerable(Type @interface, List <Dependency> dependencies,
                                                                  DependenciesConfiguration configuration)
        {
            var list = (IList)Activator.CreateInstance(typeof(List <>).MakeGenericType(@interface));

            foreach (var dependency in dependencies)
            {
                list.Add(CreateClass(dependency, configuration));
            }

            return((IEnumerable <object>)list);
        }
Exemplo n.º 3
0
 public DependencyProvider(DependenciesConfiguration configuration)
 {
     try
     {
         ValidateConfiguration(configuration);
         Configuration = configuration;
     }
     catch (ValidationException e)
     {
         Console.WriteLine(e.StackTrace);
         throw;
     }
 }
Exemplo n.º 4
0
        private static List <ConstructorInfo> SortConstructors
            (IEnumerable <ConstructorInfo> constructorInfos, DependenciesConfiguration configuration)
        {
            var @interfaces = configuration.Dependencies.Keys.ToList();
            var dictionary  = new Dictionary <ConstructorInfo, int>();

            foreach (var constructor in constructorInfos)
            {
                var dependencyAmount = constructor.GetParameters()
                                       .Count(param => interfaces.Contains(param.ParameterType));
                dictionary.Add(constructor, dependencyAmount);
            }

            return(dictionary.OrderBy(pair => pair.Value)
                   .ToDictionary(pair => pair.Key, pair => pair.Value).Keys.ToList());
        }
Exemplo n.º 5
0
        public static object CreateClass(Dependency dependency, DependenciesConfiguration configuration)
        {
            var type = dependency.Type;

            // TODO : поменять тип exception
            // TODO : находить не все конструкторы а только public / пофиксить флагами
            if (type.GetConstructors().Length == 0)
            {
                throw new Exception();
            }

            var constructor = SortConstructors(type.GetConstructors(), configuration)[0];
            var arguments   = GetArguments(constructor.GetParameters(), configuration);

            var result = constructor.Invoke(arguments);

            return(dependency.LifeCycle == LifeCycle.Singleton ? dependency.GetInstance(result) : result);
        }
Exemplo n.º 6
0
        private static object[] GetArguments(IEnumerable <ParameterInfo> parameterInfos,
                                             DependenciesConfiguration configuration)
        {
            var arguments = new List <object>();

            foreach (var parameter in parameterInfos)
            {
                if (parameter.ParameterType.IsGenericType)
                {
                    var @interface = parameter.ParameterType.GetGenericArguments()[0];
                    arguments.Add(CreateClassIEnumerable(@interface, configuration.Dependencies[@interface],
                                                         configuration));
                }
                else
                {
                    if (configuration.Dependencies.ContainsKey(parameter.ParameterType))
                    {
                        Dependency dependency = configuration.Dependencies[parameter.ParameterType][0];
                        ;

                        var attributes = (DependencyKey[])parameter.GetCustomAttributes(typeof(DependencyKey), false);
                        if (attributes.Length != 0)
                        {
                            dependency = configuration.Dependencies[parameter.ParameterType].Find(
                                dep => dep.Key == attributes[0].Key
                                );
                        }

                        arguments.Add(CreateClass(dependency, configuration));
                    }
                    else
                    {
                        arguments.Add(null);
                    }
                }
            }

            return(arguments.ToArray());
        }
 public DependencyProvider(DependenciesConfiguration dependenciesConfiguration)
 {
     this.dependenciesConfiguration = dependenciesConfiguration;
 }
Exemplo n.º 8
0
 public DependencyProvider(DependenciesConfiguration dependencies)
 {
     _dependencies = dependencies;
 }
Exemplo n.º 9
0
 public DependencyProvider(DependenciesConfiguration dependenciesConfiguration)
 {
     _dependensies = dependenciesConfiguration.Dependenсies;
 }