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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
|
# Copyright © 2006-2024 Guillem Jover <guillem@debian.org>
# Copyright © 2007-2010 Raphaël Hertzog <hertzog@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
=encoding utf8
=head1 NAME
Dpkg::Substvars - handle variable substitution in strings
=head1 DESCRIPTION
It provides a class which is able to substitute variables in strings.
=cut
package Dpkg::Substvars 2.04;
use v5.36;
use Dpkg ();
use Dpkg::Arch qw(get_host_arch);
use Dpkg::Vendor qw(get_current_vendor);
use Dpkg::Version;
use Dpkg::ErrorHandling;
use Dpkg::Gettext;
use parent qw(Dpkg::Interface::Storable);
my $maxsubsts = 50;
use constant {
SUBSTVAR_ATTR_USED => 1,
SUBSTVAR_ATTR_AUTO => 2,
SUBSTVAR_ATTR_AGED => 4,
SUBSTVAR_ATTR_OPT => 8,
SUBSTVAR_ATTR_DEEP => 16,
SUBSTVAR_ATTR_REQ => 32,
SUBSTVAR_ATTR_IMPL => 64,
};
=head1 METHODS
=over 8
=item $s = Dpkg::Substvars->new($file)
Create a new object that can do substitutions. By default it contains
generic substitutions like ${Newline}, ${Space}, ${Tab}, ${dpkg:Version}
and ${dpkg:Upstream-Version}.
Additional substitutions will be read from the $file passed as parameter.
It keeps track of which substitutions were actually used (only counting
substvars(), not get()), and warns about unused substvars when asked to. The
substitutions that are always present are not included in these warnings.
=cut
sub new {
my ($this, $arg) = @_;
my $class = ref($this) || $this;
my $self = {
vars => {
'Newline' => "\n",
'Space' => ' ',
'Tab' => "\t",
'dpkg:Version' => $Dpkg::PROGVERSION,
'dpkg:Upstream-Version' => $Dpkg::PROGVERSION,
},
attr => {},
msg_prefix => '',
};
$self->{vars}{'dpkg:Upstream-Version'} =~ s/-[^-]+$//;
bless $self, $class;
my $attr = SUBSTVAR_ATTR_USED | SUBSTVAR_ATTR_AUTO;
$self->{attr}{$_} = $attr foreach keys %{$self->{vars}};
if ($arg) {
$self->load($arg) if -e $arg;
}
return $self;
}
=item $s->set($key, $value)
Add/replace a substitution.
=cut
sub set {
my ($self, $key, $value, $attr) = @_;
$attr //= 0;
$attr |= SUBSTVAR_ATTR_DEEP if length $value && $value =~ m{\$};
$self->{vars}{$key} = $value;
$self->{attr}{$key} = $attr;
}
=item $s->set_as_used($key, $value)
Add/replace a substitution and mark it as used (no warnings will be produced
even if unused).
=cut
sub set_as_used {
my ($self, $key, $value) = @_;
$self->set($key, $value, SUBSTVAR_ATTR_USED);
}
=item $s->set_as_auto($key, $value)
Add/replace a substitution and mark it as used and automatic (no warnings
will be produced even if unused), and will not be emitted into the substvars
file.
=cut
sub set_as_auto {
my ($self, $key, $value) = @_;
$self->set($key, $value, SUBSTVAR_ATTR_USED | SUBSTVAR_ATTR_AUTO);
}
=item $s->set_as_optional($key, $value)
Add/replace a substitution and mark it as used and optional (no warnings
will be produced even if unused).
=cut
sub set_as_optional {
my ($self, $key, $value) = @_;
$self->set($key, $value, SUBSTVAR_ATTR_USED | SUBSTVAR_ATTR_OPT);
}
=item $s->set_as_required($key, $value)
Add/replace a substitution and mark it as required (an error
will be produced if it is not used).
=cut
sub set_as_required {
my ($self, $key, $value) = @_;
$self->set($key, $value, SUBSTVAR_ATTR_REQ);
}
=item $s->set_as_implicit($key, $value)
Add/replace a substitution and mark it as implicit, where a field will be
automatically instantiated if not already present.
=cut
sub set_as_implicit($self, $key, $value)
{
$self->set($key, $value, SUBSTVAR_ATTR_USED | SUBSTVAR_ATTR_IMPL);
}
=item $s->get($key)
Get the value of a given substitution.
=cut
sub get {
my ($self, $key) = @_;
return $self->{vars}{$key};
}
=item $s->delete($key)
Remove a given substitution.
=cut
sub delete {
my ($self, $key) = @_;
delete $self->{attr}{$key};
return delete $self->{vars}{$key};
}
=item $s->mark_as_used($key)
Prevents warnings about a unused substitution, for example if it is provided by
default.
=cut
sub mark_as_used {
my ($self, $key) = @_;
$self->{attr}{$key} |= SUBSTVAR_ATTR_USED;
}
=item $s->parse($fh, $desc)
Add new substitutions read from the filehandle. $desc is used to identify
the filehandle in error messages.
Returns the number of substitutions that have been parsed with success.
=cut
sub parse {
my ($self, $fh, $varlistfile) = @_;
my $count = 0;
local $_;
binmode($fh);
while (<$fh>) {
next if m/^\s*\#/ || ! m/\S/;
s/\s*\n$//;
if (! m/^(\w[-:0-9A-Za-z]*)([?!\$])?\=(.*)$/) {
error(g_('bad line in substvars file %s at line %d'),
$varlistfile, $.);
}
if (defined $2) {
$self->set_as_optional($1, $3) if $2 eq '?';
$self->set_as_required($1, $3) if $2 eq '!';
$self->set_as_implicit($1, $3) if $2 eq '$';
} else {
$self->set($1, $3);
}
$count++;
}
return $count
}
=item $s->load($file)
Add new substitutions read from $file.
=item $s->set_version_substvars($sourceversion, $binaryversion)
Defines ${binary:Version}, ${source:Version} and
${source:Upstream-Version} based on the given version strings.
These will never be warned about when unused.
=cut
sub set_version_substvars {
my ($self, $sourceversion, $binaryversion) = @_;
# Handle old function signature taking only one argument.
$binaryversion //= $sourceversion;
# For backwards compatibility on binNMUs that do not use the Binary-Only
# field on the changelog, always fix up the source version.
$sourceversion =~ s/\+b[0-9]+$//;
my $vs = Dpkg::Version->new($sourceversion, check => 1);
if (not defined $vs) {
error(g_('invalid source version %s'), $sourceversion);
}
my $upstreamversion = $vs->as_string(omit_revision => 1);
my $attr = SUBSTVAR_ATTR_USED | SUBSTVAR_ATTR_AUTO;
$self->set('binary:Version', $binaryversion, $attr);
$self->set('source:Version', $sourceversion, $attr);
$self->set('source:Upstream-Version', $upstreamversion, $attr);
# XXX: Source-Version is now obsolete, remove in 1.19.x.
$self->set('Source-Version', $binaryversion, $attr | SUBSTVAR_ATTR_AGED);
}
=item $s->set_arch_substvars()
Defines architecture variables: ${Arch}.
This will never be warned about when unused.
=cut
sub set_arch_substvars {
my $self = shift;
my $attr = SUBSTVAR_ATTR_USED | SUBSTVAR_ATTR_AUTO;
$self->set('Arch', get_host_arch(), $attr);
}
=item $s->set_vendor_substvars()
Defines vendor variables: ${vendor:Name} and ${vendor:Id}.
These will never be warned about when unused.
=cut
sub set_vendor_substvars {
my ($self, $desc) = @_;
my $attr = SUBSTVAR_ATTR_USED | SUBSTVAR_ATTR_AUTO;
my $vendor = get_current_vendor();
$self->set('vendor:Name', $vendor, $attr);
$self->set('vendor:Id', lc $vendor, $attr);
}
=item $s->set_desc_substvars()
Defines source description variables: ${source:Synopsis} and
${source:Extended-Description}.
These will never be warned about when unused.
=cut
sub set_desc_substvars {
my ($self, $desc) = @_;
my ($synopsis, $extended) = split /\n/, $desc, 2;
my $attr = SUBSTVAR_ATTR_USED | SUBSTVAR_ATTR_AUTO;
$self->set('source:Synopsis', $synopsis, $attr);
$self->set('source:Extended-Description', $extended, $attr);
}
=item $s->set_field_substvars($ctrl, $prefix)
Defines field variables from a L<Dpkg::Control> object, with each variable
having the form "${$prefix:$field}".
They will never be warned about when unused.
=cut
sub set_field_substvars {
my ($self, $ctrl, $prefix) = @_;
foreach my $field (keys %{$ctrl}) {
$self->set_as_auto("$prefix:$field", $ctrl->{$field});
}
}
=item @substvars = $s->get_implicit_substvars()
Returns a list of implicit substitution variables to be used by the calling
program, by appending them to specific text.
=cut
sub get_implicit_substvars($self)
{
my @implicit = sort grep {
$self->{attr}{$_} & SUBSTVAR_ATTR_IMPL
} keys %{$self->{vars}};
return @implicit;
}
=item $newstring = $s->substvars($string)
Substitutes variables in $string and return the result in $newstring.
=cut
sub substvars {
my ($self, $v, %opts) = @_;
my %seen;
my $lhs;
my $vn;
my $rhs = '';
$opts{msg_prefix} //= $self->{msg_prefix};
$opts{no_warn} //= 0;
while ($v =~ m/^(.*?)\$\{([-:0-9a-z]+)\}(.*)$/si) {
$lhs = $1;
$vn = $2;
$rhs = $3;
if (defined($self->{vars}{$vn})) {
$v = $lhs . $self->{vars}{$vn} . $rhs;
$self->mark_as_used($vn);
if ($self->{attr}{$vn} & SUBSTVAR_ATTR_DEEP) {
$seen{$vn}++;
}
if (exists $seen{$vn} && $seen{$vn} >= $maxsubsts) {
error($opts{msg_prefix} .
g_("too many \${%s} substitutions (recursive?) in '%s'"),
$vn, $v);
}
if ($self->{attr}{$vn} & SUBSTVAR_ATTR_AGED) {
error($opts{msg_prefix} .
g_('obsolete substitution variable ${%s}'), $vn);
}
} else {
warning($opts{msg_prefix} .
g_('substitution variable ${%s} used, but is not defined'),
$vn) unless $opts{no_warn};
$v = $lhs . $rhs;
}
}
return $v;
}
=item $s->warn_about_unused()
Issues warning about any variables that were set, but not used.
=cut
sub warn_about_unused {
my ($self, %opts) = @_;
$opts{msg_prefix} //= $self->{msg_prefix};
foreach my $vn (sort keys %{$self->{vars}}) {
next if $self->{attr}{$vn} & SUBSTVAR_ATTR_USED;
# Empty substitutions variables are ignored on the basis that they
# are not required in the current situation.
# Example: debhelper's misc:Depends in many cases.
next if $self->{vars}{$vn} eq '';
if ($self->{attr}{$vn} & SUBSTVAR_ATTR_REQ) {
error($opts{msg_prefix} .
g_('required substitution variable ${%s} not used'),
$vn);
} else {
warning($opts{msg_prefix} .
g_('substitution variable ${%s} unused, but is defined'),
$vn);
}
}
}
=item $s->set_msg_prefix($prefix)
Define a prefix displayed before all warnings/error messages output
by the module.
=cut
sub set_msg_prefix {
my ($self, $prefix) = @_;
$self->{msg_prefix} = $prefix;
}
=item $s->filter(%opts)
Filter the substitution variables.
Options:
=over
=item B<remove>
A function returning a boolean,
used to decide whether to remove a substitution variable,
executed as $opts{remove}->($var).
=item B<keep>
A function returning a boolean,
used to decide whether to keep the substitution variable,
executed as $opts{keep}->($var).
=back
=cut
sub filter {
my ($self, %opts) = @_;
my $remove = $opts{remove} // sub { 0 };
my $keep = $opts{keep} // sub { 1 };
foreach my $vn (keys %{$self->{vars}}) {
$self->delete($vn) if $remove->($vn) or not $keep->($vn);
}
}
=item "$s"
Return a string representation of all substitutions variables except the
automatic ones.
=item $str = $s->output([$fh])
Return all substitutions variables except the automatic ones. If $fh
is passed print them into the filehandle.
=cut
sub output {
my ($self, $fh) = @_;
my $str = '';
# Store all non-automatic substitutions only.
foreach my $vn (sort keys %{$self->{vars}}) {
next if $self->{attr}{$vn} & SUBSTVAR_ATTR_AUTO;
my $op;
if ($self->{attr}{$vn} & SUBSTVAR_ATTR_OPT) {
$op = '?=';
} elsif ($self->{attr}{$vn} & SUBSTVAR_ATTR_REQ) {
$op = '!=';
} elsif ($self->{attr}{$vn} & SUBSTVAR_ATTR_IMPL) {
$op = '$=';
} else {
$op = '=';
}
my $line = "$vn$op" . $self->{vars}{$vn} . "\n";
print { $fh } $line if defined $fh;
$str .= $line;
}
return $str;
}
=item $s->save($file)
Store all substitutions variables except the automatic ones in the
indicated file.
=back
=head1 CHANGES
=head2 Version 2.04 (dpkg 1.23.0)
New feature: Add support for implicit substitution variables.
New method: $s->set_as_implicit(), $s->get_implicit_substvars().
=head2 Version 2.03 (dpkg 1.22.15)
New methods: $s->set_as_optional(), $s->set_as_required().
=head2 Version 2.02 (dpkg 1.22.7)
New feature: Add support for required substitution variables.
=head2 Version 2.01 (dpkg 1.21.8)
New feature: Add support for optional substitution variables.
=head2 Version 2.00 (dpkg 1.20.0)
Remove method: $s->no_warn().
New method: $s->set_vendor_substvars().
=head2 Version 1.06 (dpkg 1.19.0)
New method: $s->set_desc_substvars().
=head2 Version 1.05 (dpkg 1.18.11)
Obsolete substvar: Emit an error on Source-Version substvar usage.
New return: $s->parse() now returns the number of parsed substvars.
New method: $s->set_field_substvars().
=head2 Version 1.04 (dpkg 1.18.0)
New method: $s->filter().
=head2 Version 1.03 (dpkg 1.17.11)
New method: $s->set_as_auto().
=head2 Version 1.02 (dpkg 1.16.5)
New argument: Accept a $binaryversion in $s->set_version_substvars(),
passing a single argument is still supported.
New method: $s->mark_as_used().
Deprecated method: $s->no_warn(), use $s->mark_as_used() instead.
=head2 Version 1.01 (dpkg 1.16.4)
New method: $s->set_as_used().
=head2 Version 1.00 (dpkg 1.15.6)
Mark the module as public.
=cut
1;
|