summaryrefslogtreecommitdiff
path: root/source4/pidl/lib/Parse/Pidl/Samba3/Template.pm
blob: 072aa07850366805ed15f3bb8ba8e4e75041cdc7 (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
###################################################
# Samba3 NDR client generator for IDL structures
# Copyright jelmer@samba.org 2005
# released under the GNU GPL

package Parse::Pidl::Samba3::Template;

use strict;
use Parse::Pidl::Typelist qw(hasType getType mapType);
use Parse::Pidl::Util qw(has_property ParseExpr);
use Parse::Pidl::NDR qw(GetPrevLevel GetNextLevel ContainsDeferred);

use vars qw($VERSION);
$VERSION = '0.01';

my $res;
sub pidl($) { my $x = shift; $res.="$x\n"; }

sub ParseInterface($)
{
	my $if = shift;

	foreach (@{$if->{FUNCTIONS}}) {
		my $ret = $_->{RETURN_TYPE};
		if (not $ret) { $ret = "void"; }
		pidl "$ret _$_->{NAME}(pipes_struct *p, " . uc($if->{NAME}) . "_Q_" . uc($_->{NAME}) . " *q_u, " . uc($if->{NAME}) . "_R_" . uc($_->{NAME}) . " *r_u)";
		pidl "{";
		pidl "\t/* FIXME: Implement your code here */";
		if (not defined($_->{RETURN_TYPE})) {
		} elsif ($_->{RETURN_TYPE} eq "WERROR") {
			pidl "\treturn WERR_NOT_SUPPORTED;";
		} elsif ($_->{RETURN_TYPE} eq "NTSTATUS") {
			pidl "\treturn NT_STATUS_NOT_IMPLEMENTED;";
		} elsif ($_->{RETURN_TYPE} eq "uint32") {
			pidl "\treturn 0;";
		}
		pidl "}";
		pidl "";
	}
}

sub Parse($$)
{
	my($ndr,$filename) = @_;

	$res = "";

	pidl "/*";
	pidl " * Unix SMB/CIFS implementation.";
	pidl " * template auto-generated by pidl. Modify to your needs";
	pidl " */";
	pidl "";
	pidl "#include \"includes.h\"";
	pidl "";
	pidl "#undef DBGC_CLASS";
	pidl "#define DBGC_CLASS DBGC_MSRPC";
	pidl "";
	
	foreach (@$ndr) {
		ParseInterface($_) if ($_->{TYPE} eq "INTERFACE");
	}

	return $res;
}

1;