gpt4 book ai didi

c# - WinRT 和持久化结构与字节数组?

转载 作者:太空狗 更新时间:2023-10-29 21:55:24 24 4
gpt4 key购买 nike

使用 .NET 4.0,我可以通过使用 Marshal 类快速将结构与字节数组相互转换。例如,下面的简单示例将在我的机器上以每秒大约 100 万次的速度运行,这对于我的目的来说已经足够快了......

    [StructLayout(LayoutKind.Sequential)]
public struct ExampleStruct
{
int i1;
int i2;
}

public byte[] StructToBytes()
{
ExampleStruct inst = new ExampleStruct();

int len = Marshal.SizeOf(inst);
byte[] arr = new byte[len];
IntPtr ptr = Marshal.AllocHGlobal(len);
Marshal.StructureToPtr(inst, ptr, true);
Marshal.Copy(ptr, arr, 0, len);
Marshal.FreeHGlobal(ptr);

return arr;
}

但 Marshal 类在 WinRT 下不可用,出于安全原因,这很合理,但这意味着我需要另一种方法来实现我的结构到/从字节数组。

我正在寻找一种适用于任何固定大小结构的方法。我可以通过为每个知道如何将该特定结构转换为字节数组并形成字节数组的结构编写自定义代码来解决这个问题,但这相当乏味,我忍不住觉得有一些通用的解决方案。

最佳答案

一种方法是结合使用表达式和反射(我将缓存作为实现细节):

// Action for a given struct that writes each field to a BinaryWriter
static Action<BinaryWriter, T> CreateWriter<T>()
{
// TODO: cache/validate T is a "simple" struct

var bw = Expression.Parameter(typeof(BinaryWriter), "bw");
var obj = Expression.Parameter(typeof(T), "value");

// I could not determine if .Net for Metro had BlockExpression or not
// and if it does not you'll need a shim that returns a dummy value
// to compose with addition or boolean operations
var body = Expression.Block(
from f in typeof(T).GetTypeInfo().DeclaredFields
select Expression.Call(
bw,
"Write",
Type.EmptyTypes, // Not a generic method
new[] { Expression.Field(obj, f.Name) }));

var action = Expression.Lambda<Action<BinaryWriter, T>>(
body,
new[] { bw, obj });

return action.Compile();
}

这样使用:

public static byte[] GetBytes<T>(T value)
{
// TODO: validation and caching as necessary
var writer = CreateWriter(value);
var memory = new MemoryStream();
writer(new BinaryWriter(memory), value);
return memory.ToArray();
}

回读这段话,有点复杂:

static MethodInfo[] readers = typeof(BinaryReader).GetTypeInfo()
.DeclaredMethods
.Where(m => m.Name.StartsWith("Read") && !m.GetParameters().Any())
.ToArray();

// Action for a given struct that reads each field from a BinaryReader
static Func<BinaryReader, T> CreateReader<T>()
{
// TODO: cache/validate T is a "simple" struct

var br = Expression.Parameter(typeof(BinaryReader), "br");

var info = typeof(T).GetTypeInfo();

var body = Expression.MemberInit(
Expression.New(typeof(T)),
from f in info.DeclaredFields
select Expression.Bind(
f,
Expression.Call(
br,
readers.Single(m => m.ReturnType == f.FieldType),
Type.EmptyTypes, // Not a generic method
new Expression[0]));

var function = Expression.Lambda<Func<BinaryReader, T>>(
body,
new[] { br });

return function.Compile();
}

关于c# - WinRT 和持久化结构与字节数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7682597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com