diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-07 17:26:40 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-15 17:36:58 +0200 |
commit | 15ebda7e1b18cc29be891b1370473c8bc3acc2c6 (patch) | |
tree | 9a61d8ae9186f9428a929d51c3f94704a58975bf /source4/pidl/lib/Parse/Pidl/Samba4 | |
parent | 7b88d09d8dbb1a31e4266a39e2ff5e93dcc529c0 (diff) | |
download | samba-15ebda7e1b18cc29be891b1370473c8bc3acc2c6.tar.gz samba-15ebda7e1b18cc29be891b1370473c8bc3acc2c6.tar.bz2 samba-15ebda7e1b18cc29be891b1370473c8bc3acc2c6.zip |
Deal with interface in generated python code, clearer error message on unhandled unions.
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl/Samba4')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba4/Python.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba4/Python.pm b/source4/pidl/lib/Parse/Pidl/Samba4/Python.pm index ab67236717..b7d092015c 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba4/Python.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba4/Python.pm @@ -1025,6 +1025,9 @@ sub ConvertObjectToPythonData($$$$$) return $self->ConvertScalarToPython(Parse::Pidl::Typelist::bitmap_type_fn($actual_ctype), $cvar); } elsif ($actual_ctype->{TYPE} eq "SCALAR") { return $self->ConvertScalarToPython($actual_ctype->{NAME}, $cvar); + } elsif ($actual_ctype->{TYPE} eq "UNION") { + # FIXME: Should be fatal() rather than die() + die("union without discriminant: " . mapTypeName($ctype) . ": $cvar"); } elsif ($actual_ctype->{TYPE} eq "STRUCT" or $actual_ctype->{TYPE} eq "INTERFACE") { return "py_talloc_import_ex(&$ctype->{NAME}_Type, $mem_ctx, $cvar)"; } |