2 # Generate loadparm interfaces tables for Samba3/Samba4 integration
4 # based on mkproto.pl Written by Jelmer Vernooij
5 # based on the original mkproto.sh by Andrew Tridgell
9 # don't use warnings module as it is not portable enough
16 #####################################################################
17 # read a file into a string
20 my $public_define = undef;
23 my $public_data = \
$_public;
35 print "Usage: mks3param.pl [options] [c files]\n";
37 print " --srcdir=path Read files relative to this directory\n";
38 print " --builddir=path Write file relative to this directory\n";
39 print " --help Print this help message\n\n";
44 'file=s' => sub { my ($f,$v) = @_; $file = $v; },
45 'srcdir=s' => sub { my ($f,$v) = @_; $srcdir = $v; },
46 'builddir=s' => sub { my ($f,$v) = @_; $builddir = $v; },
50 sub normalize_define
($$)
52 my ($define, $file) = @_;
54 if (not defined($define) and defined($file)) {
55 $define = "__" . uc($file) . "__";
56 $define =~ tr{./}{__};
58 } elsif (not defined($define)) {
59 $define = '_S3_PARAM_PROTO_H_';
65 $public_define = normalize_define
($public_define, $file);
71 open(INPUTFILE
, $filename) or return undef;
72 my($saved_delim) = $/;
74 my($data) = <INPUTFILE
>;
82 my ($file, $header_name) = @_;
83 $file->("#ifndef $header_name\n");
84 $file->("#define $header_name\n\n");
85 $file->("/* This file was automatically generated by mks3param_proto.pl. DO NOT EDIT */\n\n");
90 my ($file, $header_name) = @_;
91 $file->("\n#endif /* $header_name */\n\n");
94 sub handle_loadparm
($$)
96 my ($file,$line) = @_;
104 if ($line =~ /^FN_(GLOBAL|LOCAL)_(CONST_STRING|STRING|BOOL|bool|CHAR|INTEGER|LIST)\((\w+),(.*)\)/o) {
110 } elsif ($line =~ /^FN_(GLOBAL|LOCAL)_PARM_(CONST_STRING|STRING|BOOL|bool|CHAR|INTEGER|LIST)\((\w+),(.*)\)/o) {
115 $param = "const struct share_params *p";
122 "CONST_STRING" => "const char *",
123 "STRING" => "char *",
126 "LIST" => "const char **",
134 if (($type eq "STRING") and ($scope eq "GLOBAL")) {
135 $file->("$tmap{$type}lp_$name(TALLOC_CTX *ctx);\n");
136 } elsif (($type eq "STRING") and ($scope eq "LOCAL")) {
137 $file->("$tmap{$type}lp_$name(TALLOC_CTX *ctx, $smap{$scope});\n");
139 $file->("$tmap{$type}lp_$name($smap{$scope});\n");
145 my ($file, $filename) = @_;
147 $filename =~ s/\.o$/\.c/g;
149 if ($filename =~ /^\//) {
150 open(FH
, "<$filename") or die("Failed to open $filename");
151 } elsif (!open(FH
, "< $builddir/$filename")) {
152 open(FH
, "< $srcdir/$filename") || die "Failed to open $filename";
157 while (my $line = <FH
>) {
158 if ($line =~ /^\/\
*\
*/) {
165 if ($line =~ /\*\//) {
170 # these are ordered for maximum speed
171 next if ($line =~ /^\s/);
173 next unless ($line =~ /\(/);
175 next if ($line =~ /^\/|[;]/);
177 if ($line =~ /^FN_/) {
178 handle_loadparm
($file, $line);
187 print_header
(\
&public
, $public_define);
189 process_file
(\
&public
, $_) foreach (@ARGV);
190 print_footer
(\
&public
, $public_define);
192 if (not defined($file)) {
193 print STDOUT
$$public_data;
196 mkpath
(dirname
($file), 0, 0755);
197 open(PUBLIC
, ">$file") or die("Can't open `$file': $!");
198 print PUBLIC
"$$public_data";