summaryrefslogtreecommitdiff
path: root/scripts/Dpkg/Dist/Files.pm
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2014-01-28 01:08:01 +0100
committerGuillem Jover <guillem@debian.org>2014-04-21 16:29:44 +0200
commitbe7da07bbc26cf9b799fa6425b60025ab0e91956 (patch)
treedab6aef4dcd3b1272e53ce8b53ad4b1fd2963e20 /scripts/Dpkg/Dist/Files.pm
parent1469ab6fc964ffd7f83e4e842ad4cf89a48328e5 (diff)
downloaddpkg-be7da07bbc26cf9b799fa6425b60025ab0e91956.tar.gz
Dpkg::Dist::Files: New perl module
Diffstat (limited to 'scripts/Dpkg/Dist/Files.pm')
-rw-r--r--scripts/Dpkg/Dist/Files.pm141
1 files changed, 141 insertions, 0 deletions
diff --git a/scripts/Dpkg/Dist/Files.pm b/scripts/Dpkg/Dist/Files.pm
new file mode 100644
index 000000000..a76429e68
--- /dev/null
+++ b/scripts/Dpkg/Dist/Files.pm
@@ -0,0 +1,141 @@
+# Copyright © 2014 Guillem Jover <guillem@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/>.
+
+package Dpkg::Dist::Files;
+
+use strict;
+use warnings;
+
+our $VERSION = '0.01';
+
+use parent qw(Dpkg::Interface::Storable);
+
+use Dpkg::Gettext;
+use Dpkg::ErrorHandling;
+
+sub new {
+ my ($this, %opts) = @_;
+ my $class = ref($this) || $this;
+
+ my $self = {
+ options => [],
+ files => {},
+ order => [],
+ };
+ foreach my $opt (keys %opts) {
+ $self->{$opt} = $opts{$opt};
+ }
+ bless $self, $class;
+
+ return $self;
+}
+
+sub parse {
+ my ($self, $fh, $desc) = @_;
+ my $count = 0;
+
+ local $_;
+ binmode $fh;
+
+ while (<$fh>) {
+ chomp;
+
+ my %file;
+
+ if (m/^(([-+.0-9a-z]+)_([^_]+)_([-\w]+)\.([a-z0-9.]+)) (\S+) (\S+)$/) {
+ $file{filename} = $1;
+ $file{package} = $2;
+ $file{version} = $3;
+ $file{arch} = $4;
+ $file{package_type} = $5;
+ $file{section} = $6;
+ $file{priority} = $7;
+ } elsif (m/^([-+.,_0-9a-zA-Z]+) (\S+) (\S+)$/) {
+ $file{filename} = $1;
+ $file{section} = $2;
+ $file{priority} = $3;
+ } else {
+ error(_g('badly formed line in files list file, line %d'), $.);
+ }
+
+ if (defined $self->{files}->{$file{filename}}) {
+ warning(_g('duplicate files list entry for file %s (line %d)'),
+ $file{filename}, $.);
+ } else {
+ $count++;
+ $self->{files}->{$file{filename}} = \%file;
+ push @{$self->{order}}, $file{filename};
+ }
+ }
+
+ return $count;
+}
+
+sub get_files {
+ my ($self) = @_;
+
+ return map { $self->{files}->{$_} } @{$self->{order}};
+}
+
+sub get_file {
+ my ($self, $filename) = @_;
+
+ return $self->{files}->{$filename};
+}
+
+sub add_file {
+ my ($self, $filename, $section, $priority) = @_;
+
+ # XXX: Ideally we'd need to parse the filename, to match the behaviour
+ # on parse(), and initialize the other attributes, although no code is
+ # in need of this for now, at least in dpkg-dev.
+
+ if (not defined $self->{files}->{$filename}) {
+ push @{$self->{order}}, $filename;
+ }
+
+ $self->{files}->{$filename} = {
+ filename => $filename,
+ section => $section,
+ priority => $priority,
+ };
+}
+
+sub del_file {
+ my ($self, $filename) = @_;
+
+ delete $self->{files}->{$filename};
+
+ @{$self->{order}} = grep { $_ ne $filename } @{$self->{order}};
+}
+
+sub output {
+ my ($self, $fh) = @_;
+ my $str = '';
+
+ binmode $fh if defined $fh;
+
+ foreach my $filename (@{$self->{order}}) {
+ my $file = $self->{files}->{$filename};
+ my $entry = "$filename $file->{section} $file->{priority}\n";
+
+ print { $fh } $entry if defined $fh;
+ $str .= $entry;
+ }
+
+ return $str;
+}
+
+1;