-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenwrap.pl
387 lines (375 loc) · 15.5 KB
/
genwrap.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
use strict;
use warnings;
use FindBin qw($Bin);
use File::Spec::Functions;
use PDL::Types;
use PDL::Core qw/howbig/;
use Config;
require ''. catfile $Bin, 'genpp.pl';
our (%type_overrides, %type_alias, %STAYWRAPPED, $INT_PDLTYPE, %REALCTYPE2PDLTYPE);
my %GLOBALTYPES = do { no warnings 'once'; (%PP::OpenCV::DIMTYPES, map +($_=>[]), keys %STAYWRAPPED) };
my @PDLTYPES_SUPPORTED = grep $_->real && $_->ppsym !~/[KPQNE]/ && howbig($_) <= 8, PDL::Types::types;
my %VECTORTYPES = (%GLOBALTYPES, map +($_=>[]), qw(int float double char uchar));
my $wrap_re = qr/^(?:(?!String)[A-Z]|vector_)/;
my %extra_cons_args = (
String => [['const char*', 'str']],
);
my %constructor_override = (
String => "str ? cv::String(str) : cv::String()"
);
my $CHEADER = <<'EOF';
#include "opencv_wrapper.h"
/* use C name mangling */
extern "C" {
EOF
my $CBODY_GLOBAL = <<EOF;
cw_error cw_Mat_newWithDims(MatWrapper **cw_retval, const ptrdiff_t planes, const ptrdiff_t cols, const ptrdiff_t rows, const int type, void * data) {
TRY_WRAP(
char isempty = (planes * cols * rows) == 0;
if (!isempty && !data) throw std::invalid_argument("NULL data passed to cw_Mat_newWithDims");
(*cw_retval = new MatWrapper)->held = isempty ? cv::Mat() : /* no check type as upgrade */
cv::Mat(rows, cols, get_ocvtype(type,planes), data);
)
}
cw_error cw_Mat_pdlDims(MatWrapper *wrapper, int *t, ptrdiff_t *l, ptrdiff_t *c, ptrdiff_t *r) {
TRY_WRAP(
*t = get_pdltype(wrapper->held.type());
*l = wrapper->held.channels();
*c = wrapper->held.cols;
*r = wrapper->held.rows;
)
}
cw_error cw_Mat_copyDataTo(MatWrapper *self, void *data, ptrdiff_t bytes) {
ptrdiff_t shouldbe = self->held.elemSize() * self->held.cols * self->held.rows;
SHOULDBE_CHECK(bytes, shouldbe)
TRY_WRAP( memmove(data, self->held.ptr(), bytes); )
}
cw_error cw_String_c_str(const char **ptr, StringWrapper *self) {
TRY_WRAP( *ptr = self->held.c_str(); )
}
EOF
my $CFOOTER = "}\n";
my $HHEADER = <<'EOF';
#ifndef %1$s_H
#define %1$s_H
#ifdef __cplusplus
extern "C" {
#endif
EOF
my $HTOP_GLOBAL = <<'EOF';
#include <stddef.h>
/* can't directly include pdl.h so copy-paste and modify names: */
typedef enum {
CW_ENONE = 0, /* usable as boolean */
CW_EUSERERROR, /* user error, no need to destroy */
CW_EFATAL
} cw_error_type;
typedef struct {
cw_error_type error;
const char *message; /* if error but this NULL, parsing/alloc error */
char needs_free;
} cw_error;
#define TRY_WRAP(...) \
cw_error CW_err = {CW_ENONE, NULL, 0}; \
try { \
__VA_ARGS__ \
} catch (const std::exception& e) { \
CW_err = {CW_EUSERERROR,strdup(e.what()),1}; \
} \
return CW_err;
#define SHOULDBE_CHECK(got, expected) \
if (got != expected) { \
char buf[100]; \
snprintf(buf, sizeof(buf), "copyDataTo: wrong number of bytes passed; expected %td, passed %td", expected, got); \
return {CW_EUSERERROR,strdup(buf),1}; \
}
EOF
my $HBODY_GLOBAL = <<'EOF';
cw_error cw_Mat_pdlDims(MatWrapper *wrapper, int *t, ptrdiff_t *l, ptrdiff_t *c, ptrdiff_t *r);
cw_error cw_Mat_newWithDims(MatWrapper **cw_retval, const ptrdiff_t planes, const ptrdiff_t cols, const ptrdiff_t rows, const int type, void * data);
cw_error cw_Mat_copyDataTo(MatWrapper *self, void *data, ptrdiff_t bytes);
cw_error cw_String_c_str(const char **ptr, StringWrapper *self);
EOF
my $HFOOTER = <<'EOF';
#ifdef __cplusplus
}
#endif
#endif
EOF
sub gen_gettype {
my @specs = map [
$_->numval, $_->integer ? ($_->unsigned ? 'U' : 'S') : 'F', 8*howbig($_)
], @PDLTYPES_SUPPORTED;
<<EOF;
int get_pdltype(const int cvtype) {
switch (CV_MAT_DEPTH(cvtype)) {
@{[join "\n ", map "case CV_$_->[2]$_->[1]: return $_->[0]; break;", @specs]}
}
return -1;
}
int get_ocvtype(const int datatype,const int planes) {
switch (datatype) {
@{[join "\n ", map "case $_->[0]: return CV_$_->[2]$_->[1]C(planes); break;", @specs]}
}
return -1;
}
EOF
}
sub maybe_wrap {
my ($flag, $wrapping, $to_wrap) = @_;
!$flag ? $to_wrap : join('', map "$_<", @$wrapping).$to_wrap.(">"x@$wrapping)
}
sub code_type {
my ($intype, $v) = @_;
my $intype_orig = $intype;
my $is_vector = (my $no_vector = $intype) =~ s/vector_//g;
my $cpptype = $no_vector eq 'StringWrapper*' || $no_vector eq 'String' ? 'cv::String' : $no_vector;
$cpptype = qq{cv::$cpptype} if $cpptype =~ $wrap_re;
$cpptype = maybe_wrap($is_vector, [("std::vector")x$is_vector], $cpptype);
my $was_ptr = $intype =~ $wrap_re ? ($intype =~ s/\s*\*+$// || $intype =~ s/^Ptr_//) : 0;
$cpptype = maybe_wrap($was_ptr, ["cv::Ptr"], $cpptype);
$intype = $type_overrides{$intype}[1] if $type_overrides{$intype};
$intype = ('vector_'x$is_vector).$type_alias{$no_vector} if $is_vector and $type_alias{$no_vector};
my $nowrapper = $intype;
$intype .= "Wrapper*" if $intype =~ $wrap_re;
my $no_ptr = $is_vector || $PP::OpenCV::DIMTYPES{$nowrapper} || $STAYWRAPPED{$nowrapper};
$intype = "$intype *" if $was_ptr and $intype !~ $wrap_re;
my $cpp_input = $intype eq 'StringWrapper*' ? "$v->held" :
$nowrapper =~ $wrap_re ? ($was_ptr ? '&' : '')."$v->held".(
$no_ptr ? "" : "[0]"
) : $v;
if ($intype_orig =~ /[A-Z]/ and ($type_alias{$intype_orig}//'') eq 'int') {
(my $colons = $intype_orig) =~ s/_/::/g;
$cpp_input = "static_cast<cv::$colons>($v)"; # enums
}
$cpp_input = "static_cast<bool>($v)" if $intype_orig eq 'bool'; # help C++ pick which polymorphism to call
($no_ptr, $intype, $cpptype, $cpp_input, $nowrapper);
}
sub gen_code {
my ($ptr_only, $class, $name, $doc, $ismethod, $ret, @params) = @_;
$name = [!$ismethod ? join('::', grep length, "cv", $class, $name) : $name, $name] if !ref $name;
my ($in_name, $out_name) = @$name;
die "No class given for '$name' method='$ismethod'" if !$class and $ismethod;
$ret = $type_overrides{$ret}[1] if $type_overrides{$ret};
my ($no_ptr, $func_ret, $cpptype, undef, $nowrapper) = code_type($ret, 'ret');
my $after_ret = $ret eq 'StringWrapper*' ? " CW_err = cw_String_new(cw_retval, NULL, cpp_retval.c_str()); if (CW_err.error) return CW_err;\n" :
$ret =~ $wrap_re ? " (*cw_retval = new ${nowrapper}Wrapper)->held = ".(
$no_ptr ? "cpp_retval" : "cv::Ptr<$cpptype>(new $cpptype(cpp_retval))"
).";\n" : '';
my $cpp_ret = $ret eq 'void' ? '' :
($ret eq 'StringWrapper*' || $ret =~ $wrap_re) ? "$cpptype cpp_retval = " :
"*cw_retval = ";
die "Error: '$out_name' no return type from '$ret'".do {require Data::Dumper; Data::Dumper::Dumper(\@_)} if $ret ne 'void' and !$func_ret;
my @input_args = $ret ne 'void' ? "$func_ret*cw_retval" : ();
push @input_args, "${class}Wrapper *self" if $ismethod;
push @input_args, map +(code_type(@$_))[1]." $_->[1]", map ref() eq 'REF' ? $$_ : $_, @params;
my $fname = join '_', grep length, 'cw', $class, $out_name;
my $str = "cw_error $fname(" . join(", ", @input_args) . ")";
my $hstr = $str.";\n";
$str .= " {\n";
$str .= " TRY_WRAP(\n";
$str .= " if (!cw_retval) throw std::invalid_argument(\"NULL retval pointer passed to ${class}::$out_name\");\n" if $ret ne 'void';
$str .= " $cpp_ret";
if (ref $in_name) { $str .= "$$in_name;\n" } else {
$str .= !$ismethod ? $in_name : "self->held->$in_name";
$str .= "(".join(', ', map +(code_type(@$_))[3], grep ref() ne 'REF', @params).");\n";
}
$str .= $after_ret;
$str .= " )\n";
$str .= "}\n\n";
return ($hstr,$str);
}
sub gen_wrapper {
my ($ptr_only, $cons_func, $cons_info, $class, $is_vector, @fields) = @_;
my $vector_str = 'vector_' x $is_vector;
my $vector2_str = $is_vector > 1 ? 'vector_' x ($is_vector-1) : '';
my $wrapper = "$vector_str${class}Wrapper";
my $need_cv = @fields || $STAYWRAPPED{$class};
my $vector_class = maybe_wrap($is_vector, [("std::vector")x$is_vector], ($need_cv ? qq{cv::$class} : $class));
my %tdecls_all = (
dim0 => qq{ptrdiff_t cw_$vector_str${class}_dim0()},
pdlt => qq{int cw_$vector_str${class}_pdltype()},
);
my $hstr = <<EOF . join '', map "$_;\n", @tdecls_all{sort keys %tdecls_all};
#ifdef __cplusplus
struct $wrapper {
@{[
$is_vector ? $vector_class :
maybe_wrap(!$need_cv, ["cv::Ptr"], qq{cv::$class})
]} held;
};
#endif
EOF
my $cstr = <<EOF;
$tdecls_all{dim0} { return @{[0+@fields]}; }
$tdecls_all{pdlt} { return @{[
@fields ? eval {$REALCTYPE2PDLTYPE{$fields[0][0]}->numval} // die "Unknown ctype '$fields[0][0]' for '$class'" :
eval {$REALCTYPE2PDLTYPE{$type_overrides{$class} ? $type_overrides{$class}[1] : $class}->numval} // '-1'
]}; }
EOF
if ($is_vector || defined $cons_func) {
my $no_ptr = $is_vector || $need_cv;
my $dest_decl = "void cw_$vector_str${class}_DESTROY($wrapper *wrapper)";
$hstr .= "$dest_decl;\n";
$cstr .= qq{$dest_decl { @{[$no_ptr ? "" : "if (wrapper->held) delete wrapper->held; "]}delete wrapper; }\n};
my $use_override = $constructor_override{$class} && !$is_vector;
my $func_suffix = 0;
for my $extra_args ($is_vector ? [] : map $_->[0], @$cons_info) {
my $new_decl = qq{cw_error cw_$vector_str${class}_new@{[$func_suffix++ ? $func_suffix : '']}($wrapper **cw_retval, char *klass@{[
join '', map ", ".(code_type(@$_))[1]." $_->[1]", @$extra_args
]})};
$hstr .= "$new_decl;\n";
$cstr .= "$new_decl {\n TRY_WRAP(";
$cstr .= $no_ptr && !$use_override && !@$extra_args ? " *cw_retval = new $wrapper;" :
"\n (*cw_retval = new $wrapper)->held = ".
($use_override ? "$constructor_override{$class};\n" :
maybe_wrap(!$no_ptr && !$ptr_only, ["cv::makePtr"], $cons_func).
"(@{[ join ', ', map +(code_type(@$_))[3], @$extra_args ]});\n");
$cstr .= " )\n}\n";
}
}
if ($is_vector) {
my $underlying_type = $is_vector > 1 ? "$vector2_str${class}Wrapper*" :
@fields ? $fields[0][0] :
$STAYWRAPPED{$class} ? "${class}Wrapper*" :
$type_overrides{$class} ? $type_overrides{$class}[1] :
$class;
my %decls = (
nWV => qq{cw_error cw_$vector_str${class}_newWithVals($wrapper **cw_retval, $underlying_type *data, ptrdiff_t count)},
size => "cw_error cw_$vector_str${class}_size(ptrdiff_t *count, $wrapper *self)",
cDT => "cw_error cw_$vector_str${class}_copyDataTo($wrapper *self, $underlying_type *data@{[$is_vector > 1 || $STAYWRAPPED{$class} ? '' : ', ptrdiff_t bytes']})",
);
$hstr .= join '', map "$_;\n", @decls{sort keys %decls};
my $field_count = 0;
$cstr .= <<EOF;
$decls{nWV} {
TRY_WRAP(
(*cw_retval = new $wrapper)->held = $vector_class@{[
$is_vector <= 1 && !@fields && !$STAYWRAPPED{$class} ? "(data, data + count);" :
join "\n ", "(count);",
"ptrdiff_t i = 0, stride = @{[$is_vector > 1 ? 1 : 0+@fields]};",
"for (i = 0; i < count; i++)",
" (*cw_retval)->held[i] = ".($is_vector > 1 || $STAYWRAPPED{$class} ? 'data[i]->held' : "cv::$class(".join(',', map "data[i*stride + ".$field_count++."]", @fields).")").";",
]}
)
}
$decls{size} {
TRY_WRAP( *count = self->held.size(); )
}
$decls{cDT} {
ptrdiff_t i = 0, stride = @{[$is_vector > 1 ? 1 : (0+@fields) || 1]}, count = self->held.size();
@{[$is_vector > 1 || $STAYWRAPPED{$class} ? "" :
"ptrdiff_t shouldbe = sizeof($underlying_type) * stride * count;
SHOULDBE_CHECK(bytes, shouldbe)\n"
]} TRY_WRAP(
@{[$is_vector <= 1 && !@fields && !$STAYWRAPPED{$class} ? 'memmove(data, self->held.data(), bytes);' :
$STAYWRAPPED{$class} || $is_vector > 1 ? qq{for (i = 0; i < count; i++)
(data[i] = new $vector2_str${class}Wrapper)->held = self->held[i];}:
join "\n ",
do {$field_count = 0; ()},
"for (i = 0; i < count; i++) {",
(map " data[i*stride + ".$field_count++."] = self->held[i].@{[$_->[2]||$_->[1]]};", @fields),
"}",
]}
)
}
EOF
} elsif (@fields) {
my ($xhstr, $xcstr) = gen_code($ptr_only, $class, ["cv::$class", "newWithVals"], '', 0, $class, @fields);
$hstr .= $xhstr; $cstr .= $xcstr;
my %decls = (
gV => qq{cw_error cw_$vector_str${class}_getVals($wrapper *self,@{[join ',', map "$_->[0] *$_->[1]", @fields]})},
);
$hstr .= join '', map "$_;\n", @decls{sort keys %decls};
$cstr .= <<EOF;
$decls{gV} {
TRY_WRAP(
@{[join "\n ", map "*$_->[1] = self->held.@{[$_->[2]||$_->[1]]};", @fields]}
)
}
EOF
}
($hstr, $cstr);
}
sub gen_const {
my ($text, $args) = @_;
(my $funcname = $text) =~ s#cv::##;
$funcname =~ s#::#_#g;
my $t = "int cw_const_$funcname(@{[$args || '']})";
("$t;\n", "$t { return (int)$text@{[$args ? '('.join(',',map +(split ' ')[-1], split /\s*,\s*/, $args).')' : '']}; }\n");
}
sub gen_chfiles {
my ($macro, $extras, $typespecs, $vectorspecs, $cvheaders, $funclist, $consts, @params) = @_;
my $hstr = sprintf($HHEADER, $macro) . $extras->[0];
my $cstr = join '', (map "#include <opencv2/$_.hpp>\n", qw(opencv core/utility), @{$cvheaders||[]}), $extras->[2], $CHEADER;
$hstr .= join '', map join(' ', 'typedef struct', ("${_}Wrapper") x 2).";\n", sort keys %$typespecs;
$hstr .= join '', map join(' ', 'typedef struct', ("vector_${_}Wrapper") x 2).";\n", sort keys %$vectorspecs;
$hstr .= join '', map join(' ', 'typedef struct', ("vector_vector_${_}Wrapper") x 2).";\n", sort keys %$vectorspecs;
my %po;
for (sort keys %$typespecs) {
my ($fields, $po, $cf, $xa) = @{$typespecs->{$_}};
my ($xhstr, $xcstr) = gen_wrapper($po{$_} = $po, $cf, $xa||[[[]]], $_, 0, @$fields);
$hstr .= $xhstr; $cstr .= $xcstr;
}
for (sort keys %$vectorspecs) {
my ($xhstr, $xcstr) = gen_wrapper($po{$_}, undef, [], $_, 1, @{$vectorspecs->{$_}});
$hstr .= $xhstr; $cstr .= $xcstr;
($xhstr, $xcstr) = gen_wrapper($po{$_}, undef, [], $_, 2, @{$vectorspecs->{$_}});
$hstr .= $xhstr; $cstr .= $xcstr;
}
$hstr .= $extras->[1] || '';
$cstr .= $extras->[3] || '';
my %class2func2suffix;
for my $func (@{$funclist||[]}) {
my ($xhstr, $xcstr) = gen_code($po{$func->[0]}, maybe_suffix(\%class2func2suffix, @$func));
$hstr .= $xhstr; $cstr .= $xcstr;
}
for my $c (@{$consts||[]}) {
my ($xhstr, $xcstr) = gen_const(@$c);
$hstr .= $xhstr; $cstr .= $xcstr;
}
$hstr .= $HFOOTER;
$cstr .= $CFOOTER;
($hstr, $cstr);
}
sub gen_consts {
my @consts;
open my $consts, '<', 'constlist.txt' or die "constlist.txt: $!";
while (!eof $consts) {
chomp(my $line = <$consts>);
push @consts, [split /\|/, $line];
}
\@consts;
}
sub make_chfiles {
my ($filebase, @params) = @_;
my ($hstr, $cstr) = gen_chfiles(uc($filebase), @params);
writefile("$filebase.h", $hstr); writefile("$filebase.cpp", $cstr);
}
sub writefile {
my ($file, $new) = @_;
my $old = -f $file ? do { local $/; open my $fh, '<', $file or die "$file: $!"; <$fh> } : '';
return if $new eq $old;
open my $fh, ">", $file or die "cannot write $file: $!";
print $fh $new;
}
sub readclasses {
return +{} if !-f 'classes.pl';
my @classlist = do ''. catfile curdir, 'classes.pl'; die if $@;
+{map +($_->[0]=>[
[], @$_[3..5],
]), @classlist
};
}
my $filegen = $ARGV[0] || die "No file given";
my @cvheaders = grep length, split /,/, $ARGV[1]||'';
my $cons_arg = $ARGV[2] // '';
my $extras = $filegen eq 'opencv_wrapper' ? [$HTOP_GLOBAL,$HBODY_GLOBAL,"",gen_gettype().$CBODY_GLOBAL] : [qq{#include "opencv_wrapper.h"\n},"",qq{#include "wraplocal.h"\n},""];
my $localclasses = readclasses();
my $globalclasses = +{ (map +($_=>[$GLOBALTYPES{$_}, undef, "cv::$_", [[$extra_cons_args{$_}]]]), keys %GLOBALTYPES), %$localclasses };
my $typespec = $filegen eq 'opencv_wrapper' ? $globalclasses : $cons_arg eq 'nocons' ? +{} : $localclasses;
my $vectorspecs = $filegen eq 'opencv_wrapper' ? \%VECTORTYPES : +{};
my @funclist = do ''. catfile curdir, 'funclist.pl'; die if $@;
my $funclist = $filegen eq 'opencv_wrapper' ? [] : \@funclist;
my $consts = ($filegen eq 'opencv_wrapper' or $cons_arg ne 'nocons') && -f 'constlist.txt' ? gen_consts() : [];
make_chfiles($filegen, $extras, $typespec, $vectorspecs, \@cvheaders, $funclist, $consts);