| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- package Dpkg::Fields;
- use strict;
- use warnings;
- use Exporter;
- our @ISA = qw(Exporter);
- our @EXPORT_OK = qw(capit set_field_importance sort_field_by_importance);
- sub capit {
- my @pieces = map { ucfirst(lc) } split /-/, $_[0];
- return join '-', @pieces;
- }
- my %fieldimps;
- sub set_field_importance(@)
- {
- my @fields = @_;
- my $i = 1;
- grep($fieldimps{$_} = $i++, @fields);
- }
- sub sort_field_by_importance($$)
- {
- my ($a, $b) = @_;
- if (defined $fieldimps{$a} && defined $fieldimps{$b}) {
- $fieldimps{$a} <=> $fieldimps{$b};
- } elsif (defined($fieldimps{$a})) {
- -1;
- } elsif (defined($fieldimps{$b})) {
- 1;
- } else {
- $a cmp $b;
- }
- }
- package Dpkg::Fields::Object;
- =head1 OTHER OBJECTS
- =head2 Dpkg::Fields::Object
- This object is used to tie a hash. It implements hash-like functions by
- normalizing the name of fields received in keys (using
- Dpkg::Fields::capit). It also stores the order in which fields have been
- added in order to be able to dump them in the same order.
- You can also dump the content of the hash with tied(%hash)->dump($fh).
- =cut
- use Tie::Hash;
- our @ISA = qw(Tie::ExtraHash Tie::Hash);
- use Dpkg::ErrorHandling qw(internerr syserr);
- # Import capit
- Dpkg::Fields->import('capit', 'sort_field_by_importance');
- # $self->[0] is the real hash
- # $self->[1] is an array containing the ordered list of keys
- =head2 Dpkg::Fields::Object->new()
- Return a reference to a tied hash implementing storage of simple
- "field: value" mapping as used in many Debian-specific files.
- =cut
- sub new {
- my $hash = {};
- tie %{$hash}, 'Dpkg::Fields::Object';
- return $hash;
- }
- sub TIEHASH {
- my $class = shift;
- return bless [{}, []], $class;
- }
- sub FETCH {
- my ($self, $key) = @_;
- $key = capit($key);
- return $self->[0]->{$key} if exists $self->[0]->{$key};
- return undef;
- }
- sub STORE {
- my ($self, $key, $value) = @_;
- $key = capit($key);
- if (not exists $self->[0]->{$key}) {
- push @{$self->[1]}, $key;
- }
- $self->[0]->{$key} = $value;
- }
- sub EXISTS {
- my ($self, $key) = @_;
- $key = capit($key);
- return exists $self->[0]->{$key};
- }
- sub DELETE {
- my ($self, $key) = @_;
- $key = capit($key);
- if (exists $self->[0]->{$key}) {
- delete $self->[0]->{$key};
- @{$self->[1]} = grep { $_ ne $key } @{$self->[1]};
- return 1;
- } else {
- return 0;
- }
- }
- sub FIRSTKEY {
- my $self = shift;
- foreach (@{$self->[1]}) {
- return $_ if exists $self->[0]->{$_};
- }
- }
- sub NEXTKEY {
- my ($self, $last) = @_;
- my $found = 0;
- foreach (@{$self->[1]}) {
- if ($found) {
- return $_ if exists $self->[0]->{$_};
- } else {
- $found = 1 if $_ eq $last;
- }
- }
- return undef;
- }
- sub dump {
- my ($self, $fh) = @_;
- foreach (@{$self->[1]}) {
- if (exists $self->[0]->{$_}) {
- print $fh "$_: " . $self->[0]->{$_} . "\n";
- }
- }
- }
- sub output {
- my ($self, $fh, $substvars) = @_;
- # Add substvars to refer to other fields
- if (defined($substvars)) {
- foreach my $f (keys %{$self->[0]}) {
- $substvars->set("F:$f", $self->[0]->{$f});
- }
- }
- for my $f (sort sort_field_by_importance keys %{$self->[0]}) {
- my $v = $self->[0]->{$f};
- if (defined($substvars)) {
- $v = $substvars->substvars($v);
- }
- $v =~ m/\S/ || next; # delete whitespace-only fields
- $v =~ m/\n\S/ &&
- internerr(_g("field %s has newline then non whitespace >%s<"),
- $f, $v);
- $v =~ m/\n[ \t]*\n/ &&
- internerr(_g("field %s has blank lines >%s<"), $f, $v);
- $v =~ m/\n$/ &&
- internerr(_g("field %s has trailing newline >%s<"), $f, $v);
- if (defined($substvars)) {
- $v =~ s/,[\s,]*,/,/g;
- $v =~ s/^\s*,\s*//;
- $v =~ s/\s*,\s*$//;
- }
- $v =~ s/\$\{\}/\$/g;
- print $fh "$f: $v\n" || syserr(_g("write error on control data"));
- }
- }
- 1;
|