我正在构建一个模块,它连接到相机,拍照,并将数据读入一个小提琴。所有这些都发生在Inline :: C命令中。使用PDL documentation中的过程,我可以创建pdl *
并将其返回。然而,相机可能无法拍照,在这种情况下,我希望按照通常的预算0
返回my $pic_pdl = $Camera->TakePicture or die "Failed to take image"
。这似乎意味着我需要使用Inline_Stack_Push
机制,但我不确定如何正确地将pdl *
转换为SV*
。另外,如果可能的话,我也希望将$!
设置为错误代码。这可以在Inline中完成吗?
答案 0 :(得分:6)
通过在typemap中找到的代码将pdl*
转换为SV。
$ cat `perl -E'use PDL::Core::Dev; say PDL_TYPEMAP'`
TYPEMAP
pdl* T_PDL
pdl * T_PDL
Logical T_IV
float T_NV
INPUT
T_PDL
$var = PDL->SvPDLV($arg)
OUTPUT
T_PDL
PDL->SetSV_PDL($arg,$var);
如果我读得对,你应该能够做到这样的事情:
SV* my_new {
pdl* p = NULL;
...
if (error) {
if (p)
free(p); /* I think */
return &PL_sv_undef;
} else {
SV* rv = newSV(0);
PDL->SetSV_PDL(rv, p);
return rv;
}
}
至于$!
,它只是C errno
的接口。只需设置errno
。
$ perl -E'use Inline C => "void f(int i) { errno = i; }"; f($ARGV[0]); say 0+$!; say $!;' 2
2
No such file or directory
$ perl -E'use Inline C => "void f(int i) { errno = i; }"; f($ARGV[0]); say 0+$!; say $!;' 3
3
No such process
$ perl -E'use Inline C => "void f(int i) { errno = i; }"; f($ARGV[0]); say 0+$!; say $!;' 4
4
Interrupted system call