c#:调用盒装委托



在我的项目中,我需要在几个类之间转换数据,因此我创建了一个类DataMapper,用于来自两个不同类的属性的强类型映射。当需要修改pair中的属性时,我为此存储两个委托(转换器)。

然后DataMapper有两个方法Update(T源,S目标)和Update(S源,T目标),它们使用这些映射来提供转换。

public class DataMapper<TSourceType, TTargetType> : IDataUpdater<TSourceType, TTargetType> {
    private readonly IDictionary<PropertyInfo, PropertyInfo> _sourceToTargetMap = new Dictionary<PropertyInfo, PropertyInfo>();
    private readonly IDictionary<PropertyInfo, object> _converters = new Dictionary<PropertyInfo, object>();
    public DataMapper<TSourceType, TTargetType> Map<TSourceValue, TTargetValue>(
        Expression<Func<TSourceType, TSourceValue>> sourcePropExpr,
        Expression<Func<TTargetType, TTargetValue>> targetPropExpr) 
    {
        _sourceToTargetMap.Add(sourcePropExpr.AsPropertyInfo(), targetPropExpr.AsPropertyInfo());
        return this;
    }
    public DataMapper<TSourceType, TTargetType> Map<TSourceValue, TTargetValue>(
        Expression<Func<TSourceType, TSourceValue>> sourcePropExpr,
        Expression<Func<TTargetType, TTargetValue>> targetPropExpr,
        Func<TSourceValue, TTargetValue> sourceToTargetConverter, 
        Func<TTargetValue, TSourceValue> targetToSourceConverter) 
    {
        _sourceToTargetMap.Add(sourcePropExpr.AsPropertyInfo(), targetPropExpr.AsPropertyInfo());
        _converters.Add(sourcePropExpr.AsPropertyInfo(), sourceToTargetConverter);
        _converters.Add(targetPropExpr.AsPropertyInfo(), targetToSourceConverter);
        return this;
    }
    public void Update(TSourceType source, TTargetType target) {
        foreach (var keyValuePair in _sourceToTargetMap) {
            var sourceProp = keyValuePair.Key;
            var targetProp = keyValuePair.Value;
            Update(source, target, sourceProp, targetProp);
        }
    }
    public void Update(TTargetType source, TSourceType target) {
        foreach (var keyValuePair in _sourceToTargetMap) {
            var sourceProp = keyValuePair.Value;
            var targetProp = keyValuePair.Key;
            Update(source, target, sourceProp, targetProp);
        }
    }
    private void Update(
        object source, 
        object target, 
        PropertyInfo sourceProperty, 
        PropertyInfo targetProperty) 
    {
        var sourceValue = sourceProperty.GetValue(source);
        if (_converters.ContainsKey(sourceProperty)) {
            sourceValue = typeof(InvokeHelper<,>)
                .MakeGenericType(sourceProperty.PropertyType, targetProperty.PropertyType)
                .InvokeMember("Call", BindingFlags.Static | BindingFlags.Public | BindingFlags.InvokeMethod, null, null, new[] { _converters[sourceProperty], sourceValue });
        }
        targetProperty.SetValue(target, sourceValue);
    }
}

用法如下:

public SomeClass {
    private static readonly IDataUpdater<SomeClass, SomeOtherClass> _dataMapper = new DataMapper<SomeClass, SomeOtherClass>()
        .Map(x => x.PropertyA, y => y.PropertyAA)
        .Map(x => x.PropertyB, y => y.PropertyBB, x => Helper.Encrypt(x), y => Helper.Decrypt(y));
    public string PropertyA { get; set; }
    public string PropertyB { get; set; }
    public void LoadFrom(SomeOtherClass source) {
        _dataMapper.Update(source, this);
    }
    public void SaveTo(SomeOtherClass target) {
        _dataMapper.Update(this, target);
    }
}

你可以在类DataHelper中看到更新方法的最后一个重载,当我想调用存储的转换函数时,我使用助手类InvokeHelper,因为我没有找到其他方法来调用盒装委托Func。类InvokeHelper的代码很简单——只有一个静态方法:

public static class InvokeHelper<TSource, TTarget> {
    public static TTarget Call(Func<TSource, TTarget> converter, TSource source) {
        return converter(source);
    }
}

有没有一种方法可以做到没有反射?我需要优化这些转换以提高速度。

谢谢。

您可以使用Delegate.DynamicInvoke来调用委托。或者,使用dynamic:

((dynamic)(Delegate)_converters[sourceProperty])(sourceValue);

不需要使用(Delegate)强制转换。它用于文档和运行时断言目的。如果你不喜欢,就把它删掉。

实际上,在字典中您最好使用delegate而不是object

如果是我,我会使用一些元编码和表达式来创建一个编译和强类型委托列表。当您调用Update方法时,您可以遍历列表中的每个Action,并从源更新目标。

没有反射,所有的编译等都在Update调用之前完成一次。

public class DataMapper<TSourceType, TTargetType> : IDataUpdater<TSourceType, TTargetType>
{
    List<Action<TSourceType, TTargetType>> _mappers = new List<Action<TSourceType, TTargetType>>();
    DataMapper<TTargetType, TSourceType> _reverseMapper;
    public DataMapper() : this(false) { }
    public DataMapper(bool isReverse)
    {
        if (!isReverse)
        {
            _reverseMapper = new DataMapper<TTargetType, TSourceType>(isReverse: true);
        }
    }
    public DataMapper<TSourceType, TTargetType> Map<TSourceValue, TTargetValue>(
        Expression<Func<TSourceType, TSourceValue>> sourcePropExpr,
        Expression<Func<TTargetType, TTargetValue>> targetPropExpr)
    {
        var mapExpression = Expression.Assign(targetPropExpr.Body, sourcePropExpr.Body);
        _mappers.Add(
            Expression.Lambda<Action<TSourceType, TTargetType>>(
                mapExpression,
                sourcePropExpr.Parameters[0],
                targetPropExpr.Parameters[0])
            .Compile());
        if (_reverseMapper != null) _reverseMapper.Map(targetPropExpr, sourcePropExpr);
        return this;
    }
    public DataMapper<TSourceType, TTargetType> Map<TSourceValue, TTargetValue>(
        Expression<Func<TSourceType, TSourceValue>> sourcePropExpr,
        Expression<Func<TTargetType, TTargetValue>> targetPropExpr,
        Func<TSourceValue, TTargetValue> sourceToTargetConverter,
        Func<TTargetValue, TSourceValue> targetToSourceConverter)
    {
        var convertedSourceExpression = Expression.Invoke(Expression.Constant(sourceToTargetConverter), sourcePropExpr.Body);
        var mapExpression = Expression.Assign(targetPropExpr.Body, convertedSourceExpression);
        _mappers.Add(
            Expression.Lambda<Action<TSourceType, TTargetType>>(
                mapExpression,
                sourcePropExpr.Parameters[0],
                targetPropExpr.Parameters[0])
            .Compile());
        if (_reverseMapper != null) _reverseMapper.Map(targetPropExpr, sourcePropExpr, targetToSourceConverter, sourceToTargetConverter);
        return this;
    }
    public void Update(TSourceType source, TTargetType target)
    {
        foreach (var mapper in _mappers)
        {
            mapper(source, target);
        }
    }
    public void Update(TTargetType source, TSourceType target)
    {
        if (_reverseMapper != null)
        {
            _reverseMapper.Update(source, target);
        }
        else
        {
            throw new Exception("Reverse mapper is null.  Did you reverse twice?");
        };
    }
}

表达式是通过接受传入的表达式并将它们用作新表达式的组成部分来构建的。

假设你呼叫了.Map(x => x.PropertyA, y => y.PropertyAA)。现在有2个表达式,每个表达式都有一个参数xy,每个表达式都有一个主体x.PropertyAy.PropertyAA

现在您想将这些表达式部分重新组装成一个赋值表达式,如y.PropertyAA = x.PropertyA。这是在var mapExpression = Expression.Assign(targetPropExpr.Body, sourcePropExpr.Body);行中完成的,它给了您一个期望的表达式。

现在当你调用表达式。Lambda,您将参数(x, y)合并到一个类似(x,y) = > y.PropertyAA = x.PropertyA的新表达式中。

在执行它之前,需要编译它,因此需要编译.Compile()。但是,由于只需要对任何给定的映射编译一次,因此可以编译并存储结果。未编译表达式的类型为Expression<Action<TSourceType,TTargetType>>,编译后的结果类型为Action<TSourceType,TTargetType>

相关内容

  • 没有找到相关文章

最新更新