summaryrefslogtreecommitdiffstats
path: root/RPM4/lib/RPM4/Transaction/Problems.pm
blob: 3c0a40cfb88913c4b47c165429abf832b6963925 (plain)
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
##- Nanar <nanardon@zarb.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, 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, write to the Free Software
##- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# $Id$

use strict;
use warnings;

use RPM4;
use RPM4::Transaction;

package RPM4::Transaction::Problems;

sub new {
    my ($class, $ts) = @_;
    my $pbs = {
        _problems => $ts->_transpbs() || undef,
        _counter => -1,
    };

    $pbs->{_problems} or return undef;
    bless($pbs, $class);
}

sub count {
    my ($self) = @_;
    return $self->{_problems}->count();
}

sub init {
    my ($self) = @_;
    $self->{_counter} = -1;
}

sub hasnext {
    my ($self) = @_;
    return ++$self->{_counter} < $self->{_problems}->count();
}

sub problem {
    my ($self) = @_;
    return $self->{_problems}->fmtpb($self->{_counter});
}

sub is_ignore {
    my ($self) = @_;
    return $self->{_problems}->isignore($self->{_counter});
}

sub print_all {
    my ($self, $handle) = @_;
    $handle ||= *STDOUT;
    $self->{_problems}->print($handle);
}

1;

__END__

=head1 NAME

RPM4::Transaction::Problems

RPM4::Transaction

=head1 DESCRIPTION

This module an object for a collection of problems return by the rpmlib
when trying to install or removing rpms from the system. 

=head1 METHODS

=head2 new(ts)

Create a new problems collection from transaction. Return undef if now
problems has been found in the transaction.

=head2 $pbs->init

Reset internal index and set it to -1, see L<$deps-\\>hasnext()>

=head2 $pbs->hasnext

Advance to next dependency in the set.
Return FALSE if no further problem availlable, TRUE otherwise.

=head2 $pbs->problem

Return a format string about current problem in the set

=head2 $pbs->is_ignore

Return True if the problem should be ignored

=head2 $pbs->print_all($handle)

Print all error problems into the given handle, STDOUT if not specified.

=head1 SEE ALSO

L<RPM4>
L<RPM4::Db>