寻找一种快速简便的方法来合并POCO上的所有属性

本文关键字:合并 方法 POCO 属性 一种 寻找 | 更新日期: 2023-09-27 18:08:41

我有一些普通的旧类,具有一堆简单的属性(简单的{get; set;}声明)。所有的属性都是可空的(或者等价的,引用类型)。

例如:

class POCO
{
  int? Field1 { get; set; }
  string Field2 { get; set; }
  ... etc ...
}

我有一个场景,我正在构建这些poco零碎,最后我想得到一个与所有非空字段。

一些说明性代码:
POCO o1 = LoadFields1To3();
POCO o2 = LoadFields4To5();
POCO o3 = LoadFields6To9();
... etc ...

之所以出现这种情况,是因为有些字段是从SQL(有时是不同的查询)加载的,而有些字段是从内存数据结构加载的。我在这里重用POCO类型是为了避免一堆无意义的类(静态类型对Dapper非常有用,而且只是在一般情况下)。

我正在寻找的是一种很好的方法,将这些对象的属性合并成一个具有非空属性的单一属性。

类似:

POCO final = o1.UnionProperties(o2).UnionProperties(o3) // and so on

我能够保证在多个对象上没有字段是非空的。虽然我假设解决方案将采用最左边的非空字段,但实际上没有必要。

我知道我可以写一些反射代码来做到这一点,但它有点讨厌和缓慢。

这确实需要是通用的,因为虽然我从来没有打算合并不同类型的对象,但是这个方法将适用于非常多的类型。

我想知道是否有一些更聪明的方法,也许

ab使用动态?

寻找一种快速简便的方法来合并POCO上的所有属性

我想(好吧,我问过你)这里的关键目标是:

  • 性能(反射似乎太慢)
  • 低维护(想要避免非常手工的复制方法,或复杂的属性)

下面的代码使用元编程在运行时做任何它能做的事情,将自己编译成一个类型委托(Action<POCO, POCO>),以便有效地重用:

using System;
using System.Collections.Generic;
using System.Reflection.Emit;
public class SamplePoco
{
    public int? Field1 { get; set; }
    public string Field2 { get; set; }
    // lots and lots more properties here
}
static class Program
{
    static void Main()
    {
        var obj1 = new SamplePoco { Field1 = 123 };
        var obj2 = new SamplePoco { Field2 = "abc" };
        var merged = Merger.Merge(obj1, obj2);
        Console.WriteLine(merged.Field1);
        Console.WriteLine(merged.Field2);
    }
}
static class Merger
{
    public static T Merge<T>(params T[] sources) where T : class, new()
    {
        var merge = MergerImpl<T>.merge;
        var obj = new T();
        for (int i = 0; i < sources.Length; i++) merge(sources[i], obj);
        return obj;
    }
    static class MergerImpl<T> where T : class, new()
    {
        internal static readonly Action<T, T> merge;
        static MergerImpl()
        {
            var method = new DynamicMethod("Merge", null, new[] { typeof(T), typeof(T) }, typeof(T));
            var il = method.GetILGenerator();
            Dictionary<Type, LocalBuilder> locals = new Dictionary<Type, LocalBuilder>();
            foreach (var prop in typeof(T).GetProperties())
            {
                var propType = prop.PropertyType;
                if (propType.IsValueType && Nullable.GetUnderlyingType(propType) == null)
                {
                    continue; // int, instead of int? etc - skip
                }
                il.Emit(OpCodes.Ldarg_1); // [target]
                il.Emit(OpCodes.Ldarg_0); // [target][source]
                il.EmitCall(OpCodes.Callvirt, prop.GetGetMethod(), null); // [target][value]
                il.Emit(OpCodes.Dup); // [target][value][value]
                Label nonNull = il.DefineLabel(), end = il.DefineLabel();
                if (propType.IsValueType)
                { // int? etc - Nullable<T> - hit .Value
                    LocalBuilder local;
                    if (!locals.TryGetValue(propType, out local))
                    {
                        local = il.DeclareLocal(propType);
                        locals.Add(propType, local);
                    }
                    // need a ref to use it for the static-call
                    il.Emit(OpCodes.Stloc, local); // [target][value]
                    il.Emit(OpCodes.Ldloca, local); // [target][value][value*]
                    var hasValue = propType.GetProperty("HasValue").GetGetMethod();
                    il.EmitCall(OpCodes.Call, hasValue, null); // [target][value][value.HasValue]
                }
                il.Emit(OpCodes.Brtrue_S, nonNull); // [target][value]
                il.Emit(OpCodes.Pop); // [target]
                il.Emit(OpCodes.Pop); // nix
                il.Emit(OpCodes.Br_S, end); // nix
                il.MarkLabel(nonNull); // (incoming) [target][value]
                il.EmitCall(OpCodes.Callvirt, prop.GetSetMethod(), null); // nix
                il.MarkLabel(end); // (incoming) nix
            }
            il.Emit(OpCodes.Ret);
            merge = (Action<T, T>)method.CreateDelegate(typeof(Action<T, T>));
        }
    }
}