- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我希望能够在具有 REPR CStruct/CPointer 的类中使用双指针:
typedef struct CipherContext {
void *cipher;
const uint8_t *key;
size_t key_len;
const uint8_t *path;
size_t path_len;
size_t block_size;
void *handle;
int (*cipher_init)(void **, const uint8_t *, size_t);
int (*cipher_encode)(void *, const uint8_t *, uint8_t *, size_t);
int (*cipher_decode)(void *, const uint8_t *, uint8_t *, size_t);
void (*cipher_free)(void *);
const uint8_t *(*cipher_strerror)(int);
} CipherContext;
int cipher_context_init(CipherContext **, const uint8_t *, size_t, const uint8_t *, size_t, size_t);
int cipher_context_encode(CipherContext *, const uint8_t *, uint8_t *, size_t);
int cipher_context_decode(CipherContext *, const uint8_t *, uint8_t *, size_t);
void cipher_context_free(CipherContext *);
const uint8_t *cipher_context_strerror(int);
Perl 6 代码:
method new(Blob :$key!, Str :$path!, Int :$block-size!) {
my Pointer[::?CLASS] $ptr .= new;
my Int $err = cipher_context_init($ptr, $key, $key.elems, $path, $path.codes, $block-size);
return $ptr.deref unless $err;
my Str $errstr = cipher_context_strerror($err) || do {
my &cipher-strerror = nativecast(:(int32 --> Str), $!cipher-strerror);
cipher-strerror($err)
};
die "Failed to initialize cipher context: $errstr";
}
submethod DESTROY() {
cipher_context_free(self)
}
短距离高尔夫:
use v6.d;
use Nativecall;
class Foo is repr('CPointer') {
my Pointer[::?CLASS] $foo .= nw;
}
只是由于 bug in Rakudo,我不知道该怎么做.有没有更好的方法可以处理代码的 C 部分中的错误(这就是我这样写的原因)?
最佳答案
失败的原因与失败的原因相同:
class Foo {...}
BEGIN Foo ~~ Bool; # <------
class Foo{
}
部分问题似乎是 Foo
在调用 Pointer.^parameterize
方法时尚未组合。
所以它还不是 Any
的子类型。 (甚至 Mu
)
解决方法是在使用 Pointer[::?CLASS]
之前,在 BEGIN
移相器中添加一个 .^compose
调用。
class Foo is repr('CPointer') {
BEGIN ::?CLASS.^compose;
my Pointer[::?CLASS] $foo .= new;
}
我的猜测是,真正的解决方法是将 Bool.ACCEPTS(Bool:U:\topic)
候选更改为 Bool.ACCEPTS(Bool:U: Mu\topic)
。
我认为这是因为这也失败了,错误基本相同:
Mu ~~ Bool
关于c - 如何使用 NativeCall 缓解 Rakudo 中的错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54542286/
我正在尝试为 Cgraph 创建 Perl6 绑定(bind),其中一个结构为其某些属性设置了位字段,其值低于 8。我应该如何在我的模块中表示它? 我尝试使用 is nativesize(x) 定义自
我目前正在尝试使用 Java 中的 NTX 索引访问 DBF。我有一个多年前的 Artemis 引擎(现在的 ApolloDB)的副本,它可以在 VB6 中执行此操作。它使用 3 个 DLL,主要是
我有两个库,我想调用第一个库中的例程,然后它们调用第二个库中的例程,但由于这些符号未定义而崩溃。即使我不想调用它们,是否可以从库 XX 中说“加载这些符号”? teSTLib1.c: #include
我在 Buf 中有一大块内存我想传递给 C 库,但该库将使用超出单个调用生命周期的内存。 我知道这可能会有问题,因为垃圾收集器可以移动内存。 用于传递 Str , Nativecall docs 说“
我正在为 Editline 编写绑定(bind);它的功能之一, history ,为库的这一部分完成大部分工作,但有几个可能的签名: :(Pointer[Internal], Pointer[Eve
软呢帽 33 乐 我正在尝试使用 Raku 的 NativeCall 与 libX11.so 对话以打印出我的屏幕和显示: use NativeCall; class Display is repr(
https://docs.perl6.org/language/nativecall "As you may have predicted by now, a NULL pointer is re
我有一个第三方 C 库,它定义了类似于以下内容的结构: struct myStruct { int a; int b; char str1[32]; char str2[32]; };
试图与一个 C 库接口(interface),该库采用一个结构,该结构带有一堆指向它在各个点调用的函数的指针。 像这样的东西: struct callbacks { int (*foo)(in
Perl 6 docs列出一堆类型。其中一些,例如 Str ,有更复杂的装箱/拆箱行为。 是否可以定义我自己的类型,指定我自己的装箱/拆箱例程?对于一个特定的项目,我有一堆我正在重用的类型,并且基本上
我正在尝试使用 NativeCall 与一些 C 函数交互。 对于一种情况,我需要传入由函数,因此它需要一个指向指针“void **”的指针。 我尝试过这样的: class Foo { has
我正在尝试使用 NativeCall 与一些 C 函数交互。 我有一个简单的 C 结构体和一个需要它们数组的函数。 struct foo { int x; char *s; }; st
我正在尝试移植 this code到 Perl6。虽然我可以调用 GetStdHandle、GetConsoleMode 和 SetConsoleMode,但当我尝试调用 ReadConsoleInp
有没有一种方便的方法来处理在不同平台上可能具有不同值的 C typedef? 例如 #if defined(_WIN32) #define foo_t int32_t #elif define
我希望能够在具有 REPR CStruct/CPointer 的类中使用双指针: typedef struct CipherContext { void *cipher;
在 Windows 和 Linux 上使用 NativeCall 为 C 库发布 Perl 6 绑定(bind)的最佳策略是什么? 开发者是否需要同时编译.dll和.so文件并用perl6代码上传到g
我正在使用 NativeCall 来熟悉 Perl6 的那一面。当然,我想先加载 libstatgrab(还有什么?)。 所以我从最简单的部分开始——主机信息。由于还没有集群支持,这只是一个结果——不
我正在使用 NativeCall 接口(interface)。 该库将多次调用我的回调函数。 这很好用。我可以用正确的方式声明我的回调 签名,将其作为 &callback 传递,库只调用 sub 美好
这些代码片段可能看起来很奇怪,这是因为我从我的原始代码开始并切断了部分,直到我到达重现错误的最小指令集。所以忍受表面上的无用。 perl6模块有两个,一个use s另一个,和一个程序。 这是第一个模块
有没有办法在 CStruct 中声明一个对象数组? struct my_struct { int foo; int bar; char somestring[80]; }; c
我是一名优秀的程序员,十分优秀!