/usr/share/perl5/News/Scan/Thread.pm is in libnews-scan-perl 0.53-3.
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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | # News::Scan::Thread
package News::Scan::Thread;
use strict;
use vars '$VERSION';
use Carp;
use News::Scan::Article;
$VERSION = '0.51';
sub new {
my $class = shift;
my $self = {};
my $art = shift;
my $subj = shift;
bless $self, $class;
$self->subject($subj);
$self->volume($art->size);
$self->articles(1);
$self->header_volume($art->header_size);
$self->header_lines($art->header_lines);
$self->body_volume($art->body_size);
$self->body_lines($art->body_lines);
$self->orig_volume($art->orig_size);
$self->orig_lines($art->orig_lines);
$self->sig_volume($art->sig_size);
$self->sig_lines($art->sig_lines);
$self;
}
sub subject {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_subject'} = shift;
}
else {
return $self->{'news_scan_thread_subject'};
}
}
sub volume {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_volume'} = shift;
}
else {
return $self->{'news_scan_thread_volume'};
}
}
sub articles {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_articles'} = shift;
}
else {
return $self->{'news_scan_thread_articles'};
}
}
sub header_volume {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_header_volume'} = shift;
}
else {
return $self->{'news_scan_thread_header_volume'};
}
}
sub header_lines {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_header_lines'} = shift;
}
else {
return $self->{'news_scan_thread_header_lines'};
}
}
sub body_volume {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_body_volume'} = shift;
}
else {
return $self->{'news_scan_thread_body_volume'};
}
}
sub body_lines {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_body_lines'} = shift;
}
else {
return $self->{'news_scan_thread_body_lines'};
}
}
sub orig_volume {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_orig_volume'} = shift;
}
else {
return $self->{'news_scan_thread_orig_volume'};
}
}
sub orig_lines {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_orig_lines'} = shift;
}
else {
return $self->{'news_scan_thread_orig_lines'};
}
}
sub sig_volume {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_sig_volume'} = shift;
}
else {
return $self->{'news_scan_thread_sig_volume'};
}
}
sub sig_lines {
my $self = shift;
if (@_) {
$self->{'news_scan_thread_sig_lines'} = shift;
}
else {
return $self->{'news_scan_thread_sig_lines'};
}
}
1;
__END__
=head1 NAME
News::Scan::Thread - keep track of threads in a Usenet newsgroup
=head1 SYNOPSIS
use News::Scan::Thread;
my $thr = News::Scan::Thread->new($news_scan_article_obj);
=head1 DESCRIPTION
This module provides a class whose objects can be used to keep track
of threads of discussion in a Usenet newsgroup.
=head1 CONSTRUCTOR
=over 4
=item new ( ARTICLE )
C<ARTICLE> should be a C<News::Scan::Article> object or an object of some
class derived from C<News::Scan::Article>.
C<new> performs some initialization and returns a C<News::Scan::Thread>.
=back
=head1 METHODS
=over 4
=item subject
Returns this thread's subject.
=item volume
Returns the volume in bytes generated in this thread.
=item articles
Returns the number of posts to this thread.
=item header_volume
Returns the volume in bytes of the headers in this thread's articles.
=item header_lines
Returns the number of header lines in this thread's articles.
=item body_volume
Returns the volume in bytes of the message bodies of this thread's articles.
=item body_lines
Returns the number of lines in this thread's message bodies.
=item orig_volume
Returns the volume in bytes of the original content of this thread's articles.
=item orig_lines
Returns the number of original lines in this thread's articles.
=item sig_volume
Returns the volume in bytes of the signatures of this thread's articles.
=item sig_lines
Returns the number of signature lines in this thread's articles.
=back
=head1 SEE ALSO
L<News::Scan>, L<News::Scan::Article>
=head1 AUTHOR
Greg Bacon <gbacon@cs.uah.edu>
=head1 COPYRIGHT
Copyright (c) 1997 Greg Bacon. All Rights Reserved.
This library is free software. You may distribute and/or modify it under
the same terms as Perl itself.
=cut
|