This file is indexed.

/usr/lib/obs/server/BSSched/EventSource/Retry.pm is in obs-server 2.7.1-10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# Copyright (c) 2015 SUSE LLC
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# 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 (see the file COPYING); if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#

package BSSched::EventSource::Retry;

use strict;
use warnings;

use Data::Dumper;

=head1

  Retry events

=cut


=head2 new - create a retry event source

 TODO

=cut

sub new {
  my ($class) = @_;
  my $self = {'queue' => []};
  return bless $self, $class;

}

=head2 addretryevent - add an event to the retry queue

 TODO

=cut

sub addretryevent {
  my ($self, $ev) = @_;
  for my $oev (@{$self->{'queue'}}) {
    next if $ev->{'type'} ne $oev->{'type'} || $ev->{'project'} ne $oev->{'project'};
    if ($ev->{'type'} eq 'repository' || $ev->{'type'} eq 'recheck') {
      next if $ev->{'repository'} ne $oev->{'repository'};
    } elsif ($ev->{'type'} eq 'package') {
      next if ($ev->{'package'} || '') ne ($oev->{'package'} || '');
    }
    return;
  }
  $ev->{'retry'} = time() + 60;
  push @{$self->{'queue'}}, $ev;
}

=head2 due - remove all due retry events from the retry queue

=cut

sub due {
  my ($self) = @_;
  my $events = $self->{'queue'};
  my $now = time();
  my @due = grep {$_->{'retry'} <= $now} @$events;
  return () unless @due;
  @$events = grep {$_->{'retry'} > $now} @$events;
  delete $_->{'retry'} for @due;
  return @due;
}

=head2 events - return all retry events without removing them from the queue

=cut

sub events {
  my ($self) = @_;
  return @{$self->{'queue'}};
}

=head2 count - return the number of queued retry events

=cut

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

1;