summaryrefslogtreecommitdiff
path: root/source4/pidl/lib/Parse/Pidl/Samba4/SWIG.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-05-13 23:58:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:06:01 -0500
commitfde2d769eb7c63a92704135e5ce49712dd30a1ca (patch)
treebfdf0936ec58637215dd94beb893abe299e78d81 /source4/pidl/lib/Parse/Pidl/Samba4/SWIG.pm
parenta53be993aec9702ca5c9dced519b2b8d0e5ac720 (diff)
downloadsamba-fde2d769eb7c63a92704135e5ce49712dd30a1ca.tar.gz
samba-fde2d769eb7c63a92704135e5ce49712dd30a1ca.tar.bz2
samba-fde2d769eb7c63a92704135e5ce49712dd30a1ca.zip
r15591: Generate function calls correctly as well.
(This used to be commit b0439779b8eba68680cfd49ea2364affc739300e)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl/Samba4/SWIG.pm')
-rw-r--r--source4/pidl/lib/Parse/Pidl/Samba4/SWIG.pm82
1 files changed, 59 insertions, 23 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba4/SWIG.pm b/source4/pidl/lib/Parse/Pidl/Samba4/SWIG.pm
index 22061f46af..57ff007d1b 100644
--- a/source4/pidl/lib/Parse/Pidl/Samba4/SWIG.pm
+++ b/source4/pidl/lib/Parse/Pidl/Samba4/SWIG.pm
@@ -9,6 +9,7 @@ package Parse::Pidl::Samba4::SWIG;
use vars qw($VERSION);
use Parse::Pidl::Samba4 qw(DeclLong);
use Parse::Pidl::Typelist qw(mapType);
+use Parse::Pidl::Util qw(has_property);
$VERSION = '0.01';
use strict;
@@ -25,30 +26,35 @@ sub pidl($)
sub indent() { $tabs.="\t"; }
sub deindent() { $tabs = substr($tabs,0,-1); }
+sub IgnoreInterface($$)
+{
+ my ($basename,$if) = @_;
+
+ foreach (@{$if->{TYPES}}) {
+ next unless (has_property($_, "public"));
+ pidl "\%types($_->{NAME});";
+ }
+}
+
sub ParseInterface($$)
{
my ($basename,$if) = @_;
- pidl "\%{";
- pidl "struct $if->{NAME} {";
- indent;
- pidl "struct dcerpc_pipe *pipe;";
- deindent;
- pidl "};";
- pidl "%}";
+ pidl "\%inline {";
+ pidl "struct $if->{NAME} { struct dcerpc_pipe *pipe; };";
+ pidl "}";
pidl "";
-
pidl "\%extend $if->{NAME} {";
indent();
- pidl "struct $if->{NAME} *$if->{NAME} (const char *binding, struct cli_credentials *cred = NULL, TALLOC_CTX *mem_ctx = NULL, struct event_context *event = NULL)";
+ pidl "$if->{NAME} (const char *binding, struct cli_credentials *cred = NULL, TALLOC_CTX *mem_ctx = NULL, struct event_context *event = NULL)";
pidl "{";
indent;
pidl "struct $if->{NAME} *ret = talloc(mem_ctx, struct $if->{NAME});";
pidl "NTSTATUS status;";
pidl "";
- pidl "status = dcerpc_pipe_connect(mem_ctx, &ret->pipe, &dcerpc_table_$if->{NAME}, cred, event);";
+ pidl "status = dcerpc_pipe_connect(mem_ctx, &ret->pipe, binding, &dcerpc_table_$if->{NAME}, cred, event);";
pidl "if (NT_STATUS_IS_ERR(status)) {";
- pidl "\tsamba_nt_status_exception(status);";
+ pidl "\tntstatus_exception(status);";
pidl "\treturn NULL;";
pidl "}";
pidl "";
@@ -75,21 +81,38 @@ sub ParseInterface($$)
pidl "{";
indent;
pidl "struct $fn->{NAME} r;";
- my $assign = "";
- if (defined($fn->{RETURN_TYPE})) {
- pidl mapType($fn->{RETURN_TYPE}) . " ret;";
- $assign = "ret = ";
- }
+ pidl "NTSTATUS status;";
pidl "";
pidl "/* Fill r structure */";
- pidl "/* FIXME */";
+
+ foreach (@{$fn->{ELEMENTS}}) {
+ if (grep(/in/, @{$_->{DIRECTION}})) {
+ pidl "r.in.$_->{NAME} = $_->{NAME};";
+ }
+ }
+
pidl "";
- pidl $assign."dcerpc_$fn->{NAME}(self->pipe, mem_ctx, &r);";
+ pidl "status = dcerpc_$fn->{NAME}(self->pipe, mem_ctx, &r);";
+ pidl "if (NT_STATUS_IS_ERR(status)) {";
+ pidl "\tntstatus_exception(status);";
+ if (defined($fn->{RETURN_TYPE})) {
+ pidl "\treturn r.out.result;";
+ } else {
+ pidl "\treturn;";
+ }
+ pidl "}";
pidl "";
pidl "/* Set out arguments */";
- pidl "/* FIXME */";
+ foreach (@{$fn->{ELEMENTS}}) {
+ next unless (grep(/out/, @{$_->{DIRECTION}}));
+
+ pidl ("/* FIXME: $_->{NAME} [out] argument is not a pointer */") if ($_->{LEVELS}[0]->{TYPE} ne "POINTER");
+
+ pidl "*$_->{NAME} = *r.out.$_->{NAME};";
+ }
+
if (defined($fn->{RETURN_TYPE})) {
- pidl "return ret;";
+ pidl "return r.out.result;";
}
deindent;
pidl "}";
@@ -97,7 +120,7 @@ sub ParseInterface($$)
}
deindent();
- pidl "}";
+ pidl "};";
pidl "";
foreach (@{$if->{TYPES}}) {
@@ -121,10 +144,23 @@ sub Parse($$$$)
pidl "\%{";
pidl "#include \"includes.h\"";
+ pidl "#include \"auth/credentials/credentials.h\"";
pidl "#include \"$header\"";
+ pidl "#include \"$gen_header\"";
pidl "%}";
- pidl "\%include \"samba.i\"";
- pidl "\%include \"$gen_header\"";
+ pidl "\%import \"samba.i\"";
+ pidl "";
+ pidl "\%inline {";
+ pidl "void ntstatus_exception(NTSTATUS status)";
+ pidl "{";
+ pidl "\t/* FIXME */";
+ pidl "}";
+ pidl "}";
+ pidl "";
+ foreach (@$ndr) {
+ IgnoreInterface($basename, $_) if ($_->{TYPE} eq "INTERFACE");
+ }
+ pidl "";
pidl "";