mirror of
				https://github.com/esiur/esiur-dotnet.git
				synced 2025-10-31 07:51:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			197 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			197 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| /*
 | |
|  
 | |
| Copyright (c) 2020 Ahmed Kh. Zamil
 | |
| 
 | |
| Permission is hereby granted, free of charge, to any person obtaining a copy
 | |
| of this software and associated documentation files (the "Software"), to deal
 | |
| in the Software without restriction, including without limitation the rights
 | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | |
| copies of the Software, and to permit persons to whom the Software is
 | |
| furnished to do so, subject to the following conditions:
 | |
| 
 | |
| The above copyright notice and this permission notice shall be included in all
 | |
| copies or substantial portions of the Software.
 | |
| 
 | |
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | |
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | |
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | |
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | |
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | |
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 | |
| SOFTWARE.
 | |
| 
 | |
| */
 | |
| 
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Reflection;
 | |
| using System.Text;
 | |
| using Esiur.Proxy;
 | |
| using Esiur.Resource;
 | |
| using Microsoft.EntityFrameworkCore;
 | |
| using Microsoft.EntityFrameworkCore.Infrastructure;
 | |
| using Microsoft.EntityFrameworkCore.Internal;
 | |
| using Microsoft.EntityFrameworkCore.Metadata;
 | |
| using Microsoft.EntityFrameworkCore.Metadata.Builders;
 | |
| using Microsoft.EntityFrameworkCore.Metadata.Conventions;
 | |
| using Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure;
 | |
| using Microsoft.EntityFrameworkCore.Metadata.Internal;
 | |
| using Esiur.Data;
 | |
| 
 | |
| namespace Esiur.Stores.EntityCore;
 | |
| 
 | |
| public class EsiurProxyRewrite : IModelFinalizingConvention
 | |
| {
 | |
|     private static readonly MethodInfo _createInstance
 | |
| = typeof(EsiurProxyRewrite).GetTypeInfo().GetDeclaredMethod(nameof(EsiurProxyRewrite.CreateInstance));
 | |
| 
 | |
|     private readonly ConstructorBindingConvention _directBindingConvention;
 | |
| 
 | |
| 
 | |
| 
 | |
|     public static object CreateInstance(IDbContextOptions dbContextOptions,
 | |
|                                         IEntityType entityType,
 | |
|                                         object[] properties)
 | |
|     {
 | |
|         var id = properties.First();
 | |
| 
 | |
|         var options = dbContextOptions.FindExtension<EsiurExtensionOptions>();
 | |
|         var manager = options.Store.Instance.Managers.Count > 0 ? options.Store.Instance.Managers.First() : null;
 | |
| 
 | |
|         var cache = options.Store.GetById(entityType.ClrType, id);
 | |
| 
 | |
|         if (cache != null && cache.Instance != null)
 | |
|         {
 | |
|             return cache;
 | |
|         }
 | |
| 
 | |
|         if (Codec.ImplementsInterface(entityType.ClrType, typeof(IResource)))
 | |
|         {
 | |
|             // check if the object exists
 | |
|             var obj = options.Warehouse.Create(entityType.ClrType) as IResource;
 | |
|             options.Store.TypesByType[entityType.ClrType].PrimaryKey.SetValue(obj, id);
 | |
|             options.Warehouse.Put($"{options.Store.Instance.Name}/{entityType.ClrType.Name}/{id}", obj, null, 0, manager).Wait();
 | |
|             return obj;
 | |
|         }
 | |
|         else
 | |
|         {
 | |
|             // record
 | |
|             var obj = Activator.CreateInstance(entityType.ClrType);
 | |
|             options.Store.TypesByType[entityType.ClrType].PrimaryKey.SetValue(obj, id);
 | |
| 
 | |
|             return obj;
 | |
|         }
 | |
|     }
 | |
| 
 | |
| 
 | |
|     public EsiurProxyRewrite(EsiurExtensionOptions ext, ProviderConventionSetBuilderDependencies conventionSetBuilderDependencies)
 | |
|     {
 | |
|         _directBindingConvention = new ConstructorBindingConvention(conventionSetBuilderDependencies);
 | |
| 
 | |
|     }
 | |
| 
 | |
| 
 | |
|     public void ProcessModelFinalizing(IConventionModelBuilder modelBuilder, IConventionContext<IConventionModelBuilder> context)
 | |
|     {
 | |
|         foreach (var entityType in modelBuilder.Metadata.GetEntityTypes())
 | |
|         {
 | |
| 
 | |
|             if (!Codec.ImplementsInterface(entityType.ClrType, typeof(IResource)))
 | |
|                 continue;
 | |
| 
 | |
|             var proxyType = ResourceProxy.GetProxy(entityType.ClrType);
 | |
| 
 | |
|             // var ann = entityType.GetAnnotation(CoreAnnotationNames.ConstructorBinding);
 | |
| 
 | |
| #pragma warning disable EF1001 // Internal EF Core API usage.
 | |
|             var binding = ((EntityType)entityType).ConstructorBinding;// (InstantiationBinding)entityType[CoreAnnotationNames.ConstructorBinding];
 | |
| #pragma warning restore EF1001 // Internal EF Core API usage.
 | |
|             if (binding == null)
 | |
|             {
 | |
|                 _directBindingConvention.ProcessModelFinalizing(modelBuilder, context);
 | |
| 
 | |
| #pragma warning disable EF1001 // Internal EF Core API usage.
 | |
|                 binding = ((EntityType)entityType).ConstructorBinding; // (InstantiationBinding)entityType[CoreAnnotationNames.ConstructorBinding];
 | |
| #pragma warning restore EF1001 // Internal EF Core API usage.
 | |
|             }
 | |
| 
 | |
|             try
 | |
|             {
 | |
| 
 | |
|                 var key = entityType.FindPrimaryKey().Properties.First();
 | |
|                 if (key == null)
 | |
|                     continue;
 | |
| 
 | |
| 
 | |
|                 ((EntityType)entityType).SetConstructorBinding(
 | |
|                     UpdateConstructorBindings(key, proxyType),
 | |
|                     ConfigurationSource.Convention);
 | |
| 
 | |
|                 binding = ((EntityType)entityType).ServiceOnlyConstructorBinding;
 | |
|                 if (binding != null)
 | |
|                 {
 | |
|                     ((EntityType)entityType).SetServiceOnlyConstructorBinding(
 | |
|                         UpdateConstructorBindings(key, proxyType),
 | |
|                         ConfigurationSource.Convention);
 | |
|                 }
 | |
| 
 | |
| 
 | |
|                 //                entityType.SetAnnotation(
 | |
|                 //#pragma warning disable EF1001 // Internal EF Core API usage.
 | |
|                 //                        CoreAnnotationNames.ConstructorBinding,
 | |
|                 //#pragma warning restore EF1001 // Internal EF Core API usage.
 | |
|                 //                        new FactoryMethodBinding(
 | |
|                 //                        _createInstance,
 | |
|                 //                        new List<ParameterBinding>
 | |
|                 //                            {
 | |
|                 //                                new DependencyInjectionParameterBinding(typeof(IDbContextOptions), typeof(IDbContextOptions)),
 | |
|                 //                                new EntityTypeParameterBinding(),
 | |
|                 //                                //new PropertyParameterBinding(key)
 | |
|                 //                                // constructor arguments 
 | |
|                 //                                //new ObjectArrayParameterBinding(binding.ParameterBindings),
 | |
|                 //                                 //new ContextParameterBinding(typeof(DbContext)),
 | |
|                 //                                 //new ObjectArrayParameterBinding(entityType.FindPrimaryKey().Properties.Select(x=>new PropertyParameterBinding(x)).ToArray())
 | |
|                 //                                 new ObjectArrayParameterBinding(new ParameterBinding[]{
 | |
|                 //                                            new PropertyParameterBinding(key) })
 | |
|                 //                            //})
 | |
|                 //                            // new Microsoft.EntityFrameworkCore.Metadata.ObjectArrayParameterBinding(),
 | |
|                 //                            //new ObjectArrayParameterBinding() 
 | |
| 
 | |
|                 //                        },
 | |
|                 //                        proxyType));
 | |
| 
 | |
|             }
 | |
|             catch
 | |
|             {
 | |
| 
 | |
|             }
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
|         }
 | |
| 
 | |
| 
 | |
| 
 | |
|     }
 | |
| 
 | |
| 
 | |
|     private InstantiationBinding UpdateConstructorBindings(
 | |
|     IConventionProperty key,
 | |
|     Type proxyType)
 | |
|     {
 | |
|         return new FactoryMethodBinding(
 | |
|                         _createInstance,
 | |
|                         new List<ParameterBinding>
 | |
|                             {
 | |
|                                 new DependencyInjectionParameterBinding(typeof(IDbContextOptions), typeof(IDbContextOptions)),
 | |
|                                 new EntityTypeParameterBinding(),
 | |
|                                  new ObjectArrayParameterBinding(new ParameterBinding[]{
 | |
|                                             new PropertyParameterBinding((IProperty)key) })
 | |
| 
 | |
|                         },
 | |
|                         proxyType);
 | |
|     }
 | |
| }
 |