blob: 4a106f61764d99504b915ece6ad4b248690541cf (
plain)
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
|
###################################################
# EJS function wrapper generator
# Copyright jelmer@samba.org 2005
# released under the GNU GPL
package EjsClient;
use strict;
use pidl::typelist;
my($res);
sub pidl ($)
{
$res .= shift;
}
sub EJSFunction($)
{
my $d = shift;
pidl "static int ejs_$d->{NAME}(struct EspRequest *ep, int argc, struct MprVar **argv)\n";
pidl "{\n";
# FIXME
pidl "\treturn 0;\n";
pidl "}\n\n";
}
#####################################################################
# parse the interface definitions
sub EJSInterface($)
{
my($interface) = shift;
my @fns = ();
foreach my $d (@{$interface->{FUNCTIONS}}) {
next if not defined($d->{OPNUM});
EJSFunction($d);
push (@fns, $d->{NAME});
}
return @fns;
}
#####################################################################
# parse a parsed IDL into a C header
sub Parse($$)
{
my($ndr,$hdr) = @_;
my @fns = ();
$res = "";
pidl "#include \"$hdr\"\n\n";
pidl "/* EJS wrapper functions auto-generated by pidl */\n\n";
foreach my $x (@{$ndr}) {
if ($x->{TYPE} eq "INTERFACE") {
push (@fns, EJSInterface($x));
}
}
pidl "void setup_ejs_functions(void)\n";
pidl "{\n";
foreach (@fns) {
pidl "\tespDefineCFunction(NULL, \"$_\", esp_$_, NULL);\n";
}
pidl "}\n";
return $res;
}
1;
|