mirror of
https://github.com/samba-team/samba.git
synced 2025-12-18 08:23:51 +03:00
- properly support --samba3-header argument used alone - support `security_descriptor' data type - only print pidl warnings, not perl warnings on erratic input - insert copyright header in templates
83 lines
2.3 KiB
Perl
83 lines
2.3 KiB
Perl
###################################################
|
|
# 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 "/*
|
|
* Unix SMB/CIFS implementation.
|
|
**** template auto-generated by pidl. Modify to your needs ****
|
|
* RPC Pipe client / server routines
|
|
* Copyright (C) YOUR NAME YEAR.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include \"includes.h\"
|
|
|
|
#undef DBGC_CLASS
|
|
#define DBGC_CLASS DBGC_MSRPC
|
|
";
|
|
|
|
foreach (@$ndr) {
|
|
ParseInterface($_) if ($_->{TYPE} eq "INTERFACE");
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
1;
|