diff options
author | Till Kamppeter <tkamppeter@mandriva.com> | 2003-02-04 19:05:42 +0000 |
---|---|---|
committer | Till Kamppeter <tkamppeter@mandriva.com> | 2003-02-04 19:05:42 +0000 |
commit | cb8c8c4d4b04fc9601b7db400aeeff65430c2a04 (patch) | |
tree | 882474309813c750ee3b930b4afcb59e85a101cc /perl-install/handle_configs.pm | |
parent | a32d31373f9198b23459518bcde8a333e643f7f7 (diff) | |
download | drakx-cb8c8c4d4b04fc9601b7db400aeeff65430c2a04.tar drakx-cb8c8c4d4b04fc9601b7db400aeeff65430c2a04.tar.gz drakx-cb8c8c4d4b04fc9601b7db400aeeff65430c2a04.tar.bz2 drakx-cb8c8c4d4b04fc9601b7db400aeeff65430c2a04.tar.xz drakx-cb8c8c4d4b04fc9601b7db400aeeff65430c2a04.zip |
- "Out-sourced" functions for config file handling into handle_configs.pm,
it is used by both printerdrake and scannerdrake.
- Improvements and fixes on CUPS daemon configuration by printerdrake.
Diffstat (limited to 'perl-install/handle_configs.pm')
-rw-r--r-- | perl-install/handle_configs.pm | 168 |
1 files changed, 168 insertions, 0 deletions
diff --git a/perl-install/handle_configs.pm b/perl-install/handle_configs.pm new file mode 100644 index 000000000..2f2fa3ffc --- /dev/null +++ b/perl-install/handle_configs.pm @@ -0,0 +1,168 @@ +package handle_configs; + +# $Id$ + +use diagnostics; +use strict; + +use common; + +sub read_directives { + + # Read one or more occurences of a directive + + my ($lines_ptr, $directive) = @_; + + my @result = (); + my $searchdirective = $directive; + $searchdirective =~ s/([\\\/\(\)\[\]\|\.\$\@\%\*\?])/\\$1/g; + ($_ =~ /^\s*$searchdirective\s+(\S.*)$/ and push(@result, $1)) + foreach @{$lines_ptr}; + (chomp) foreach @result; + return @result; +} + +sub read_unique_directive { + + # Read a directive, if the directive appears more than once, use + # the last occurence and remove all the others, if it does not + # occur, return the default value + + my ($lines_ptr, $directive, $default) = @_; + + if ((my @d = read_directives($lines_ptr, $directive)) > 0) { + my $value = @d[$#d]; + set_directive($lines_ptr, "$directive $value"); + return $value; + } else { + return $default; + } +} + +sub insert_directive { + + # Insert a directive only if it is not already there + + my ($lines_ptr, $directive) = @_; + + my $searchdirective = $directive; + $searchdirective =~ s/([\\\/\(\)\[\]\|\.\$\@\%\*\?])/\\$1/g; + ($_ =~ /^\s*$searchdirective$/ and return 0) foreach @{$lines_ptr}; + splice(@{$lines_ptr}, -1, 0, "$directive\n"); + return 1; +} + +sub remove_directive { + + # Remove a directive + + my ($lines_ptr, $directive) = @_; + + my $success = 0; + my $searchdirective = $directive; + $searchdirective =~ s/([\\\/\(\)\[\]\|\.\$\@\%\*\?])/\\$1/g; + ($_ =~ /^\s*$searchdirective/ and $_ = "" and $success = 1) + foreach @{$lines_ptr}; + return $success; +} + +sub comment_directive { + + # Comment out a directive + + my ($lines_ptr, $directive) = @_; + + my $success = 0; + my $searchdirective = $directive; + $searchdirective =~ s/([\\\/\(\)\[\]\|\.\$\@\%\*\?])/\\$1/g; + ($_ =~ s/^(\s*$searchdirective)/\#$1/ and $success = 1) + foreach @{$lines_ptr}; + return $success; +} + +sub replace_directive { + + # Replace a directive, if it appears more than once, remove + # the additional occurences. + + my ($lines_ptr, $olddirective, $newdirective) = @_; + + my $success = 0; + $newdirective = "$newdirective\n"; + my $searcholddirective = $olddirective; + $searcholddirective =~ s/([\\\/\(\)\[\]\|\.\$\@\%\*\?])/\\$1/g; + ($_ =~ /^\s*$searcholddirective/ and $_ = $newdirective and + $success = 1 and $newdirective = "") foreach @{$lines_ptr}; + return $success; +} + + +sub move_directive_to_version_commented_out { + + # If there is a version of the directive "commentedout" which is + # commented out, the directive "directive" will be moved in its place. + + my ($lines_ptr, $commentedout, $directive, $exactmatch) = @_; + + my $success = 0; + my $searchcommentedout = $commentedout; + $searchcommentedout =~ s/([\\\/\(\)\[\]\|\.\$\@\%\*\?])/\\$1/g; + $searchcommentedout .= ".*" if (!$exactmatch); + ($_ =~ /^\s*\#$searchcommentedout$/ and + $success = 1 and last) foreach @{$lines_ptr}; + if ($success) { + remove_directive($lines_ptr, $directive); + ($_ =~ s/^\s*\#($searchcommentedout)$/$directive/ and + $success = 1 and last) foreach @{$lines_ptr}; + } + return $success; +} + +sub set_directive { + + # Set a directive in the cupsd.conf, replace the old definition or + # a commented definition + + my ($lines_ptr, $directive) = @_; + + my $searchdirective = $directive; + $searchdirective =~ s/([\\\/\(\)\[\]\|\.\$\@\%\*\?])/\\$1/g; + my $olddirective = $searchdirective; + $olddirective =~ s/^\s*(\S+)\s+.*$/$1/s; + + my $success = (replace_directive($lines_ptr, $olddirective, + $directive) or + insert_directive($lines_ptr, $directive)); + if ($success) { + move_directive_to_version_commented_out($lines_ptr, + "$directive\$", + $directive) or + move_directive_to_version_commented_out($lines_ptr, + $olddirective, $directive); + } + return $success; +} + +sub add_directive { + + # Set a directive in the cupsd.conf, replace the old definition or + # a commented definition + + my ($lines_ptr, $directive) = @_; + + my $searchdirective = $directive; + $searchdirective =~ s/([\\\/\(\)\[\]\|\.\$\@\%\*\?])/\\$1/g; + my $olddirective = $searchdirective; + $olddirective =~ s/^\s*(\S+)\s+.*$/$1/s; + + my $success = insert_directive($lines_ptr, $directive); + if ($success) { + move_directive_to_version_commented_out($lines_ptr, $directive, + $directive, 1) or + move_directive_to_version_commented_out($lines_ptr, + $olddirective, $directive); + } + return $success; +} + +1; |