mirror of
https://github.com/samba-team/samba.git
synced 2025-11-28 12:23:49 +03:00
103 lines
2.2 KiB
Perl
103 lines
2.2 KiB
Perl
###################################################
|
|
# client calls generator
|
|
# Copyright tridge@samba.org 2003
|
|
# released under the GNU GPL
|
|
|
|
package Parse::Pidl::Samba4::NDR::Client;
|
|
|
|
use vars qw($VERSION);
|
|
$VERSION = '0.01';
|
|
|
|
use strict;
|
|
|
|
my($res);
|
|
|
|
#####################################################################
|
|
# parse a function
|
|
sub ParseFunction($$)
|
|
{
|
|
my ($interface, $fn) = @_;
|
|
my $name = $fn->{NAME};
|
|
my $uname = uc $name;
|
|
|
|
$res .= "
|
|
struct rpc_request *dcerpc_$name\_send(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct $name *r)
|
|
{
|
|
if (p->conn->flags & DCERPC_DEBUG_PRINT_IN) {
|
|
NDR_PRINT_IN_DEBUG($name, r);
|
|
}
|
|
|
|
return dcerpc_ndr_request_send(p, NULL, &dcerpc_table_$interface->{NAME}, DCERPC_$uname, mem_ctx, r);
|
|
}
|
|
|
|
NTSTATUS dcerpc_$name(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct $name *r)
|
|
{
|
|
struct rpc_request *req;
|
|
NTSTATUS status;
|
|
|
|
req = dcerpc_$name\_send(p, mem_ctx, r);
|
|
if (req == NULL) return NT_STATUS_NO_MEMORY;
|
|
|
|
status = dcerpc_ndr_request_recv(req);
|
|
|
|
if (NT_STATUS_IS_OK(status) && (p->conn->flags & DCERPC_DEBUG_PRINT_OUT)) {
|
|
NDR_PRINT_OUT_DEBUG($name, r);
|
|
}
|
|
";
|
|
|
|
if (defined($fn->{RETURN_TYPE}) and $fn->{RETURN_TYPE} eq "NTSTATUS") {
|
|
$res .= "\tif (NT_STATUS_IS_OK(status)) status = r->out.result;\n";
|
|
}
|
|
$res .=
|
|
"
|
|
return status;
|
|
}
|
|
";
|
|
}
|
|
|
|
my %done;
|
|
|
|
#####################################################################
|
|
# parse the interface definitions
|
|
sub ParseInterface($)
|
|
{
|
|
my($interface) = shift;
|
|
$res .= "/* $interface->{NAME} - client functions generated by pidl */\n\n";
|
|
|
|
foreach my $fn (@{$interface->{FUNCTIONS}}) {
|
|
next if not defined($fn->{OPNUM});
|
|
next if defined($done{$fn->{NAME}});
|
|
ParseFunction($interface, $fn);
|
|
$done{$fn->{NAME}} = 1;
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
sub Parse($$)
|
|
{
|
|
my($ndr) = shift;
|
|
my($filename) = shift;
|
|
|
|
my $h_filename = $filename;
|
|
$res = "";
|
|
|
|
if ($h_filename =~ /(.*)\.c/) {
|
|
$h_filename = "$1.h";
|
|
}
|
|
|
|
$res .= "/* client functions auto-generated by pidl */\n";
|
|
$res .= "\n";
|
|
$res .= "#include \"includes.h\"\n";
|
|
$res .= "#include \"$h_filename\"\n";
|
|
$res .= "\n";
|
|
|
|
foreach my $x (@{$ndr}) {
|
|
($x->{TYPE} eq "INTERFACE") && ParseInterface($x);
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
1;
|