Server IP : 127.0.0.2 / Your IP : 52.14.93.216 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/perl5/Dpkg/Changelog/ |
Upload File : |
# Copyright © 2005, 2007 Frank Lichtenheld <frank@lichtenheld.de> # Copyright © 2009 Raphaël Hertzog <hertzog@debian.org> # Copyright © 2010, 2012-2015 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/>. =encoding utf8 =head1 NAME Dpkg::Changelog::Parse - generic changelog parser for dpkg-parsechangelog =head1 DESCRIPTION This module provides a set of functions which reproduce all the features of dpkg-parsechangelog. =cut package Dpkg::Changelog::Parse; use strict; use warnings; our $VERSION = '1.01'; our @EXPORT = qw( changelog_parse_debian changelog_parse_plugin changelog_parse ); use Exporter qw(import); use Dpkg (); use Dpkg::Util qw(none); use Dpkg::Gettext; use Dpkg::ErrorHandling; use Dpkg::Changelog::Debian; use Dpkg::Control::Changelog; =head1 FUNCTIONS =over 4 =item $fields = changelog_parse_debian(%opt) This function will parse a changelog. In list context, it returns as many Dpkg::Control objects as the parser did create. In scalar context, it will return only the first one. If the parser did not return any data, it will return an empty list in list context or undef on scalar context. If the parser failed, it will die. The changelog file that is parsed is F<debian/changelog> by default but it can be overridden with $opt{file}. The default output format is "dpkg" but it can be overridden with $opt{format}. The parsing itself is done by Dpkg::Changelog::Debian. =cut sub changelog_parse_debian { my (%options) = @_; # Setup and sanity checks. $options{file} //= 'debian/changelog'; $options{label} //= $options{file}; $options{format} //= 'dpkg'; $options{all} = 1 if exists $options{all}; if (none { defined $options{$_} } qw(since until from to offset count all)) { $options{count} = 1; } my $range; foreach my $opt (qw(since until from to offset count all)) { $range->{$opt} = $options{$opt} if exists $options{$opt}; } my $changes = Dpkg::Changelog::Debian->new(reportfile => $options{label}, range => $range); $changes->load($options{file}) or error(g_('fatal error occurred while parsing %s'), $options{file}); # Get the output into several Dpkg::Control objects. my @res; if ($options{format} eq 'dpkg') { push @res, $changes->dpkg($range); } elsif ($options{format} eq 'rfc822') { push @res, $changes->rfc822($range)->get(); } else { error(g_('unknown output format %s'), $options{format}); } if (wantarray) { return @res; } else { return $res[0] if @res; return; } } sub _changelog_detect_format { my $file = shift; my $format = 'debian'; # Extract the format from the changelog file if possible if ($file ne '-') { local $_; open my $format_fh, '-|', 'tail', '-n', '40', $file or syserr(g_('cannot create pipe for %s'), 'tail'); while (<$format_fh>) { $format = $1 if m/\schangelog-format:\s+([0-9a-z]+)\W/; } close $format_fh or subprocerr(g_('tail of %s'), $file); } return $format; } =item $fields = changelog_parse_plugin(%opt) This function will parse a changelog. In list context, it returns as many Dpkg::Control objects as the parser did output. In scalar context, it will return only the first one. If the parser did not return any data, it will return an empty list in list context or undef on scalar context. If the parser failed, it will die. The parsing itself is done by an external program (searched in the following list of directories: $opt{libdir}, F</usr/local/lib/dpkg/parsechangelog>, F</usr/lib/dpkg/parsechangelog>). That program is named according to the format that it is able to parse. By default it is either "debian" or the format name looked up in the 40 last lines of the changelog itself (extracted with this perl regular expression "\schangelog-format:\s+([0-9a-z]+)\W"). But it can be overridden with $opt{changelogformat}. The program expects the content of the changelog file on its standard input. The changelog file that is parsed is F<debian/changelog> by default but it can be overridden with $opt{file}. All the other keys in %opt are forwarded as parameter to the external parser. If the key starts with "-", it is passed as is. If not, it is passed as "--<key>". If the value of the corresponding hash entry is defined, then it is passed as the parameter that follows. =cut sub changelog_parse_plugin { my (%options) = @_; # Setup and sanity checks. $options{file} //= 'debian/changelog'; my @parserpath = ('/usr/local/lib/dpkg/parsechangelog', "$Dpkg::LIBDIR/parsechangelog", '/usr/lib/dpkg/parsechangelog'); my $format; # Extract and remove options that do not concern the changelog parser # itself (and that we shouldn't forward) delete $options{forceplugin}; if (exists $options{libdir}) { unshift @parserpath, $options{libdir}; delete $options{libdir}; } if (exists $options{changelogformat}) { $format = $options{changelogformat}; delete $options{changelogformat}; } else { $format = _changelog_detect_format($options{file}); } # Find the right changelog parser my $parser; foreach my $dir (@parserpath) { my $candidate = "$dir/$format"; next if not -e $candidate; if (-x _) { $parser = $candidate; last; } else { warning(g_('format parser %s not executable'), $candidate); } } error(g_('changelog format %s is unknown'), $format) if not defined $parser; # Create the arguments for the changelog parser my @exec = ($parser, "-l$options{file}"); foreach my $option (keys %options) { if ($option =~ m/^-/) { # Options passed untouched push @exec, $option; } else { # Non-options are mapped to long options push @exec, "--$option"; } push @exec, $options{$option} if defined $options{$option}; } # Fork and call the parser my $pid = open(my $parser_fh, '-|'); syserr(g_('cannot fork for %s'), $parser) unless defined $pid; if (not $pid) { exec @exec or syserr(g_('cannot execute format parser: %s'), $parser); } # Get the output into several Dpkg::Control objects my (@res, $fields); while (1) { $fields = Dpkg::Control::Changelog->new(); last unless $fields->parse($parser_fh, g_('output of changelog parser')); push @res, $fields; } close($parser_fh) or subprocerr(g_('changelog parser %s'), $parser); if (wantarray) { return @res; } else { return $res[0] if (@res); return; } } =item $fields = changelog_parse(%opt) This function will parse a changelog. In list context, it returns as many Dpkg::Control objects as the parser did create. In scalar context, it will return only the first one. If the parser did not return any data, it will return an empty list in list context or undef on scalar context. If the parser failed, it will die. If $opt{forceplugin} is false and $opt{changelogformat} is "debian", then changelog_parse_debian() is called to perform the parsing. Otherwise changelog_parse_plugin() is used. The changelog file that is parsed is F<debian/changelog> by default but it can be overridden with $opt{file}. =cut sub changelog_parse { my (%options) = @_; $options{forceplugin} //= 0; $options{file} //= 'debian/changelog'; $options{changelogformat} //= _changelog_detect_format($options{file}); if (not $options{forceplugin} and $options{changelogformat} eq 'debian') { return changelog_parse_debian(%options); } else { return changelog_parse_plugin(%options); } } =back =head1 CHANGES =head2 Version 1.01 (dpkg 1.18.2) New functions: changelog_parse_debian(), changelog_parse_plugin(). =head2 Version 1.00 (dpkg 1.15.6) Mark the module as public. =cut 1;