CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
Csla/Configuration/ConfigurationExtensions.cs
Go to the documentation of this file.
1#if NET462_OR_GREATER || NETSTANDARD2_0 || NET5_0_OR_GREATER
2//-----------------------------------------------------------------------
3// <copyright file="ConfigurationExtensions.cs" company="Marimer LLC">
4// Copyright (c) Marimer LLC. All rights reserved.
5// Website: https://cslanet.com
6// </copyright>
7// <summary>Implement extension methods for base .NET configuration</summary>
8//-----------------------------------------------------------------------
9using System;
10using System.Linq;
12using Csla.Runtime;
15
16namespace Csla.Configuration
17{
21 public static class ConfigurationExtensions
22 {
27 public static IServiceCollection AddCsla(this IServiceCollection services)
28 {
29 return AddCsla(services, null);
30 }
31
37 public static IServiceCollection AddCsla(this IServiceCollection services, Action<CslaOptions> options)
38 {
39 // Custom configuration
40 var cslaOptions = new CslaOptions(services);
41 options?.Invoke(cslaOptions);
42
43 // capture options object
44 services.AddScoped((p) => cslaOptions);
45
46 // ApplicationContext defaults
47 services.AddScoped<ApplicationContext>();
48 RegisterContextManager(services);
49
50 // Runtime Info defaults
51 services.TryAddScoped(typeof(IRuntimeInfo), typeof(RuntimeInfo));
52
53 cslaOptions.AddRequiredDataPortalServices();
54
55 // Default to using LocalProxy and local data portal
56 var proxyInit = services.Where(i => i.ServiceType.Equals(typeof(IDataPortalProxy))).Any();
57 if (!proxyInit)
58 {
59 cslaOptions.DataPortal((options) => options.UseLocalProxy());
60 }
61
62 return services;
63 }
64
65 private static void RegisterContextManager(IServiceCollection services)
66 {
67 services.AddScoped<Core.ApplicationContextAccessor>();
68 services.TryAddScoped(typeof(Core.IContextManagerLocal), typeof(Core.ApplicationContextManagerAsyncLocal));
69
70 var contextManagerType = typeof(Core.IContextManager);
71
72 var managerInit = services.Where(i => i.ServiceType.Equals(contextManagerType)).Any();
73 if (managerInit) return;
74
75 if (LoadContextManager(services, "Csla.Blazor.WebAssembly.ApplicationContextManager, Csla.Blazor.WebAssembly")) return;
76 if (LoadContextManager(services, "Csla.Xaml.ApplicationContextManager, Csla.Xaml")) return;
77 if (LoadContextManager(services, "Csla.Web.Mvc.ApplicationContextManager, Csla.Web.Mvc")) return;
78 if (LoadContextManager(services, "Csla.Web.ApplicationContextManager, Csla.Web")) return;
79 if (LoadContextManager(services, "Csla.Windows.Forms.ApplicationContextManager, Csla.Windows.Forms")) return;
80
81 // default to AsyncLocal context manager
82 services.AddScoped(contextManagerType, typeof(Core.ApplicationContextManager));
83 }
84
85 private static bool LoadContextManager(IServiceCollection services, string managerTypeName)
86 {
87 var managerType = Type.GetType(managerTypeName, false);
88 if (managerType != null)
89 {
90 services.AddScoped(typeof(Core.IContextManager), managerType);
91 return true;
92 }
93 return false;
94 }
95 }
96}
97#endif