2 # Copyright 1999, 2000, 2001 Patrik Stridvall
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK);
28 @EXPORT_OK = qw($options parse_comma_list parse_value);
30 use vars qw($options);
32 use output qw($output);
34 sub parse_comma_list($$) {
38 if(defined($prefix) && $prefix eq "no") {
39 return { active => 0, filter => 0, hash => {} };
40 } elsif(defined($value)) {
42 for my $name (split /,/, $value) {
45 return { active => 1, filter => 1, hash => \%names };
47 return { active => 1, filter => 0, hash => {} };
62 use output qw($output);
68 my $class = ref($proto) || $proto;
70 bless ($self, $class);
72 my $options_long = \%{$self->{_OPTIONS_LONG}};
73 my $options_short = \%{$self->{_OPTIONS_SHORT}};
74 my $options_usage = \${$self->{_OPTIONS_USAGE}};
76 my $refoptions_long = shift;
77 my $refoptions_short = shift;
78 $$options_usage = shift;
80 %$options_long = %{$refoptions_long};
81 %$options_short = %{$refoptions_short};
83 $self->options_set("default");
85 my $arguments = \@{$self->{_ARGUMENTS}};
88 my $end_of_options = 0;
89 while(defined($_ = shift @ARGV)) {
93 } elsif($end_of_options) {
95 } elsif(/^--(all|none)$/) {
96 $self->options_set("$1");
98 } elsif(/^-([^=]*)(=(.*))?$/) {
108 if($name =~ /^([^-].*)$/) {
109 $name = $$options_short{$1};
111 $name =~ s/^-(.*)$/$1/;
115 if(defined($name) && $name =~ /^no-(.*)$/) {
118 if(defined($value)) {
119 $output->write("options with prefix 'no' can't take parameters\n");
127 $option = $$options_long{$name};
130 if(defined($option)) {
131 my $key = $$option{key};
132 my $parser = $$option{parser};
133 my $refvalue = \${$self->{$key}};
136 if(defined($$option{parent})) {
137 if(ref($$option{parent}) eq "ARRAY") {
138 @parents = @{$$option{parent}};
140 @parents = $$option{parent};
144 if(defined($parser)) {
145 if(!defined($value)) {
146 $value = shift @ARGV;
148 $$refvalue = &$parser($prefix,$value);
150 if(defined($value)) {
152 } elsif(!defined($prefix)) {
159 if((ref($$refvalue) eq "HASH" && $$refvalue->{active}) || $$refvalue) {
160 while($#parents >= 0) {
161 my @old_parents = @parents;
163 foreach my $parent (@old_parents) {
164 my $parentkey = $$options_long{$parent}{key};
165 my $refparentvalue = \${$self->{$parentkey}};
167 $$refparentvalue = 1;
169 if(defined($$options_long{$parent}{parent})) {
170 if(ref($$options_long{$parent}{parent}) eq "ARRAY") {
171 push @parents, @{$$options_long{$parent}{parent}};
173 push @parents, $$options_long{$parent}{parent};
183 if(!$end_of_options && /^-(.*)$/) {
184 $output->write("unknown option: $_\n");
185 $output->write($$options_usage);
188 push @$arguments, $_;
193 $output->write($$options_usage);
207 my $arguments = \@{$self->{_ARGUMENTS}};
208 my $directories = \@{$self->{_DIRECTORIES}};
209 my $c_files = \@{$self->{_C_FILES}};
210 my $h_files = \@{$self->{_H_FILES}};
214 foreach (@$arguments) {
216 $output->write("$_: no such file or directory\n");
229 foreach my $file (@files) {
230 if($file =~ /\.c$/) {
231 push @c_files, $file;
232 } elsif($file =~ /\.h$/) {
233 push @h_files, $file;
239 if($#c_files == -1 && $#h_files == -1 && $#paths == -1)
244 if($#paths != -1 || $#c_files != -1) {
245 my $c_command = "find " . join(" ", @paths, @c_files) . " -name \\*.c";
247 @$c_files = sort(map {
249 if(defined($found{$_})) {
255 } split(/\n/, `$c_command`));
258 if($#paths != -1 || $#h_files != -1) {
259 my $h_command = "find " . join(" ", @paths, @h_files) . " -name \\*.h";
262 @$h_files = sort(map {
264 if(defined($found{$_})) {
270 } split(/\n/, `$h_command`));
274 foreach my $file (@$c_files, @$h_files) {
276 $dir =~ s%/?[^/]+$%%;
277 if(!$dir) { $dir = "."; }
281 @$directories = sort(keys(%dirs));
284 sub options_set($$) {
287 my $options_long = \%{$self->{_OPTIONS_LONG}};
288 my $options_short = \%{$self->{_OPTIONS_SHORT}};
291 for my $name (sort(keys(%$options_long))) {
292 my $option = $$options_long{$name};
295 $$option{key} = $key;
296 my $refvalue = \${$self->{$key}};
299 $$refvalue = $$option{default};
301 if($name !~ /^(?:help|debug|verbose|module)$/) {
302 if(ref($$refvalue) ne "HASH") {
305 $$refvalue = { active => 1, filter => 0, hash => {} };
309 if($name !~ /^(?:help|debug|verbose|module)$/) {
310 if(ref($$refvalue) ne "HASH") {
313 $$refvalue = { active => 0, filter => 0, hash => {} };
323 my $options_long = \%{$self->{_OPTIONS_LONG}};
324 my $options_short = \%{$self->{_OPTIONS_SHORT}};
327 for my $name (sort(keys(%$options_long))) {
328 if(length($name) > $maxname) {
329 $maxname = length($name);
333 for my $name (sort(keys(%$options_long))) {
334 my $option = $$options_long{$name};
335 my $description = $$option{description};
336 my $parser = $$option{parser};
337 my $current = ${$self->{$$option{key}}};
339 my $value = $current;
342 if(!defined $parser) {
344 $command = "--no-$name";
346 $command = "--$name";
349 if(ref($value) eq "HASH" && $value->{active}) {
350 $command = "--[no-]$name\[=<value>]";
352 $command = "--$name\[=<value>]";
356 $output->write($command);
357 $output->write(" " x (($maxname - length($name) + 17) - (length($command) - length($name) + 1)));
358 if(!defined $parser) {
360 $output->write("Disable ");
362 $output->write("Enable ");
365 if(ref($value) eq "HASH")
367 if ($value->{active}) {
368 $output->write("(Disable) ");
370 $output->write("Enable ");
374 $output->write("$description\n");
381 my $name = $_options::AUTOLOAD;
382 $name =~ s/^.*::(.[^:]*)$/\U$1/;
384 my $refvalue = $self->{$name};
385 if(!defined($refvalue)) {
386 die "<internal>: options.pm: member $name does not exist\n";
389 if(ref($$refvalue) ne "HASH") {
392 return $$refvalue->{active};
399 my $arguments = \@{$self->{_ARGUMENTS}};
407 my $c_files = \@{$self->{_C_FILES}};
409 if(!defined(@$c_files)) {
419 my $h_files = \@{$self->{_H_FILES}};
421 if(!defined(@$h_files)) {
431 my $directories = \@{$self->{_DIRECTORIES}};
433 if(!defined(@$directories)) {
437 return @$directories;