# python::code-analysis -- lintian check script -*- perl -*-
#
# Copyright © 2011, 2012, 2013 Jakub Wilk
#
# 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, you can find it on the World Wide
# Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301, USA.

package Lintian::python::code_analysis;

use strict;
use warnings;

use Cwd qw(getcwd);

use Lintian::Tags qw(tag);
use Lintian::Util qw(fail);

use Lintian::Python qw(classify_python_modules);

sub run {
    my ($pkg, $type, $info) = @_;
    my ($py2files, $py3files) = classify_python_modules($pkg, $info);
    my $cwd = getcwd();
    chdir $info->unpacked('.') or fail("cannot chdir to unpacked: $!");
    analyse($py2files, '/usr/bin/python', '-tt');
    analyse($py3files, '/usr/bin/python3') if -x '/usr/bin/python3';
    chdir $cwd or fail("cannot chdir back from unpacked: $!");
}

sub analyse {
    my ($files, @interpreter) = @_;
    open(my $fp, '-|', @interpreter, "$ENV{LINTIAN_ROOT}/helpers/code-analysis", @{$files}) or fail("cannot execute code-analysis helper");
    my $file;
    while (<$fp>) {
        if (m,^(\S+) (-|\d+)(?: (.+))?$,) {
            my $tag = $1;
            my $lineno = $2;
            my $extra = $3;
            my $message = $file;
            if ($lineno ne '-') {
                $message .= ":$lineno";
            }
            if (defined $extra) {
                $message .= ": $extra";
            }
            tag $tag, $message;
        } elsif (m,^# (.+)$,) {
            $file = $1;
        } else {
            chomp;
            fail("unexpected output from code-analysis helper: $_");
        }
    }
    close($fp) or fail("code-analysis helper failed");
}

1;

# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End:
# vim: syntax=perl sw=4 sts=4 sr et
