Кто-нибудь знает быстрый способ получить пользовательские атрибуты для значения enum?

Это, вероятно, лучше всего показано на примере. У меня есть перечисление с атрибутами:

public enum MyEnum {

    [CustomInfo("This is a custom attrib")]
    None = 0,

    [CustomInfo("This is another attrib")]
    ValueA,

    [CustomInfo("This has an extra flag", AllowSomething = true)]
    ValueB,
}

Я хочу получить эти атрибуты из экземпляра:

public CustomInfoAttribute GetInfo( MyEnum enumInput ) {

    Type typeOfEnum = enumInput.GetType(); //this will be typeof( MyEnum )

    //here is the problem, GetField takes a string
    // the .ToString() on enums is very slow
    FieldInfo fi = typeOfEnum.GetField( enumInput.ToString() );

    //get the attribute from the field
    return fi.GetCustomAttributes( typeof( CustomInfoAttribute  ), false ).
        FirstOrDefault()        //Linq method to get first or null
        as CustomInfoAttribute; //use as operator to convert
}

Поскольку это использование отражения, я ожидаю некоторую медлительность, но кажется бесполезным преобразовать значение перечисления в строку (которая отражает имя), когда у меня уже есть экземпляр.

Есть ли у кого лучший способ?

Ответ 1

Это, наверное, самый простой способ.

Более быстрый способ - это Static Emit IL-код с использованием Dynamic Method и ILGenerator. Хотя я использовал это только для GetPropertyInfo, но не могу понять, почему вы также не могли генерировать CustomAttributeInfo.

Например, код для извлечения геттера из свойства

public delegate object FastPropertyGetHandler(object target);    

private static void EmitBoxIfNeeded(ILGenerator ilGenerator, System.Type type)
{
    if (type.IsValueType)
    {
        ilGenerator.Emit(OpCodes.Box, type);
    }
}

public static FastPropertyGetHandler GetPropertyGetter(PropertyInfo propInfo)
{
    // generates a dynamic method to generate a FastPropertyGetHandler delegate
    DynamicMethod dynamicMethod =
        new DynamicMethod(
            string.Empty, 
            typeof (object), 
            new Type[] { typeof (object) },
            propInfo.DeclaringType.Module);

    ILGenerator ilGenerator = dynamicMethod.GetILGenerator();
    // loads the object into the stack
    ilGenerator.Emit(OpCodes.Ldarg_0);
    // calls the getter
    ilGenerator.EmitCall(OpCodes.Callvirt, propInfo.GetGetMethod(), null);
    // creates code for handling the return value
    EmitBoxIfNeeded(ilGenerator, propInfo.PropertyType);
    // returns the value to the caller
    ilGenerator.Emit(OpCodes.Ret);
    // converts the DynamicMethod to a FastPropertyGetHandler delegate
    // to get the property
    FastPropertyGetHandler getter =
        (FastPropertyGetHandler) 
        dynamicMethod.CreateDelegate(typeof(FastPropertyGetHandler));


    return getter;
}

Ответ 2

Я обычно считаю, что отражение довольно быстрое, если вы не динамически вызываете методы.
Поскольку вы просто читаете атрибуты перечисления, ваш подход должен работать отлично, без какого-либо реального повышения производительности.

И помните, что вы, как правило, должны стараться, чтобы все было понятным. По сравнению с этим, чтобы получить несколько мс, возможно, не стоит того.