This file is indexed.

/usr/share/perl5/XMLTV/Ask/Term.pm is in libxmltv-perl 0.5.63-2.

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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# A few routines for asking the user questions.  Used in --configure
# and also by Makefile.PL, so this file should not depend on any
# nonstandard libraries.
#
#
package XMLTV::Ask::Term;
use strict;
use Carp qw(croak carp);
use Term::ReadKey;

# Use Log::TraceMessages if installed.
BEGIN {
    eval { require Log::TraceMessages };
    if ($@) {
	*t = sub {};
	*d = sub { '' };
    }
    else {
	*t = \&Log::TraceMessages::t;
	*d = \&Log::TraceMessages::d;
    }
}

sub ask( $$ );
sub ask_password( $$ );
sub ask_choice( $$$@ );
sub ask_boolean( $$$ );
sub ask_many_boolean( $$@ );
sub say( $$ );

# Ask a question with a free text answer.
# Parameters:
#   current module
#   question text
# Returns the text entered by the user.
sub ask( $$ )
{       
        shift;
        my $prompt = shift;
        chomp $prompt;
        $prompt .= ' ' if $prompt !~ /\s$/;
        print STDERR $prompt;
        my $r = <STDIN>;
        for ($r) {
                return undef if not defined;
                s/^\s+//;
                s/\s+$//;
                return $_;
        }
}

# Ask a question with a password answer.
# Parameters:
#   current module
#   question text
# Returns the text entered by the user.
sub ask_password( $$ )
{       
    
        shift;
        my $prompt = shift;
        chomp $prompt;
        $prompt .= ' ' if $prompt !~ /\s$/;
        print STDERR $prompt;
        Term::ReadKey::ReadMode('noecho');
        chomp( my $r = <STDIN> );
        Term::ReadKey::ReadMode('restore');
        print STDERR "\n";
        return $r;
}

# Ask a question where the answer is one of a set of alternatives.
#
# Parameters:
#   current module
#   question text
#   default choice
#   Remaining arguments are the choices available.
#
# Returns one of the choices, or undef if input could not be read.
#
sub ask_choice( $$$@ )
{
        shift;
        my $question=shift(@_); die if not defined $question;
        chomp $question;
        my $default=shift(@_); die if not defined $default;
        my @options=@_; die if not @options;
        t "asking question $question, default $default";
        croak "default $default not in options"
          if not grep { $_ eq $default } @options;

        my $options_size = length("@options");
        t "size of options: $options_size";
        my $all_digits = not ((my $tmp = join('', @options)) =~ tr/0-9//c);
        t "all digits? $all_digits";
        if ($options_size < 20 or $all_digits) {
                # Simple style, one line question.
                my $str = "$question [".join(',',@options)." (default=$default)] ";
                while ( 1 ) {
                        my $res=ask(undef, $str);
                        return undef if not defined $res;
                        return $default if $res eq '';
                        # Single character shortcut for yes/no questions
                        return 'yes' if $res =~ /^y$/i;
                        return 'no' if $res =~ /^n$/i;

                        # Check for exact match, then for substring matching.
                        foreach (@options) {
                                return $_ if $_ eq $res;
                        }
                        my @poss;
                        foreach (@options) {
                                push @poss, $_ if /\Q$res\E/i;
                        }
                        if (@poss == 1) {
                                # Unambiguous substring match.
                                return $poss[0];
                        }

                        print STDERR "invalid response, please choose one of ".join(',', @options)."\n\n";
                }
        }
        else {
                # Long list of options, present as numbered multiple choice.
                print STDERR "$question\n";
                my $optnum = 0;
                my (%num_to_choice, %choice_to_num);
                foreach (@options) {
                        print STDERR "$optnum: $_\n";
                        $num_to_choice{$optnum} = $_;
                        $choice_to_num{$_} = $optnum;
                        ++ $optnum;
                }
                $optnum--;
                my $r=undef;
                my $default_num = $choice_to_num{$default};
                die if not defined $default_num;
                until (defined $r) {
                        $r = ask_choice(undef, 'Select one:',
			     $default_num, 0 .. $optnum);
                        return undef if not defined $r;
                        for ($num_to_choice{$r}) { return $_ if defined }
                        print STDERR "invalid response, please choose one of "
                                .0 .. $optnum."\n\n";
                        undef $r;
                }
        }
}

# Ask a yes/no question.
#
# Parameters:
#   current module
#   question text
#   default (true or false)
#
# Returns true or false, or undef if input could not be read.
#
sub ask_boolean( $$$ )
{
        shift;
        my ($text, $default) = @_;
        my $r = ask_choice(undef, $text, ($default ? 'yes' : 'no'), 'yes', 'no');
        return undef if not defined $r;
        return 1 if $r eq 'yes';
        return 0 if $r eq 'no';
        die;
}

# Ask yes/no questions with option 'default to all'.
#
# Parameters:
#   current module
#   default (true or false),
#   question texts (one per question).
#
# Returns: lots of booleans, one for each question.  If input cannot
# be read, then a partial list is returned.
#
sub ask_many_boolean( $$@ )
{
        shift;
        my $default = shift;

        # Catch a common mistake - passing the answer string as default
        # instead of a Boolean.
        #
        carp "default is $default, should be 0 or 1"
                if $default ne '0' and $default ne '1';

        my @r;
        while (@_) {
                my $q = shift @_;
                my $r = ask_choice(undef, $q, ($default ? 'yes' : 'no'),
			    'yes', 'no', 'all', 'none');
                last if not defined $r;
                if ($r eq 'yes') {
                        push @r, 1;
                }
                elsif ($r eq 'no') {
                        push @r, 0;
                }
                elsif ($r eq 'all' or $r eq 'none') {
                        my $bool = ($r eq 'all');
                        push @r, $bool;
                        foreach (@_) {
                                print STDERR "$_ ", ($bool ? 'yes' : 'no'), "\n";
                                push @r, $bool;
                        }
                        last;
                }
                else { die }
        }
        return @r;
}

# Give some information to the user
# Parameters:
#   current module
#   text to show to the user
sub say( $$ )
{
        shift;
        my $question = shift;
        print STDERR "$question\n";
}

1;