我想在我的颤振项目中使用 Bob Jenkins rng https://burtleburtle.net/bob/rand/isaacafa.html
这里我们有一个结构体,里面有 2 个静态缓冲区
/* context of random number generator */
struct randctx
{
ub4 randcnt;
ub4 randrsl[RANDSIZ];
ub4 randmem[RANDSIZ];
ub4 randa;
ub4 randb;
ub4 randc;
};
typedef struct randctx randctx;
现在在 dart:ffi 中,Struct 类只能有 int、double 和 Pointer 的成员,并进行适当的修饰。但是,我不能用给定的 NativeTypes 来描述这个结构。
class _Rand_context extends Struct {
@Uint32()
int counter;
Pointer<Uint32> result;
Pointer<Uint32> mem;
@Uint32()
int a;
@Uint32()
int b;
@Uint32()
int c;
}
因为ctx.result.asTypedList(256)
崩溃。所以我所做的只是将结构中的数组更改为指针并以这种方式初始化:
randctx* create_context() {
randctx* ctx = (randctx*)malloc(sizeof(randctx));
ub4* mem = (ub4*)malloc(sizeof(ub4) * RANDSIZ);
ub4* res = (ub4*)malloc(sizeof(ub4) * RANDSIZ);
ctx->randa=ctx->randb=ctx->randc=(ub4)0;
memset(res, 0, sizeof(ub4) * RANDSIZ);
memset(mem, 0, sizeof(ub4) * RANDSIZ);
ctx->randmem = mem;
ctx->randrsl = res;
randinit(ctx, TRUE);
return ctx;
}
这可以通过asTypedList
但我不熟悉 GC 如何处理结构,我担心 mem 和 result 不会被释放。是这样吗?或者我应该怎么做?