pidl: use perl warnings
[samba.git] / pidl / lib / Parse / Pidl / Samba4 / 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::Samba4::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 \"rpc_server/dcerpc_server.h\"
50 #include \"librpc/gen_ndr/ndr_$name.h\"
51 #include \"rpc_server/common/common.h\"
52
53 ";
54
55         foreach my $d (@{$data}) {
56                 if ($d->{TYPE} eq "FUNCTION") {
57                         my $fname = $d->{NAME};
58                         my $pad = genpad("static $d->{RETURN_TYPE} dcesrv_$fname");
59                         $res .=
60 "
61 /*
62   $fname
63 */
64
65 static $d->{RETURN_TYPE} dcesrv_$fname(struct dcesrv_call_state *dce_call,
66 $pad"."TALLOC_CTX *mem_ctx,
67 $pad"."struct $fname *r)
68 {
69 ";
70
71         if ($d->{RETURN_TYPE} eq "void") {
72                 $res .= "\tDCESRV_FAULT_VOID(DCERPC_FAULT_OP_RNG_ERROR);\n";
73         } else {
74                 $res .= "\tDCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);\n";
75         }
76
77         $res .= "}
78
79 ";
80                 }
81         }
82
83         $res .=
84 "
85 /* include the generated boilerplate */
86 #include \"librpc/gen_ndr/ndr_$name\_s.c\"
87 "
88 }
89
90
91 #####################################################################
92 # parse a parsed IDL structure back into an IDL file
93 sub Parse($)
94 {
95         my($idl) = shift;
96         $res = "";
97         foreach my $x (@{$idl}) {
98                 ($x->{TYPE} eq "INTERFACE") &&
99                     Template($x);
100         }
101         return $res;
102 }
103
104 1;