1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
# ---------------------------------------------------------------------------
# dc-debconf-select.pl:
# This file will be added to end of dictionaries-common.config-base
# to make dictionaries-common.config, as well as installed under
# /usr/share/dictionaries-common for single ispell dicts/wordlists use
# ---------------------------------------------------------------------------
use strict;
sub dico_get_packages (){
# Get list of packages sharing the question
my $class = shift;
my $question = "shared/packages-$class";
my @pkglist = ();
my ($errorcode,$packages) = metaget ($question, "owners");
@pkglist = split (/\s*,\s*/, $packages) unless $errorcode;
return \@pkglist;
}
sub dico_parse_languages (){
# Get a hash reference of package -> list of (e)languages provided by package
my $class = shift;
my $variant = shift;
my $packages = shift;
my %tmphash = ();
die "No variant (languages|elanguages) string supplied\n" unless $variant;
$packages = &dico_get_packages($class) unless $packages;
foreach my $pkg ( @$packages ){
my ($errorcode, $entry ) = metaget("$pkg/$variant", "default");
unless ( $errorcode ){
$entry =~ s/^\s+//;
$entry =~ s/\s+$//;
$tmphash{$pkg} = $entry;
}
}
return \%tmphash;
}
sub dico_get_all_choices (){
# Get $choices and $echoices parallel lists sorted after $echoices and formatted for debconf
my $class = shift;
my $languages = shift;
my $debug = 1 if exists $ENV{'DICT_COMMON_DEBUG'};
my %mappinghash = ();
my $debug_prefix = "[$class,dico_get_all_choices]";
$languages = &dico_parse_languages($class,"languages") unless $languages;
my $elanguages = &dico_parse_languages($class,"elanguages",[ keys %$languages ]);
if ( $debug ){
print STDERR "-------- $debug_prefix start --------\n";
my $langlist = join(', ',sort keys %{$languages});
my $elanglist = join(', ',sort keys %{$elanguages});
print STDERR " * Packages with languages: $langlist\n" if $debug;
print STDERR " * Packages with elanguages: $elanglist\n" if $debug;
}
foreach my $pkg ( keys %$languages ){
my @langs = split(/\s*,\s*/, $languages->{$pkg});
my @elangs = @langs;
if ( exists $elanguages->{$pkg} ){
my @tmp = split(/\s*,\s*/, $elanguages->{$pkg});
if ( $debug ){
print STDERR " langs: $#langs, " . join(', ',@langs) . "\n";
print STDERR " tmp: $#tmp, " . join(', ',@tmp) . "\n";
}
@elangs = @tmp if ( $#langs == $#tmp );
}
foreach my $index ( 0 .. $#langs ){
$mappinghash{$langs[$index]} = $elangs[$index];
}
}
my $echoices = join(', ', sort {lc($a) cmp lc($b)} values %mappinghash);
my $choices = join(', ',
sort {lc($mappinghash{$a}) cmp lc($mappinghash{$b})}
keys %mappinghash);
if ( $debug ){
print STDERR " * Choices:\n [$choices]\n";
print STDERR " * Echoices:\n [$echoices]\n";
print STDERR "-------- $debug_prefix end --------\n";
}
return $choices, $echoices;
}
# ---------------------------------------------------------------------------
sub dico_get_default_value (){
# ---------------------------------------------------------------------------
# debconf-is-not-a-registry:
# ---------------------------------------------------------------------------
my $class = shift;
my $newchoices = shift;
my $question = "dictionaries-common/default-$class";
my $cachedir = "/var/cache/dictionaries-common";
my $sys_default_dir = "$cachedir";
my $debug = 1 if defined $ENV{'DICT_COMMON_DEBUG'};
my $debug_prefix = "[$class,dico_get_default_value]";
my %sys_default_files = ( 'ispell' => "$sys_default_dir/ispell-default",
'wordlist' => "$sys_default_dir/wordlist-default");
my $sys_default_value;
my $sys_default_file = $sys_default_files{$class};
# Get current value in system default file if available
if ( -f $sys_default_file ){
open ( my $SYS_DEFAULT_FILE, "<$sys_default_file" );
while (<$SYS_DEFAULT_FILE>){
next if m/^\s*\#/;
next if m/^\s*$/;
chomp;
s/^\s+//;
s/\s+$//;
$sys_default_value = $_;
last;
}
close $SYS_DEFAULT_FILE;
}
my $debconf_default_value = get ($question);
# If valid and different from debconf value, use it as new value
if ( $sys_default_value && $sys_default_value ne $debconf_default_value ) {
if ( defined $newchoices->{$sys_default_value} ){
set($question,$sys_default_value);
my $debconf_default_value_txt = $debconf_default_value ? $debconf_default_value : "";
print STDERR
"$debug_prefix: dictionaries-common warning:\n" .
" debconf question \"$question\" value did not match that in \"$sys_default_file\"\n" .
" Changing debconf value \"$debconf_default_value_txt\" to \"$sys_default_value\"\n";
return $sys_default_value;
} elsif ( $debconf_default_value ) {
if ( $debug ){
print STDERR
"$debug_prefix: dictionaries-common warning:\n" .
" \"$sys_default_value\" in \"$sys_default_file\" seems not available.\n" .
" Will set to debconf value \"$debconf_default_value\" in trigger. Be patient.\n";
} elsif ( defined $ENV{DPKG_MAINTSCRIPT_NAME}
&& $ENV{DPKG_MAINTSCRIPT_NAME} eq "config") {
print STDERR
" \"$sys_default_value\" in \"$sys_default_file\" seems not available.\n" .
" Will set to debconf value \"$debconf_default_value\" in trigger. Be patient.\n";
}
return $debconf_default_value;
}
} else {
return $debconf_default_value;
}
}
sub dc_debconf_select (){
my $classinfo = shift;
my $debug = 1 if exists $ENV{'DICT_COMMON_DEBUG'};
my $reconfigure = 1 if exists $ENV{'DEBCONF_RECONFIGURE'};
my $echoices;
my %title = ('ispell' => "Dictionaries-common: Ispell dictionary",
'wordlist' => "Dictionaries-common: Wordlist dictionary"
);
my $class;
my $priority;
my $is_dcconfig;
# If $classinfo is a hash reference, function is called from dictionaries-common.config
if ( ref($classinfo) eq 'HASH' ){
$class = $classinfo->{'class'};
$priority = $classinfo->{'priority'} if ( defined $classinfo->{'priority'} );
$is_dcconfig = 1;
} else {
# Otherwise is called from ispell dictionary/wordlist config
$class = $classinfo;
}
my $packages = &dico_get_packages($class);
return unless $packages;
my $question = "dictionaries-common/default-$class";
my $flagdir = "/var/cache/dictionaries-common";
my $newflag = "$flagdir/flag-$class-new";
my $debug_prefix = "[$class,dc_debconf_select]";
my $langscript = "/usr/share/dictionaries-common/dc-debconf-default-value.pl";
print STDERR "----- $debug_prefix start -----------\n" if $debug;
# Get new base list of provided languages
my %newchoices = ();
my $languages = &dico_parse_languages($class,"languages",$packages);
foreach my $pkg ( keys %$languages ) {
foreach my $lang ( split(/\s*,\s*/, $languages->{$pkg}) ){
$newchoices{$lang}++;
}
}
my $choices = join (', ', sort {lc($a) cmp lc($b)} keys %newchoices);
# Get old list of provided languages
my @oldchoices = split(/\s*,\s*/,metaget ($question, "choices-c"));
pop @oldchoices; # Remove the manual entry
my $oldchoices = join (', ', sort {lc($a) cmp lc($b)} @oldchoices);
# If dictionaries-common is already installed (-r $langscript),
# there are elements for this class to be installed (%newchoices)
# and there were none before (! $oldchoices), means that we are installing
# for the first time elements in this class, with dictionaries-common
# already installed. Try getting a reasonable default value
if ( -r $langscript && %newchoices && ! $oldchoices ){
print STDERR "$debug_prefix: Configuring class \"$class\" for the first time\n\n" if $debug;
# If called from dictionaries-common.config we already have
# $langscript, and probably more recent. Including it here will cause
# some warnings about subroutine re-definitions and even errors.
require $langscript unless $is_dcconfig;
my $guessed = &dc_set_default_value_for_class($class);
$priority = $guessed->{'priority'} if ( defined $guessed->{'priority'} );
}
# Get default ispell dictionary / wordlist.
my $curval = &dico_get_default_value($class,\%newchoices);
# Will be given a value if current value is wrong, undef otherwise
my $wrong_curval;
# Try harder to have a good default if current value is empty, but %newchoices not.
unless ( $curval ){
if ( -r $langscript && %newchoices ){
print STDERR "$debug_prefix: Possible values, but unset \"$question\". Trying harder to get a default value.\n";
# As above, if called from dictionaries-common.config we already have
# $langscript, and probably more recent. Including it here will cause
# some warnings about subroutine re-definitions and even errors.
require $langscript unless $is_dcconfig;
my $guessed = &dc_set_default_value_for_class($class);
$priority = $guessed->{'priority'} if ( defined $guessed->{'priority'} );
$curval = get ($question);
print STDERR "$debug_prefix: \"$question\" set to \"$curval\". Can be changed with select-default-$class.\n";
}
}
if ( scalar %newchoices ) {
# If $priority is set &dc_set_default_value_for_class found something.
# This will usually be as much "medium", so honour it.
unless ( $priority ){
if ( $curval && ( $curval =~ /^Manual.*/ or defined $newchoices{$curval} ) ){
# Use priority "medium" if current value is in the new list or mode is set to manual.
$priority = "medium";
} else {
# Otherwise we either have a wrong value with no associated entry
# or a void value with elements installed (and thus possible values).
# This is an *error* that needs to be signalled and acted upon.
# For this reason priority must be higher than the standard one.
# We leave it as "high" instead of "critical" so question can be
# overriden in special cases until underlying bug is fixed.
$priority = "high";
if ( $curval ){
$wrong_curval = $curval;
print STDERR "$debug_prefix error: \"$curval\" does not correspond to any package.\n";
} else {
$wrong_curval = "Question unset";
print STDERR "$debug_prefix error: \"$question\" unset but $class elements installed.\n";
}
}
}
} else {
$priority = "low";
print STDERR "$debug_prefix info: No elements in given class.\n" if $debug;
}
if ( $debug or $wrong_curval ){
my $curval_txt = $wrong_curval || $curval;
print STDERR "$debug_prefix:
* Class: $class, Priority: $priority
* Question: \"$question\", Previous or guessed value: \"$curval_txt\"
* New choices: [$choices]
* Old choices: [$oldchoices]\n";
}
# May ask question if there is no match
if ( scalar %newchoices ) {
if ( $choices ne $oldchoices) {
fset ($question, "seen", "false");
# Let future processes in this apt run know that a new $class element is to be installed
if ( -d $flagdir ) {
open (my $FLAG, "> $newflag")
or die "Could not open $newflag for write. Aborting ...\n";
print $FLAG "1\n";
close $FLAG;
}
}
my ( $errorcode, $seen ) = fget($question, "seen");
if ( $seen eq "false" or $reconfigure ){
($choices, $echoices ) = &dico_get_all_choices($class,$languages);
subst ($question, "choices", $choices);
subst ($question, "echoices", $echoices);
}
input ($priority, $question);
title ($title{$class});
go ();
subst ($question, "echoices", $choices); # Be backwards consistent
}
# If called from dictionaries-common.config, check actual values in debug mode
if ( $debug && $is_dcconfig ){
print STDERR " * Checking really set values for $question:\n";
print STDERR " - Choices-C string: " . metaget ($question, "choices-c") . "\n";
print STDERR " - Really set value: " . get ($question) . "\n";
}
print STDERR "----- $debug_prefix end -----------\n" if $debug;
}
# Local Variables:
# perl-indent-level: 2
# End:
1;
|