3

基本的に、バイト配列内のデータをオブジェクトに逆シリアル化しようとしています。文字列を読み取るために、UTF8エンコーディングのGetStringメソッドを使用しようとしています。ここに私のコードの一部があります:

var mm = new DynamicMethod("get_value", typeof(object)
                         , new Type[] { typeof(byte[]), typeof(int), typeof(int), typeof(int) });

        var utf8 = Encoding.GetEncoding("utf-8"); //l.GetValue(null, null).GetType().GetMethod("GetString");

        var getstring = utf8.GetType().GetMethod("GetString", new Type[] { typeof(byte[]), typeof(int), typeof(int) });
       // var getString = Encoding.UTF8.GetType().GetMethod("GetString", new Type[] { typeof(byte[]), typeof(int), typeof(int) });

        var h = new EmitHelper(mm.GetILGenerator());

        var defaultCase = h.ILGenerator.DefineLabel();

        var lbs = new Label[] { h.DefineLabel(),h.DefineLabel()};

        var getInt32Method = typeof(BitConverter).GetMethod("ToInt32", new Type[] { typeof(byte[]), typeof(int) });

        //Arg0 = Byte [] , Arg1 = type, Arg2 = size, Arg3 = offset
        h
            .ldarg_1
            .@switch(lbs)
            .MarkLabel(defaultCase)
            .ldnull
            .ret();

        h
            .MarkLabel(lbs[0])
            .ldarg_0 
            .ldarg_3
            .call(getInt32Method)
            .box(typeof(int))
            .ret();

        //THis is the function that is causing problem; If i remove this function works;
        h 
            .MarkLabel(lbs[1])
            .ldarg_0 //Load array 
            .ldarg_3 //Load Offset (index)
            .ldarg_2 //Load Size (count)
            .callvirt(getstring)
            .boxIfValueType(typeof(string))
            .ret();

        return (GetValueDelegate)mm.CreateDelegate(typeof(GetValueDelegate));

このコードの外で「getstring」のメソッド署名を確認したところ、動作しました。「.boxIfAny」を削除しようとしましたが、「callvirt」ではなく「call」も使用してみました。私が理解しているように、「callvirt」は、この場合に適用されるインスタンスメソッドです。何か案は?

4

1 に答える 1

3

メソッドの呼び出しにはGetStringインスタンスが必要です。

私はあなたのコードを簡素化し、それをSSCCEにしました:

using System;
using System.Reflection.Emit;
using System.Text;

class GetStringDemo {
    public static DynamicMethod GetStringForEncoding(Encoding encoding) {

        var getstringMethod = encoding.GetType().GetMethod("GetString", 
            new Type[] { typeof(byte[]) });    
        var getStringCreator = new DynamicMethod("foo", typeof(string), 
            new Type[] { typeof(byte[]), encoding.GetType() }, typeof(void));
        ILGenerator gen = getStringCreator.GetILGenerator();

        gen.Emit(OpCodes.Ldarg_1);  // this is the instance for callvirt
        gen.Emit(OpCodes.Ldarg_0);        
        gen.Emit(OpCodes.Callvirt, getstringMethod);
        gen.Emit(OpCodes.Box, typeof(string));
        gen.Emit(OpCodes.Ret);

        return getStringCreator;
    }

    public static void Main() {

        var utf8 = Encoding.GetEncoding("utf-8");
        var method = GetStringForEncoding(utf8);
        Console.WriteLine(method.Invoke(null, new object[2] { 
            new byte[] { 0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x20,
                         0x32, 0x30, 0x31, 0x34, 0x21 }, 
            utf8 } ));
    }
}
// Output:
Hello 2014!

を呼び出す前に、実際の呼び出しターゲットをロードしますh.ldarg_0 //Load array。それがないと、実際にSystem.InvalidProgramExceptionmscorlib によってスローされます。

于 2014-01-03T12:29:33.737 に答える