pidl: use perl warnings
[samba.git] / pidl / lib / Parse / Pidl / Samba3 / Template.pm
1 ###################################################
2 # server template function generator
3 # Copyright tridge@samba.org 2003
4 # released under the GNU GPL
5
6 package Parse::Pidl::Samba3::Template;
7
8 use vars qw($VERSION);
9 $VERSION = '0.01';
10
11 use Parse::Pidl::Util qw(genpad);
12
13 use strict;
14 use warnings;
15
16 my($res);
17
18 #####################################################################
19 # produce boilerplate code for a interface
20 sub Template($)
21 {
22         my($interface) = shift;
23         my($data) = $interface->{DATA};
24         my $name = $interface->{NAME};
25
26         $res .=
27 "/*
28    Unix SMB/CIFS implementation.
29
30    endpoint server for the $name pipe
31
32    Copyright (C) YOUR NAME HERE YEAR
33
34    This program is free software; you can redistribute it and/or modify
35    it under the terms of the GNU General Public License as published by
36    the Free Software Foundation; either version 3 of the License, or
37    (at your option) any later version.
38
39    This program is distributed in the hope that it will be useful,
40    but WITHOUT ANY WARRANTY; without even the implied warranty of
41    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
42    GNU General Public License for more details.
43
44    You should have received a copy of the GNU General Public License
45    along with this program.  If not, see <http://www.gnu.org/licenses/>.
46 */
47
48 #include \"includes.h\"
49 #include \"ntdomain.h\"
50 #include \"../librpc/gen_ndr/srv_$name.h\"
51
52 ";
53
54         foreach my $d (@{$data}) {
55                 if ($d->{TYPE} eq "FUNCTION") {
56                         my $fname = $d->{NAME};
57                         my $pad = genpad("$d->{RETURN_TYPE} _$fname");
58                         $res .=
59 "
60 /****************************************************************
61  _$fname
62 ****************************************************************/
63
64 $d->{RETURN_TYPE} _$fname(struct pipes_struct *p,
65 $pad"."struct $fname *r)
66 {
67 ";
68
69         $res .= "\tp->fault_state = DCERPC_FAULT_OP_RNG_ERROR;\n";
70         if ($d->{RETURN_TYPE} eq "NTSTATUS") {
71                 $res .= "\treturn NT_STATUS_NOT_IMPLEMENTED;\n";
72         } elsif ($d->{RETURN_TYPE} eq "WERROR") {
73                 $res .= "\treturn WERR_NOT_SUPPORTED;\n";
74         } elsif ($d->{RETURN_TYPE} eq "HRESULT") {
75                 $res .= "\treturn HRES_ERROR_NOT_SUPPORTED;\n";
76         }
77
78         $res .= "}
79
80 ";
81                 }
82         }
83 }
84
85
86 #####################################################################
87 # parse a parsed IDL structure back into an IDL file
88 sub Parse($)
89 {
90         my($idl) = shift;
91         $res = "";
92         foreach my $x (@{$idl}) {
93                 ($x->{TYPE} eq "INTERFACE") &&
94                     Template($x);
95         }
96         return $res;
97 }
98
99 1;