Subversion Repositories LCARS

Rev

Rev 31 | Rev 45 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31 Rev 33
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
use strict;
2
use strict;
3
use warnings;
3
use warnings;
4
require 5.004;
4
require 5.004;
5
5
6
#use diagnostics;
6
#use diagnostics;
7
use utf8;
7
use utf8;
8
8
9
## NOTE:
9
## NOTE:
10
## Enable and remove binmode when utf8::all has actually become lexically scoped
10
## Enable and remove binmode when utf8::all has actually become lexically scoped
11
# use utf8:all;
11
# use utf8:all;
12
12
13
use constant DEBUG => 0;
13
use constant DEBUG => 0;
14
14
15
## newsstat.pl
15
## newsstat.pl
16
## Copyright (C) 2011, 2012  Thomas Lahn <startrek@PointedEars.de>
16
## Copyright (C) 2011, 2012  Thomas Lahn <startrek@PointedEars.de>
17
## Based on work by Garry Knight et al.
17
## Based on work by Garry Knight et al.
18
##
18
##
19
## This program is free software: you can redistribute it and/or modify
19
## This program is free software: you can redistribute it and/or modify
20
## it under the terms of the GNU General Public License as published by
20
## it under the terms of the GNU General Public License as published by
21
## the Free Software Foundation, either version 3 of the License, or
21
## the Free Software Foundation, either version 3 of the License, or
22
## (at your option) any later version.
22
## (at your option) any later version.
23
##
23
##
24
## This program is distributed in the hope that it will be useful,
24
## This program is distributed in the hope that it will be useful,
25
## but WITHOUT ANY WARRANTY; without even the implied warranty of
25
## but WITHOUT ANY WARRANTY; without even the implied warranty of
26
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27
## GNU General Public License for more details.
27
## GNU General Public License for more details.
28
##
28
##
29
## You should have received a copy of the GNU General Public License
29
## You should have received a copy of the GNU General Public License
30
## along with this program.  If not, see <http://www.gnu.org/licenses/>.
30
## along with this program.  If not, see <http://www.gnu.org/licenses/>.
31
31
32
## Print out all text to STDOUT UTF-8 encoded
32
## Print out all text to STDOUT UTF-8 encoded
33
binmode STDOUT, ':encoding(UTF-8)';
33
binmode STDOUT, ':encoding(UTF-8)';
34
binmode STDERR, ':encoding(UTF-8)';
34
binmode STDERR, ':encoding(UTF-8)';
35
35
36
## L10n
36
## L10n
37
use locale ':not_characters';
37
use locale ':not_characters';
38
38
39
# setlocale( LC_MESSAGES, '' );
39
# setlocale( LC_MESSAGES, '' );
40
require Number::Format;
40
require Number::Format;
41
41
42
## i18n
42
## i18n
43
## FIXME: Automatically include resolved '.' in @INC
43
## FIXME: Automatically include resolved '.' in @INC
44
# print join "\n", @INC;
44
# print join "\n", @INC;
45
45
46
use Locale::TextDomain ('de.pointedears.newsstat');
46
use Locale::TextDomain ('de.pointedears.newsstat');
47
use POSIX              ('locale_h');
47
use POSIX              ('locale_h');
48
use Locale::Messages qw (bind_textdomain_filter
48
use Locale::Messages qw (bind_textdomain_filter
49
  bind_textdomain_codeset
49
  bind_textdomain_codeset
50
  turn_utf_8_on);
50
  turn_utf_8_on);
51
51
52
bind_textdomain_filter 'de.pointedears.newsstat',  \&turn_utf_8_on;
52
bind_textdomain_filter 'de.pointedears.newsstat',  \&turn_utf_8_on;
53
bind_textdomain_codeset 'de.pointedears.newsstat', 'utf-8';
53
bind_textdomain_codeset 'de.pointedears.newsstat', 'utf-8';
54
54
55
require Mail::Message;
55
require Mail::Message;
56
require DateTime;
56
require DateTime;
57
require DateTime::Format::Mail;
57
require DateTime::Format::Mail;
58
58
59
# See comments in previous example
59
# See comments in previous example
60
my ( $thousands_sep, $mon_thousands_sep, $grouping, $decimal_point ) =
60
my ( $thousands_sep, $mon_thousands_sep, $grouping, $decimal_point ) =
61
  @{ localeconv() }{ 'thousands_sep', 'mon_thousands_sep', 'grouping',
61
  @{ localeconv() }{ 'thousands_sep', 'mon_thousands_sep', 'grouping',
62
  'decimal_point' };
62
  'decimal_point' };
63
63
64
# Apply defaults if values are missing
64
# Apply defaults if values are missing
65
$thousands_sep = $mon_thousands_sep unless $thousands_sep;
65
$thousands_sep = $mon_thousands_sep unless $thousands_sep;
66
$thousands_sep = ' ' unless $thousands_sep;
66
$thousands_sep = ' ' unless $thousands_sep;
67
67
68
# grouping and mon_grouping are packed lists
68
# grouping and mon_grouping are packed lists
69
# of small integers (characters) telling the
69
# of small integers (characters) telling the
70
# grouping (thousand_seps and mon_thousand_seps
70
# grouping (thousand_seps and mon_thousand_seps
71
# being the group dividers) of numbers and
71
# being the group dividers) of numbers and
72
# monetary quantities.  The integers' meanings:
72
# monetary quantities.  The integers' meanings:
73
# 255 means no more grouping, 0 means repeat
73
# 255 means no more grouping, 0 means repeat
74
# the previous grouping, 1-254 means use that
74
# the previous grouping, 1-254 means use that
75
# as the current grouping.  Grouping goes from
75
# as the current grouping.  Grouping goes from
76
# right to left (low to high digits).  In the
76
# right to left (low to high digits).  In the
77
# below we cheat slightly by never using anything
77
# below we cheat slightly by never using anything
78
# else than the first grouping (whatever that is).
78
# else than the first grouping (whatever that is).
79
my @grouping;
79
my @grouping;
80
if ($grouping)
80
if ($grouping)
81
{
81
{
82
  @grouping = unpack( "C*", $grouping );
82
  @grouping = unpack( "C*", $grouping );
83
}
83
}
84
else
84
else
85
{
85
{
86
  @grouping = (3);
86
  @grouping = (3);
87
}
87
}
88
88
89
## FIXME: Why don't the defaults work already?
89
## FIXME: Why don't the defaults work already?
90
my $formatter = new Number::Format(
90
my $formatter = new Number::Format(
91
  -decimal_point => $decimal_point,
91
  -decimal_point => $decimal_point,
92
  -thousands_sep => $thousands_sep,
92
  -thousands_sep => $thousands_sep,
93
93
94
  # -grouping      => $grouping[0]
94
  # -grouping      => $grouping[0]
95
);
95
);
96
96
97
###################### USER CONFIGURATIONS ############################
97
###################### USER CONFIGURATIONS ############################
98
98
99
## The name of the group to do stats for
99
## The name of the group to do stats for
100
my $newsgroup_name = $ARGV[0];
100
my $newsgroup_name = $ARGV[0];
101
$newsgroup_name // usage();
101
$newsgroup_name // usage();
102
102
103
## Check for removal flags
103
## Check for removal flags
104
my $ix;
104
my $ix;
105
my $j;
105
my $j;
106
my %skipSec;
106
my %skipSec;
107
my @skiplist;
107
my @skiplist;
108
my $args = @ARGV;
108
my $args = @ARGV;
109
for ( $ix = 1 ; $ix < $args ; $ix++ )
109
for ( $ix = 1 ; $ix < $args ; $ix++ )
110
{
110
{
111
  $j = $ix + 1;
111
  $j = $ix + 1;
112
  if ( $ARGV[$ix] eq "-x" )
112
  if ( $ARGV[$ix] eq "-x" )
113
  {
113
  {
114
    @skiplist = split( ",", $ARGV[$j] );
114
    @skiplist = split( ",", $ARGV[$j] );
115
  }
115
  }
116
  elsif ( $ARGV[$ix] =~ /-x(\d.*)/ )
116
  elsif ( $ARGV[$ix] =~ /-x(\d.*)/ )
117
  {
117
  {
118
    @skiplist = split( ",", $1 );
118
    @skiplist = split( ",", $1 );
119
  }
119
  }
120
}
120
}
121
foreach (@skiplist)
121
foreach (@skiplist)
122
{
122
{
123
  $skipSec{$_} = 1;
123
  $skipSec{$_} = 1;
124
}
124
}
125
125
126
## Leafnode users will want /var/spool/news for this variable.
126
## Leafnode users will want /var/spool/news for this variable.
127
my $news = "/var/spool/news/";
127
my $news = "/var/spool/news/";
128
128
129
## Number of top or bottom posters to show
129
## Number of top or bottom posters to show
130
my $topposters = 20;
130
my $topposters = 20;
131
131
132
## Number of threads we want to know about
132
## Number of threads we want to know about
133
my $topthreads = 20;
133
my $topthreads = 20;
134
134
135
## Number of cross-posted threads to show
135
## Number of cross-posted threads to show
136
my $topcrossposts = 10;
136
my $topcrossposts = 10;
137
137
138
## Number of agents we list
138
## Number of agents we list
139
my $topagents = 10;
139
my $topagents = 10;
140
140
141
## Number of time zones to show
141
## Number of time zones to show
142
my $toptz = 10;
142
my $toptz = 10;
143
143
144
###################### DATA STRUCTURES ######################
144
###################### DATA STRUCTURES ######################
145
my $group = $newsgroup_name;
145
my $group = $newsgroup_name;
146
$group =~ s!\.!/!g;
146
$group =~ s!\.!/!g;
147
my %data;    # name, count, agent, total, orig, quoted
147
my %data;    # name, count, agent, total, orig, quoted
148
my $totsize = 0;    # holds total sizes of all files
148
my $totsize = 0;    # holds total sizes of all files
149
my %crossposts;     # group, count
149
my %crossposts;     # group, count
150
my %threads;        # subject, count
150
my %threads;        # subject, count
151
my $replies   = 0;  # total no. of replies
151
my $replies   = 0;  # total no. of replies
152
my $origposts = 0;  # total no. of original posts
152
my $origposts = 0;  # total no. of original posts
153
my %tz;             # timezones by count
153
my %tz;             # timezones by count
154
my $earliest;       # earliest article we have found
154
my $earliest;       # earliest article we have found
155
my $latest;         # latest article we have found
155
my $latest;         # latest article we have found
156
my $totheader = 0;  # total size of header material
156
my $totheader = 0;  # total size of header material
157
my $totbody   = 0;  # total size of body material
157
my $totbody   = 0;  # total size of body material
158
my $totsig    = 0;  # total size of sig material
158
my $totsig    = 0;  # total size of sig material
159
my $totquoted = 0;  # total size of quoted material
159
my $totquoted = 0;  # total size of quoted material
160
my $totorig   = 0;  # total size of original material
160
my $totorig   = 0;  # total size of original material
161
my $totalposts;     # total no. of posts considered
161
my $totalposts;     # total no. of posts considered
162
my %distinct_agent;
162
my %distinct_agent;
163
163
164
## Used to hold counts of User Agents used
164
## Used to hold counts of User Agents used
165
my %agents = (
165
my %agents = (
166
  "Compuserver"               => 0,
166
  "Compuserver"               => 0,
167
  "Foorum"                    => 0,
167
  "Foorum"                    => 0,
168
  "Forte Agent"               => 0,
168
  "Forte Agent"               => 0,
169
  "Forte Free Agent"          => 0,
169
  "Forte Free Agent"          => 0,
170
  "Gnus"                      => 0,
170
  "Gnus"                      => 0,
171
  "KNode"                     => 0,
171
  "KNode"                     => 0,
172
  "MacSOUP"                   => 0,
172
  "MacSOUP"                   => 0,
173
  "MT-NewsWatcher"            => 0,
173
  "MT-NewsWatcher"            => 0,
174
  "MicroPlanet Gravity"       => 0,
174
  "MicroPlanet Gravity"       => 0,
175
  "Microsoft Outlook Express" => 0,
175
  "Microsoft Outlook Express" => 0,
176
  "Microsoft Windows Mail"    => 0,
176
  "Microsoft Windows Mail"    => 0,
177
  "Mozilla"                   => 0,
177
  "Mozilla"                   => 0,
178
  "News Rover"                => 0,
178
  "News Rover"                => 0,
179
  "NN"                        => 0,
179
  "NN"                        => 0,
180
  "Pan"                       => 0,
180
  "Pan"                       => 0,
181
  "rn"                        => 0,
181
  "rn"                        => 0,
182
  "slrn"                      => 0,
182
  "slrn"                      => 0,
183
  "Sylpheed"                  => 0,
183
  "Sylpheed"                  => 0,
184
  "tin"                       => 0,
184
  "tin"                       => 0,
185
  "VSoup"                     => 0,
185
  "VSoup"                     => 0,
186
  "WebTV"                     => 0,
186
  "WebTV"                     => 0,
187
  "Xnews"                     => 0,
187
  "Xnews"                     => 0,
188
);
188
);
189
189
190
my $datetime_parser = DateTime::Format::Mail->new();
190
my $datetime_parser = DateTime::Format::Mail->new();
191
$datetime_parser->loose();
191
$datetime_parser->loose();
192
192
193
my $today = DateTime->today( time_zone => 'UTC' );
193
my $today = DateTime->today( time_zone => 'UTC' );
194
my $prev_month = $today->clone()->subtract( months => 1 )->set_day(1);
194
my $prev_month = $today->clone()->subtract( months => 1 )->set_day(1);
195
my $start      = int $prev_month->strftime('%s');
195
my $start      = int $prev_month->strftime('%s');
196
my $numdays    = int DateTime->last_day_of_month(
196
my $numdays    = int DateTime->last_day_of_month(
197
  year      => $prev_month->year(),
197
  year      => $prev_month->year(),
198
  month     => $prev_month->month(),
198
  month     => $prev_month->month(),
199
  time_zone => $prev_month->time_zone(),
199
  time_zone => $prev_month->time_zone(),
200
)->day();
200
)->day();
201
my $end = int $today->clone()->set_day(1)->strftime('%s');
201
my $end = int $today->clone()->set_day(1)->strftime('%s');
202
202
203
dmsg( $start, " to ", $end ) if DEBUG;
203
dmsg( $start, " to ", $end ) if DEBUG;
204
204
205
chdir("$news$group")
205
chdir("$news$group")
206
  or die __x(
206
  or die __x(
207
  "Can't cd to {newsgroup}: {error}\n",
207
  "Can't cd to {newsgroup}: {error}\n",
208
  newsgroup => "$news$group",
208
  newsgroup => "$news$group",
209
  error     => $!
209
  error     => $!
210
  );
210
  );
211
opendir( DIR, "." )
211
opendir( DIR, "." )
212
  or die __x(
212
  or die __x(
213
  "Can't open {newsgroup}: {error}\n",
213
  "Can't open {newsgroup}: {error}\n",
214
  newsgroup => "$news$group",
214
  newsgroup => "$news$group",
215
  error     => $!
215
  error     => $!
216
  );
216
  );
217
217
218
while ( defined( my $filename = readdir(DIR) ) )
218
while ( defined( my $filename = readdir(DIR) ) )
219
{
219
{
220
  next unless -f $filename;    # only want real files
220
  next unless -f $filename;    # only want real files
221
  next if ( $filename eq ".overview" );    # real articles only
221
  next if ( $filename eq ".overview" );    # real articles only
222
222
223
  get_article($filename);                  # read in the article
223
  get_article($filename);                  # read in the article
224
}
224
}
225
closedir(DIR);                             # finished with the directory
225
closedir(DIR);                             # finished with the directory
226
226
227
dmsg("\nearliest: $earliest\nlatest:   $latest") if DEBUG;
227
dmsg("\nearliest: $earliest\nlatest:   $latest") if DEBUG;
228
228
229
## Post-processing
229
## Post-processing
230
count_agents();                            # count agents, collapsing versions
230
count_agents();                            # count agents, collapsing versions
231
fix_percent();
231
fix_percent();
232
232
233
write_data();
233
write_data();
234
display_results();
234
display_results();
235
235
236
########################################
236
########################################
237
## Get current article's header and body
237
## Get current article's header and body
238
########################################
238
########################################
239
sub get_article
239
sub get_article
240
{
240
{
241
  my $filename = shift;
241
  my $filename = shift;
242
242
243
  open( my $FILE, '<', $filename )
243
  open( my $FILE, '<', $filename )
244
    or
244
    or
245
    die __x( "Can't open {file}: {error}\n", file => $filename, error => $! );
245
    die __x( "Can't open {file}: {error}\n", file => $filename, error => $! );
246
  my $msg       = Mail::Message->read($FILE);
246
  my $msg       = Mail::Message->read($FILE);
247
  my $timestamp = $msg->timestamp();
247
  my $timestamp = $msg->timestamp();
248
  my $date      = $msg->study('Date');
248
  my $date      = $msg->study('Date');
249
249
250
  ## Disregard article if timestamp is not in range
250
  ## Disregard article if timestamp is not in range
251
  dmsg($timestamp) if DEBUG;
251
  dmsg($timestamp) if DEBUG;
252
  if ( $timestamp < $start || $timestamp >= $end )
252
  if ( $timestamp < $start || $timestamp >= $end )
253
  {
253
  {
254
    dmsg("Posting on $date ignored.") if DEBUG;
254
    dmsg("Posting on $date ignored.") if DEBUG;
255
    return;
255
    return;
256
  }
256
  }
257
257
258
  $totalposts++;    # bump count of articles considered
258
  $totalposts++;    # bump count of articles considered
259
259
260
  ## DEBUG
260
  ## DEBUG
261
  dmsg($date) if DEBUG;
261
  dmsg($date) if DEBUG;
262
262
263
  ## get stats about the file itself
263
  ## get stats about the file itself
264
  my $filesize = -s $filename;    # get total size of file
264
  my $filesize = -s $filename;    # get total size of file
265
  $totsize += $filesize;          # bump total sizes of all files
265
  $totsize += $filesize;          # bump total sizes of all files
266
266
267
  if ( ( not defined $earliest ) || $timestamp < $earliest )
267
  if ( ( not defined $earliest ) || $timestamp < $earliest )
268
  {
268
  {
269
    $earliest = $timestamp;
269
    $earliest = $timestamp;
270
  }
270
  }
271
  elsif ( ( not defined $latest ) || $timestamp > $latest )
271
  elsif ( ( not defined $latest ) || $timestamp > $latest )
272
  {
272
  {
273
    $latest = $timestamp;
273
    $latest = $timestamp;
274
  }
274
  }
275
275
276
  #print "timestamp: $timestamp\n";
276
  #print "timestamp: $timestamp\n";
277
277
278
  ## count header size
278
  ## count header size
279
  $totheader += $msg->head()->size();
279
  $totheader += $msg->head()->size();
280
280
281
  ## get the poster's name (MIME-decoded, in UTF-8)
281
  ## get the poster's name (MIME-decoded, in UTF-8)
282
  my $poster = $msg->study('From');
282
  my $poster = $msg->study('From');
283
  if ( defined $poster )
283
  if ( defined $poster )
284
  {
284
  {
285
    ## Convert old to new format
285
    ## Convert old to new format
286
    $poster =~ s/^\s*(.+?\@.+?)\s*\((.+?)\)\s*$/$2 <$1>/;
286
    $poster =~ s/^\s*(.+?\@.+?)\s*\((.+?)\)\s*$/$2 <$1>/;
287
287
288
    ## Collapse whitespace
288
    ## Collapse whitespace
289
    $poster =~ s/\s+/ /g;
289
    $poster =~ s/\s+/ /g;
290
290
291
    ## Remove outer quotes; TODO: observe RFC 5322 strictly
291
    ## Remove outer quotes; TODO: observe RFC 5322 strictly
292
    $poster =~ s/^ " (.+ ) " \s+ (.*)/$1 $2/x;
292
    $poster =~ s/^ " (.+ ) " \s+ (.*)/$1 $2/x;
293
293
294
    ## DEBUG
294
    ## DEBUG
295
    dmsg($poster) if DEBUG;
295
    dmsg($poster) if DEBUG;
296
296
297
    ## seen this one before?
297
    ## seen this one before?
298
    if ( !defined( $data{$poster} ) )
298
    if ( !defined( $data{$poster} ) )
299
    {
299
    {
300
      $data{$poster}{'agent'}  = __ 'unknown';    # comes after For: field
300
      $data{$poster}{'agent'}  = __ 'unknown';    # comes after For: field
301
      $data{$poster}{'orig'}   = 0;
301
      $data{$poster}{'orig'}   = 0;
302
      $data{$poster}{'quoted'} = 0;
302
      $data{$poster}{'quoted'} = 0;
303
    }
303
    }
304
    $data{$poster}{'count'}++;                    # bump count for this poster
304
    $data{$poster}{'count'}++;                    # bump count for this poster
305
    $data{$poster}{'size'} += $filesize;          # total size of file
305
    $data{$poster}{'size'} += $filesize;          # total size of file
306
306
307
    ## The User-Agent and/or X-Newsreader fields
307
    ## The User-Agent and/or X-Newsreader fields
308
    ## for User-Agent by poster
308
    ## for User-Agent by poster
309
    my $ua = $msg->study('User-Agent') // $msg->study('X-Newsreader');
309
    my $ua = $msg->study('User-Agent') // $msg->study('X-Newsreader');
310
    if ( defined $ua )
310
    if ( defined $ua )
311
    {
311
    {
312
      $data{$poster}{'agent'} = $ua;
312
      $data{$poster}{'agent'} = $ua;
313
313
314
      ## DEBUG
314
      ## DEBUG
315
      dmsg($ua) if DEBUG;
315
      dmsg($ua) if DEBUG;
316
    }
316
    }
317
317
318
    ## The User Agent for User-Agent by number of posts
318
    ## The User Agent for User-Agent by number of posts
319
    get_agent($msg);
319
    get_agent($msg);
320
320
321
    ## Get all cross-posted newsgroups
321
    ## Get all cross-posted newsgroups
322
    for ( split( /,/, $msg->study('Newsgroups') ) )
322
    for ( split( /,/, $msg->study('Newsgroups') ) )
323
    {
323
    {
324
      $crossposts{$_}++;    # bump count for each
324
      $crossposts{$_}++;    # bump count for each
325
    }
325
    }
326
326
327
    ## Get threads
327
    ## Get threads
328
    my $thread = $msg->study('Subject');
328
    my $thread = $msg->study('Subject');
329
    $thread =~ s/^re:\s+//i;    # Remove Re: or re: at start
329
    $thread =~ s/^\s*re:\s*//i;    # Remove Re: or re: at the start
-
 
330
    $thread =~ s/\s*\(was:\s*.*\)\s*$//i;    # Remove (was: ...) at the end
330
    $thread =~ s/\s+/ /g;       # collapse whitespace
331
    $thread =~ s/\s+/ /g;       # collapse whitespace
331
    $threads{$thread}{'count'}++;    # bump count of this subject
332
    $threads{$thread}{'count'}++;    # bump count of this subject
332
    $threads{$thread}{'size'} += $filesize;    # bump bytes for this thread
333
    $threads{$thread}{'size'} += $filesize;    # bump bytes for this thread
333
334
334
    ## Is this an original post or a reply?
335
    ## Is this an original post or a reply?
335
    if ( defined $msg->study('References') )
336
    if ( defined $msg->study('References') )
336
    {
337
    {
337
      $replies++;
338
      $replies++;
338
    }
339
    }
339
    else
340
    else
340
    {
341
    {
341
      $origposts++;
342
      $origposts++;
342
    }
343
    }
343
344
344
    ## Get the time zone
345
    ## Get the time zone
345
    my $datetime = $datetime_parser->parse_datetime($date);
346
    my $datetime = $datetime_parser->parse_datetime($date);
346
    my $tz       = $datetime->strftime('%z');
347
    my $tz       = $datetime->strftime('%z');
347
    $tz = "UTC" if $tz =~ m{^(?:GMT|0000)$}o;
348
    $tz = "UTC" if $tz =~ m{^(?:GMT|0000)$}o;
348
    $tz{$tz}++;
349
    $tz{$tz}++;
349
350
350
    ## DEBUG
351
    ## DEBUG
351
    dmsg($tz) if DEBUG;
352
    dmsg($tz) if DEBUG;
352
353
353
#### Now analyse the body text ####
354
#### Now analyse the body text ####
354
    my $body = $msg->body();
355
    my $body = $msg->body();
355
356
356
    my $insig = 0;
357
    my $insig = 0;
357
    my @body  = $body->lines;
358
    my @body  = $body->lines;
358
    for (@body)
359
    for (@body)
359
    {
360
    {
360
      $totbody += length($_);    # bump total body size
361
      $totbody += length($_);    # bump total body size
361
      next if (m{^$>}o);         # don't count blank lines in body
362
      next if (m{^$>}o);         # don't count blank lines in body
362
      if ( $insig == 1 )
363
      if ( $insig == 1 )
363
      {
364
      {
364
365
365
        # bump total sig size
366
        # bump total sig size
366
        $totsig += length($_);
367
        $totsig += length($_);
367
      }
368
      }
368
      ## are we in a quote line?
369
      ## are we in a quote line?
369
      ## Bill Unruh uses ] quotes, and another poster uses ::
370
      ## Bill Unruh uses ] quotes, and another poster uses ::
370
      elsif ( m{^\s*[>\]]}o || m{^\s*::}o )
371
      elsif ( m{^\s*[>\]]}o || m{^\s*::}o )
371
      {
372
      {
372
        ## bump count of quoted chrs
373
        ## bump count of quoted chrs
373
        $data{$poster}{'quoted'} += length($_);
374
        $data{$poster}{'quoted'} += length($_);
374
        $totquoted += length($_);
375
        $totquoted += length($_);
375
      }
376
      }
376
      elsif (/^-- $/)
377
      elsif (/^-- $/)
377
      {
378
      {
378
        $insig = 1;
379
        $insig = 1;
379
      }
380
      }
380
      else
381
      else
381
      {
382
      {
382
        ## We must be processing an original line
383
        ## We must be processing an original line
383
        $data{$poster}{'orig'} += length($_);    # bump count of original chrs
384
        $data{$poster}{'orig'} += length($_);    # bump count of original chrs
384
        $totorig += length($_);
385
        $totorig += length($_);
385
      }
386
      }
386
    }
387
    }
387
388
388
    # end for (@body)
389
    # end for (@body)
389
  }
390
  }
390
391
391
  close($FILE);
392
  close($FILE);
392
}
393
}
393
394
394
sub get_agent
395
sub get_agent
395
{
396
{
396
  my $msg = shift;
397
  my $msg = shift;
397
398
398
  my $ua = $msg->study('User-Agent') // $msg->study('X-Newsreader')
399
  my $ua = $msg->study('User-Agent') // $msg->study('X-Newsreader')
399
    // $msg->study('X-Mailer');
400
    // $msg->study('X-Mailer');
400
401
401
  if ( not defined $ua )
402
  if ( not defined $ua )
402
  {
403
  {
403
    my $org = $msg->study('Organization');
404
    my $org = $msg->study('Organization');
404
    if ( defined $org
405
    if ( defined $org
405
      and $org =~ /groups\.google|AOL|Supernews|WebTV|compuserve/ )
406
      and $org =~ /groups\.google|AOL|Supernews|WebTV|compuserve/ )
406
    {
407
    {
407
      $ua = $org;
408
      $ua = $org;
408
    }
409
    }
409
    elsif ( $msg->study('Message-ID') =~ /pine/i )
410
    elsif ( $msg->study('Message-ID') =~ /pine/i )
410
    {
411
    {
411
      $ua = "Pine";
412
      $ua = "Pine";
412
    }
413
    }
413
  }
414
  }
414
415
415
  ## Hopefully found UA, else set to unknown
416
  ## Hopefully found UA, else set to unknown
416
  if ( not defined $ua )
417
  if ( not defined $ua )
417
  {
418
  {
418
    $ua = __ "unknown";
419
    $ua = __ "unknown";
419
  }
420
  }
420
421
421
  $ua = clean($ua);
422
  $ua = clean($ua);
422
423
423
  my $raw   = $ua;
424
  my $raw   = $ua;
424
  my $agent = $raw;
425
  my $agent = $raw;
425
426
426
  ## strip http
427
  ## strip http
427
  if ( $raw =~ /.*http.*/ )
428
  if ( $raw =~ /.*http.*/ )
428
  {
429
  {
429
    $raw =~ s!posted via!!i;
430
    $raw =~ s!posted via!!i;
430
    $raw =~ s!http://!!g;
431
    $raw =~ s!http://!!g;
431
    $raw =~ s!/!!g;
432
    $raw =~ s!/!!g;
432
    $raw =~ s! !!g;
433
    $raw =~ s! !!g;
433
  }
434
  }
434
435
435
  ## Fix Outlook from Mac
436
  ## Fix Outlook from Mac
436
  if ( $raw =~ /^microsoft/i )
437
  if ( $raw =~ /^microsoft/i )
437
  {
438
  {
438
    $raw =~ s/-/ /g;
439
    $raw =~ s/-/ /g;
439
  }
440
  }
440
441
441
  ## Pick out the popular agents
442
  ## Pick out the popular agents
442
  if ( $raw =~ /(outlook express)/i
443
  if ( $raw =~ /(outlook express)/i
443
    || $raw =~ /(windows mail)/i
444
    || $raw =~ /(windows mail)/i
444
    || $raw =~ /(microplanet gravity)/i
445
    || $raw =~ /(microplanet gravity)/i
445
    || $raw =~ /(news rover)/i
446
    || $raw =~ /(news rover)/i
446
    || $raw =~ /(forte agent)/i
447
    || $raw =~ /(forte agent)/i
447
    || $raw =~ /(forte free agent)/i )
448
    || $raw =~ /(forte free agent)/i )
448
  {
449
  {
449
    $agent = $1;
450
    $agent = $1;
450
  }
451
  }
451
  elsif (
452
  elsif (
452
    $raw =~ /^(
453
    $raw =~ /^(
453
        pan
454
        pan
454
       |sylpheed
455
       |sylpheed
455
       |slrn
456
       |slrn
456
       |mozilla
457
       |mozilla
457
       |knode
458
       |knode
458
       |tin
459
       |tin
459
       |hamster
460
       |hamster
460
       |xrn
461
       |xrn
461
       |xnews
462
       |xnews
462
       |aol
463
       |aol
463
       |gnus
464
       |gnus
464
       |krn
465
       |krn
465
       |macsoup
466
       |macsoup
466
       |messenger
467
       |messenger
467
       |openxp
468
       |openxp
468
       |pine
469
       |pine
469
       |thoth
470
       |thoth
470
       |turnpike
471
       |turnpike
471
       |winvn
472
       |winvn
472
       |vsoup
473
       |vsoup
473
       |google
474
       |google
474
       |supernews
475
       |supernews
475
       |nn
476
       |nn
476
       |rn
477
       |rn
477
       |007
478
       |007
478
       |webtv
479
       |webtv
479
       |compuserve
480
       |compuserve
480
       )/ix
481
       )/ix
481
    )
482
    )
482
  {
483
  {
483
    $agent = $1;
484
    $agent = $1;
484
  }
485
  }
485
  else
486
  else
486
  {
487
  {
487
    ## Clean up unknown agents
488
    ## Clean up unknown agents
488
    if ( $raw =~ m!^(.*?)/! )
489
    if ( $raw =~ m!^(.*?)/! )
489
    {
490
    {
490
      $agent = $1;
491
      $agent = $1;
491
    }
492
    }
492
    elsif ( $raw =~ /^(\w*)\d.*/ )
493
    elsif ( $raw =~ /^(\w*)\d.*/ )
493
    {
494
    {
494
      $agent = $1;
495
      $agent = $1;
495
    }
496
    }
496
  }
497
  }
497
498
498
  $distinct_agent{$agent}++;
499
  $distinct_agent{$agent}++;
499
  return $agent;
500
  return $agent;
500
}
501
}
501
## get_agent
502
## get_agent
502
503
503
#########################################
504
#########################################
504
## Count the User-Agents used, collapsing
505
## Count the User-Agents used, collapsing
505
## different versions into one per agent.
506
## different versions into one per agent.
506
#########################################
507
#########################################
507
sub count_agents
508
sub count_agents
508
{
509
{
509
POSTER:
510
POSTER:
510
  foreach my $poster ( keys %data )
511
  foreach my $poster ( keys %data )
511
  {
512
  {
512
    foreach my $agent_name ( keys %distinct_agent )
513
    foreach my $agent_name ( keys %distinct_agent )
513
    {    # check against known ones
514
    {    # check against known ones
514
      if ( $data{$poster}{'agent'} =~ /\Q$agent_name\E/ )
515
      if ( $data{$poster}{'agent'} =~ /\Q$agent_name\E/ )
515
      {
516
      {
516
        $agents{$agent_name}++;
517
        $agents{$agent_name}++;
517
        next POSTER;
518
        next POSTER;
518
      }
519
      }
519
    }
520
    }
520
    $agents{ $data{$poster}{'agent'} }++;
521
    $agents{ $data{$poster}{'agent'} }++;
521
  }
522
  }
522
}    # count_agents
523
}    # count_agents
523
524
524
#############################################
525
#############################################
525
## Set orig/total percentages for all posters
526
## Set orig/total percentages for all posters
526
#############################################
527
#############################################
527
sub fix_percent
528
sub fix_percent
528
{
529
{
529
  foreach my $poster ( keys %data )
530
  foreach my $poster ( keys %data )
530
  {
531
  {
531
    my $percent = 100;
532
    my $percent = 100;
532
    if ( ( $data{$poster}{'orig'} != 0 ) and ( $data{$poster}{'quoted'} != 0 ) )
533
    if ( ( $data{$poster}{'orig'} != 0 ) and ( $data{$poster}{'quoted'} != 0 ) )
533
    {
534
    {
534
      $percent =
535
      $percent =
535
        $data{$poster}{'orig'} * 100 /
536
        $data{$poster}{'orig'} * 100 /
536
        ( $data{$poster}{'quoted'} + $data{$poster}{'orig'} );    #/
537
        ( $data{$poster}{'quoted'} + $data{$poster}{'orig'} );    #/
537
    }
538
    }
538
    elsif ( $data{$poster}{'orig'} == 0 )
539
    elsif ( $data{$poster}{'orig'} == 0 )
539
    {
540
    {
540
      $percent = 0;
541
      $percent = 0;
541
    }
542
    }
542
    $data{$poster}{'percent'} = $percent;
543
    $data{$poster}{'percent'} = $percent;
543
  }
544
  }
544
}
545
}
545
## fix_percent
546
## fix_percent
546
547
547
##################################
548
##################################
548
## Write data structures to a file
549
## Write data structures to a file
549
##################################
550
##################################
550
sub write_data
551
sub write_data
551
{
552
{
552
  open( my $OUTF, ">:encoding(UTF-8)", "/tmp/XDATA" )
553
  open( my $OUTF, ">:encoding(UTF-8)", "/tmp/XDATA" )
553
    or die __x( "Can't create XDATA: {error}\n", error => $! );
554
    or die __x( "Can't create XDATA: {error}\n", error => $! );
554
  print $OUTF "Data collected from $newsgroup_name\n\n";
555
  print $OUTF "Data collected from $newsgroup_name\n\n";
555
  print $OUTF
556
  print $OUTF
556
    "Poster Data\nname : agent : count : size: orig : quoted : per cent\n";
557
    "Poster Data\nname : agent : count : size: orig : quoted : per cent\n";
557
  foreach my $name ( keys %data )
558
  foreach my $name ( keys %data )
558
  {
559
  {
559
    print $OUTF
560
    print $OUTF
560
"$name : $data{$name}{'agent'} : $data{$name}{'count'} : $data{$name}{'size'} : $data{$name}{'orig'} : $data{$name}{'quoted'} : $data{$name}{'percent'}\n";
561
"$name : $data{$name}{'agent'} : $data{$name}{'count'} : $data{$name}{'size'} : $data{$name}{'orig'} : $data{$name}{'quoted'} : $data{$name}{'percent'}\n";
561
  }
562
  }
562
  print $OUTF
563
  print $OUTF
563
"============================================================================\n";
564
"============================================================================\n";
564
  print $OUTF "Thread subjects\n";
565
  print $OUTF "Thread subjects\n";
565
  print $OUTF
566
  print $OUTF
566
"----------------------------------------------------------------------------\n";
567
"----------------------------------------------------------------------------\n";
567
  foreach my $thread ( sort { "\L$a" cmp "\L$b" } keys %threads )
568
  foreach my $thread ( sort { "\L$a" cmp "\L$b" } keys %threads )
568
  {
569
  {
569
    print $OUTF
570
    print $OUTF
570
      "$thread : $threads{$thread}{'count'} : $threads{$thread}{'size'}\n";
571
      "$thread : $threads{$thread}{'count'} : $threads{$thread}{'size'}\n";
571
  }
572
  }
572
  print $OUTF
573
  print $OUTF
573
"============================================================================\n";
574
"============================================================================\n";
574
  print $OUTF "Cross-posts\n";
575
  print $OUTF "Cross-posts\n";
575
  print $OUTF
576
  print $OUTF
576
"----------------------------------------------------------------------------\n";
577
"----------------------------------------------------------------------------\n";
577
  foreach my $name ( sort keys %crossposts )
578
  foreach my $name ( sort keys %crossposts )
578
  {
579
  {
579
    print $OUTF "$name : $crossposts{$name}\n";
580
    print $OUTF "$name : $crossposts{$name}\n";
580
  }
581
  }
581
  print $OUTF
582
  print $OUTF
582
"============================================================================\n";
583
"============================================================================\n";
583
  print $OUTF "User agents\n";
584
  print $OUTF "User agents\n";
584
  print $OUTF
585
  print $OUTF
585
"----------------------------------------------------------------------------\n";
586
"----------------------------------------------------------------------------\n";
586
  foreach my $name ( sort keys %agents )
587
  foreach my $name ( sort keys %agents )
587
  {
588
  {
588
    print $OUTF "$name : $agents{$name}\n";
589
    print $OUTF "$name : $agents{$name}\n";
589
  }
590
  }
590
  print $OUTF
591
  print $OUTF
591
"============================================================================\n";
592
"============================================================================\n";
592
  print $OUTF "Time zones\n";
593
  print $OUTF "Time zones\n";
593
  print $OUTF
594
  print $OUTF
594
"----------------------------------------------------------------------------\n";
595
"----------------------------------------------------------------------------\n";
595
  foreach my $name ( sort keys %tz )
596
  foreach my $name ( sort keys %tz )
596
  {
597
  {
597
    print $OUTF "$name : $tz{$name}\n";
598
    print $OUTF "$name : $tz{$name}\n";
598
  }
599
  }
599
  close $OUTF;
600
  close $OUTF;
600
}    # write_data
601
}    # write_data
601
602
602
sub display_results
603
sub display_results
603
{
604
{
604
  #################### DISPLAY RESULTS #####################
605
  #################### DISPLAY RESULTS #####################
605
  println( "=" x 76 );
606
  println( "=" x 76 );
606
  printf "%s\n",
607
  printf "%s\n",
607
    centred(
608
    centred(
608
    __x( "Analysis of posts to {newsgroup}", newsgroup => $newsgroup_name ),
609
    __x( "Analysis of posts to {newsgroup}", newsgroup => $newsgroup_name ),
609
    76 );
610
    76 );
610
  println( "=" x 76 );
611
  println( "=" x 76 );
611
  printf "%s\n",
612
  printf "%s\n",
612
    centred(
613
    centred(
613
    __(
614
    __(
614
"(compiled with a script by Thomas 'PointedEars' Lahn, based on work by\nGarry Knight et al.)"
615
"(compiled with a script by Thomas 'PointedEars' Lahn, based on work by\nGarry Knight et al.)"
615
    ),
616
    ),
616
    76
617
    76
617
    );
618
    );
618
  print "\n\n";
619
  print "\n\n";
619
  printf __"Total posts considered: %s over %d days\n",
620
  printf __"Total posts considered: %s over %d days\n",
620
    $formatter->format_number($totalposts),
621
    $formatter->format_number($totalposts),
621
    $formatter->format_number($numdays);
622
    $formatter->format_number($numdays);
622
  my $time_locale       = setlocale(LC_TIME);
623
  my $time_locale       = setlocale(LC_TIME);
623
  my $earliest_datetime = DateTime->from_epoch(
624
  my $earliest_datetime = DateTime->from_epoch(
624
    epoch     => $earliest,
625
    epoch     => $earliest,
625
    locale    => $time_locale,
626
    locale    => $time_locale,
626
    time_zone => 'UTC',
627
    time_zone => 'UTC',
627
  );
628
  );
628
  my $latest_datetime = DateTime->from_epoch(
629
  my $latest_datetime = DateTime->from_epoch(
629
    epoch     => $latest,
630
    epoch     => $latest,
630
    locale    => $time_locale,
631
    locale    => $time_locale,
631
    time_zone => 'UTC',
632
    time_zone => 'UTC',
632
  );
633
  );
633
  my $datetime_format = '%a, %Y-%m-%dT%H:%M:%S %Z';
634
  my $datetime_format = '%a, %Y-%m-%dT%H:%M:%S %Z';
634
  printf __"Earliest article: %s\n",
635
  printf __"Earliest article: %s\n",
635
    $earliest_datetime->strftime($datetime_format);
636
    $earliest_datetime->strftime($datetime_format);
636
  printf __"Latest article:   %s\n",
637
  printf __"Latest article:   %s\n",
637
    $latest_datetime->strftime($datetime_format);
638
    $latest_datetime->strftime($datetime_format);
638
  printf __"Original articles: %s; replies: %s\n",
639
  printf __"Original articles: %s; replies: %s\n",
639
    $formatter->format_number($origposts),
640
    $formatter->format_number($origposts),
640
    $formatter->format_number($replies);
641
    $formatter->format_number($replies);
641
  printf __"Total size of posts: %s bytes (%s)" . "\n",
642
  printf __"Total size of posts: %s bytes (%s)" . "\n",
642
    $formatter->format_number($totsize),
643
    $formatter->format_number($totsize),
643
    $formatter->format_bytes( $totsize, ( 'precision' => 1, 'mode' => 'iec' ) );
644
    $formatter->format_bytes( $totsize, ( 'precision' => 1, 'mode' => 'iec' ) );
644
  printf __"Average %s articles per day, %s per day, %s bytes per article\n",
645
  printf __"Average %s articles per day, %s per day, %s bytes per article\n",
645
    $formatter->format_number( int( $totalposts / $numdays ) ),
646
    $formatter->format_number( int( $totalposts / $numdays ) ),
646
    $formatter->format_bytes( $totsize / $numdays, ( 'mode' => 'iec' ) ),
647
    $formatter->format_bytes( $totsize / $numdays, ( 'mode' => 'iec' ) ),
647
    $formatter->format_number( int( $totsize / $totalposts ) );
648
    $formatter->format_number( int( $totsize / $totalposts ) );
648
649
649
  my $count = keys %data;
650
  my $count = keys %data;
650
  printf __"Total headers: %s; bodies: %s\n",
651
  printf __"Total headers: %s; bodies: %s\n",
651
    $formatter->format_bytes(
652
    $formatter->format_bytes(
652
    $totheader, ( 'precision' => 1, 'mode' => 'iec' )
653
    $totheader, ( 'precision' => 1, 'mode' => 'iec' )
653
    ),
654
    ),
654
    $formatter->format_bytes( $totbody, ( 'precision' => 1, 'mode' => 'iec' ) );
655
    $formatter->format_bytes( $totbody, ( 'precision' => 1, 'mode' => 'iec' ) );
655
  printf __
656
  printf __
656
    "Body text - quoted: %s; original: %s = %s%%; sigs: %s\n",
657
    "Body text - quoted: %s; original: %s = %s%%; sigs: %s\n",
657
    $formatter->format_bytes(
658
    $formatter->format_bytes(
658
    $totquoted, ( 'precision' => 1, 'mode' => 'iec' )
659
    $totquoted, ( 'precision' => 1, 'mode' => 'iec' )
659
    ),
660
    ),
660
    $formatter->format_bytes( $totorig, ( 'precision' => 1, 'mode' => 'iec' ) ),
661
    $formatter->format_bytes( $totorig, ( 'precision' => 1, 'mode' => 'iec' ) ),
661
    $formatter->format_number( ( $totorig * 100 ) / ( $totorig + $totquoted ) ),
662
    $formatter->format_number( ( $totorig * 100 ) / ( $totorig + $totquoted ) ),
662
    $formatter->format_bytes( $totsig, ( 'precision' => 1, 'mode' => 'iec' ) );
663
    $formatter->format_bytes( $totsig, ( 'precision' => 1, 'mode' => 'iec' ) );
663
  printf __"Total number of posters: %s, average %s per poster\n",
664
  printf __"Total number of posters: %s, average %s per poster\n",
664
    $formatter->format_number($count),
665
    $formatter->format_number($count),
665
    $formatter->format_bytes( $totsize / $count,
666
    $formatter->format_bytes( $totsize / $count,
666
    ( 'precision' => 1, 'mode' => 'iec' ) );
667
    ( 'precision' => 1, 'mode' => 'iec' ) );
667
  $count = keys %threads;
668
  $count = keys %threads;
668
  printf __"Total number of threads: %s, average %s per thread\n",
669
  printf __"Total number of threads: %s, average %s per thread\n",
669
    $formatter->format_number($count),
670
    $formatter->format_number($count),
670
    $formatter->format_bytes( $totsize / $count,
671
    $formatter->format_bytes( $totsize / $count,
671
    ( 'precision' => 1, 'mode' => 'iec' ) );
672
    ( 'precision' => 1, 'mode' => 'iec' ) );
672
  printf __"Total number of user agents: %d\n",
673
  printf __"Total number of user agents: %d\n",
673
    $formatter->format_number( scalar keys %agents );
674
    $formatter->format_number( scalar keys %agents );
674
  print "\n", "=" x 76, "\n";
675
  print "\n", "=" x 76, "\n";
675
  ########################################
676
  ########################################
676
  ## Show posters by article count  Sec 1;
677
  ## Show posters by article count  Sec 1;
677
  ########################################
678
  ########################################
678
  unless ( $skipSec{1} )
679
  unless ( $skipSec{1} )
679
  {
680
  {
680
    if ( keys %data < $topposters )
681
    if ( keys %data < $topposters )
681
    {
682
    {
682
      $count = keys %data;
683
      $count = keys %data;
683
    }
684
    }
684
    else
685
    else
685
    {
686
    {
686
      $count = $topposters;
687
      $count = $topposters;
687
    }
688
    }
688
    printf "%s\n",
689
    printf "%s\n",
689
      centred(
690
      centred(
690
      __x( "Top {count} posters by number of articles", count => $topposters ),
691
      __x( "Top {count} posters by number of articles", count => $topposters ),
691
      76
692
      76
692
      );
693
      );
693
    print "=" x 76, "\n";
694
    print "=" x 76, "\n";
694
    my $i = 0;
695
    my $i = 0;
695
    foreach
696
    foreach
696
      my $poster ( sort { $data{$b}{count} <=> $data{$a}{count} } keys %data )
697
      my $poster ( sort { $data{$b}{count} <=> $data{$a}{count} } keys %data )
697
    {
698
    {
698
      my $name = substr( $poster, 0, 65 );
699
      my $name = substr( $poster, 0, 65 );
699
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $poster, 63, "." ),
700
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $poster, 63, "." ),
700
        $data{$poster}{count};
701
        $data{$poster}{count};
701
      last if ( ++$i == $count );
702
      last if ( ++$i == $count );
702
    }
703
    }
703
    print "\n", "=" x 76, "\n";
704
    print "\n", "=" x 76, "\n";
704
  }
705
  }
705
706
706
  ######################################
707
  ######################################
707
  ## Show posters by size in KiB  Sec 2;
708
  ## Show posters by size in KiB  Sec 2;
708
  ######################################
709
  ######################################
709
  unless ( $skipSec{2} )
710
  unless ( $skipSec{2} )
710
  {
711
  {
711
    if ( keys %data < $topposters )
712
    if ( keys %data < $topposters )
712
    {
713
    {
713
      $count = keys %data;
714
      $count = keys %data;
714
    }
715
    }
715
    else
716
    else
716
    {
717
    {
717
      $count = $topposters;
718
      $count = $topposters;
718
    }
719
    }
719
    printf "%s\n",
720
    printf "%s\n",
720
      centred(
721
      centred(
721
      __x( "Top {count} posters by article size in KiB", count => $topposters ),
722
      __x( "Top {count} posters by article size in KiB", count => $topposters ),
722
      76
723
      76
723
      );
724
      );
724
    print "=" x 76, "\n";
725
    print "=" x 76, "\n";
725
    my $i = 0;
726
    my $i = 0;
726
    foreach
727
    foreach
727
      my $poster ( sort { $data{$b}{size} <=> $data{$a}{size} } keys %data )
728
      my $poster ( sort { $data{$b}{size} <=> $data{$a}{size} } keys %data )
728
    {
729
    {
729
      my $name = substr( $poster, 0, 62 );
730
      my $name = substr( $poster, 0, 62 );
730
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $poster, 63, "." ),
731
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $poster, 63, "." ),
731
        $data{$poster}{size} / 1024;    #/
732
        $data{$poster}{size} / 1024;    #/
732
      last if ( ++$i == $count );
733
      last if ( ++$i == $count );
733
    }
734
    }
734
    print "\n", "=" x 76, "\n";
735
    print "\n", "=" x 76, "\n";
735
  }
736
  }
736
737
737
  #####################################
738
  #####################################
738
  ## Show top posters for original text
739
  ## Show top posters for original text
739
  #####################################
740
  #####################################
740
  my $topposters_real = 0;
741
  my $topposters_real = 0;
741
742
742
  unless ( $skipSec{3} )
743
  unless ( $skipSec{3} )
743
  {
744
  {
744
    if ( keys %data < $topposters )
745
    if ( keys %data < $topposters )
745
    {
746
    {
746
      $count = keys %data;
747
      $count = keys %data;
747
    }
748
    }
748
    else
749
    else
749
    {
750
    {
750
      $count = $topposters;
751
      $count = $topposters;
751
    }
752
    }
752
753
753
    printf "%s\n",
754
    printf "%s\n",
754
      centred(
755
      centred(
755
      __x(
756
      __x(
756
        "Top {count} responders by original text (> 5 posts)",
757
        "Top {count} responders by original text (> 5 posts)",
757
        count => $topposters
758
        count => $topposters
758
      ),
759
      ),
759
      76
760
      76
760
      );
761
      );
761
    print "=" x 76, "\n";
762
    print "=" x 76, "\n";
762
    foreach my $poster (
763
    foreach my $poster (
763
      sort { $data{$b}{percent} <=> $data{$a}{percent} }
764
      sort { $data{$b}{percent} <=> $data{$a}{percent} }
764
      keys %data
765
      keys %data
765
      )
766
      )
766
    {
767
    {
767
      next if $data{$poster}{quoted} == 0;
768
      next if $data{$poster}{quoted} == 0;
768
      next if $data{$poster}{count} < 5;
769
      next if $data{$poster}{count} < 5;
769
      my $name = substr( $poster, 0, 63 );
770
      my $name = substr( $poster, 0, 63 );
770
      printf "%2d. %-63s : %02.2f%%\n", $topposters_real + 1,
771
      printf "%2d. %-63s : %02.2f%%\n", $topposters_real + 1,
771
        rpad( $poster, 63, "." ),
772
        rpad( $poster, 63, "." ),
772
        $data{$poster}{percent};
773
        $data{$poster}{percent};
773
      last if ( ++$topposters_real == $count );
774
      last if ( ++$topposters_real == $count );
774
    }
775
    }
775
    print "\n", "=" x 76, "\n";
776
    print "\n", "=" x 76, "\n";
776
  }
777
  }
777
778
778
  ########################################
779
  ########################################
779
  ## Show bottom posters for original text
780
  ## Show bottom posters for original text
780
  ########################################
781
  ########################################
781
782
782
  $skipSec{4} = ( $topposters_real <= $topposters ) unless defined $skipSec{4};
783
  $skipSec{4} = ( $topposters_real <= $topposters ) unless defined $skipSec{4};
783
784
784
  unless ( $skipSec{4} )
785
  unless ( $skipSec{4} )
785
  {
786
  {
786
    if ( keys %data < $topposters )
787
    if ( keys %data < $topposters )
787
    {
788
    {
788
      $count = keys %data;
789
      $count = keys %data;
789
    }
790
    }
790
    else
791
    else
791
    {
792
    {
792
      $count = $topposters;
793
      $count = $topposters;
793
    }
794
    }
794
795
795
    printf "%s\n",
796
    printf "%s\n",
796
      centred(
797
      centred(
797
      __x(
798
      __x(
798
        "Bottom {count} responders by original text  (> 5 posts)",
799
        "Bottom {count} responders by original text  (> 5 posts)",
799
        count => $topposters
800
        count => $topposters
800
      ),
801
      ),
801
      76
802
      76
802
      );
803
      );
803
    print "=" x 76, "\n";
804
    print "=" x 76, "\n";
804
    my $i = 0;
805
    my $i = 0;
805
    foreach my $poster (
806
    foreach my $poster (
806
      sort { $data{$a}{percent} <=> $data{$b}{percent} }
807
      sort { $data{$a}{percent} <=> $data{$b}{percent} }
807
      keys %data
808
      keys %data
808
      )
809
      )
809
    {
810
    {
810
      next if $data{$poster}{quoted} == 0;
811
      next if $data{$poster}{quoted} == 0;
811
      next if $data{$poster}{count} < 5;
812
      next if $data{$poster}{count} < 5;
812
      my $name = substr( $poster, 0, 63 );
813
      my $name = substr( $poster, 0, 63 );
813
      printf "%2d. %-63s : %02.2f%%\n", $i + 1, rpad( $poster, 63, "." ),
814
      printf "%2d. %-63s : %02.2f%%\n", $i + 1, rpad( $poster, 63, "." ),
814
        $data{$poster}{percent};
815
        $data{$poster}{percent};
815
      last if ( ++$i == $count );
816
      last if ( ++$i == $count );
816
    }
817
    }
817
    print "\n", "=" x 76, "\n";
818
    print "\n", "=" x 76, "\n";
818
  }
819
  }
819
820
820
  #####################################
821
  #####################################
821
  ## Show threads by number of articles
822
  ## Show threads by number of articles
822
  #####################################
823
  #####################################
823
  unless ( $skipSec{5} )
824
  unless ( $skipSec{5} )
824
  {
825
  {
825
    if ( keys %threads < $topthreads )
826
    if ( keys %threads < $topthreads )
826
    {
827
    {
827
      $count = keys %threads;
828
      $count = keys %threads;
828
    }
829
    }
829
    else
830
    else
830
    {
831
    {
831
      $count = $topthreads;
832
      $count = $topthreads;
832
    }
833
    }
833
    printf "%s\n",
834
    printf "%s\n",
834
      centred(
835
      centred(
835
      __x( "Top {count} threads by no. of articles", count => $topthreads ),
836
      __x( "Top {count} threads by no. of articles", count => $topthreads ),
836
      76 );
837
      76 );
837
    print "=" x 76, "\n";
838
    print "=" x 76, "\n";
838
    my $i = 0;
839
    my $i = 0;
839
    foreach my $thread (
840
    foreach my $thread (
840
      sort { $threads{$b}{'count'} <=> $threads{$a}{'count'} }
841
      sort { $threads{$b}{'count'} <=> $threads{$a}{'count'} }
841
      keys %threads
842
      keys %threads
842
      )
843
      )
843
    {
844
    {
844
      my $name = substr( $thread, 0, 65 );
845
      my $name = substr( $thread, 0, 65 );
845
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $name, 63, "." ),
846
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $name, 63, "." ),
846
        $threads{$thread}{'count'};
847
        $threads{$thread}{'count'};
847
      last if ( ++$i == $count );
848
      last if ( ++$i == $count );
848
    }
849
    }
849
    print "\n", "=" x 76, "\n";
850
    print "\n", "=" x 76, "\n";
850
  }
851
  }
851
852
852
  ##############################
853
  ##############################
853
  ## Show threads by size in KiB
854
  ## Show threads by size in KiB
854
  ##############################
855
  ##############################
855
  unless ( $skipSec{6} )
856
  unless ( $skipSec{6} )
856
  {
857
  {
857
    if ( keys %threads < $topthreads )
858
    if ( keys %threads < $topthreads )
858
    {
859
    {
859
      $count = keys %threads;
860
      $count = keys %threads;
860
    }
861
    }
861
    else
862
    else
862
    {
863
    {
863
      $count = $topthreads;
864
      $count = $topthreads;
864
    }
865
    }
865
    printf "%s\n",
866
    printf "%s\n",
866
      centred(
867
      centred(
867
      __x( "Top {count} threads by size in KiB", count => $topthreads ), 76 );
868
      __x( "Top {count} threads by size in KiB", count => $topthreads ), 76 );
868
    print "=" x 76, "\n";
869
    print "=" x 76, "\n";
869
    my $i = 0;
870
    my $i = 0;
870
    foreach my $thread (
871
    foreach my $thread (
871
      sort { $threads{$b}{'size'} <=> $threads{$a}{'size'} }
872
      sort { $threads{$b}{'size'} <=> $threads{$a}{'size'} }
872
      keys %threads
873
      keys %threads
873
      )
874
      )
874
    {
875
    {
875
      my $name = substr( $thread, 0, 65 );
876
      my $name = substr( $thread, 0, 65 );
876
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $name, 63, "." ),
877
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $name, 63, "." ),
877
        $threads{$thread}{'size'} / 1024;    #/
878
        $threads{$thread}{'size'} / 1024;    #/
878
      last if ( ++$i == $count );
879
      last if ( ++$i == $count );
879
    }
880
    }
880
    print "\n", "=" x 76, "\n";
881
    print "\n", "=" x 76, "\n";
881
  }
882
  }
882
883
883
  ##################################
884
  ##################################
884
  ## Show top 10 cross-posted groups
885
  ## Show top 10 cross-posted groups
885
  ##################################
886
  ##################################
886
  unless ( $skipSec{7} )
887
  unless ( $skipSec{7} )
887
  {
888
  {
888
    delete $crossposts{"$newsgroup_name"};    # don't include ours
889
    delete $crossposts{"$newsgroup_name"};    # don't include ours
889
    if ( keys %crossposts < $topcrossposts )
890
    if ( keys %crossposts < $topcrossposts )
890
    {
891
    {
891
      $count = keys %crossposts;
892
      $count = keys %crossposts;
892
    }
893
    }
893
    else
894
    else
894
    {
895
    {
895
      $count = $topcrossposts;
896
      $count = $topcrossposts;
896
    }
897
    }
897
    printf "%s\n",
898
    printf "%s\n",
898
      centred(
899
      centred(
899
      __x( "Top {count} cross-posted groups", count => $topcrossposts ), 76 );
900
      __x( "Top {count} cross-posted groups", count => $topcrossposts ), 76 );
900
    print "=" x 76, "\n";
901
    print "=" x 76, "\n";
901
    my $i = 0;
902
    my $i = 0;
902
    foreach
903
    foreach
903
      my $name ( sort { $crossposts{$b} <=> $crossposts{$a} } keys %crossposts )
904
      my $name ( sort { $crossposts{$b} <=> $crossposts{$a} } keys %crossposts )
904
    {
905
    {
905
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $name, 63, "." ),
906
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $name, 63, "." ),
906
        $crossposts{$name};
907
        $crossposts{$name};
907
      last if ( ++$i == $count );
908
      last if ( ++$i == $count );
908
    }
909
    }
909
    print "\n", "=" x 76, "\n";
910
    print "\n", "=" x 76, "\n";
910
  }
911
  }
911
912
912
  #########################
913
  #########################
913
  ## Show agents and counts
914
  ## Show agents and counts
914
  #########################
915
  #########################
915
  unless ( $skipSec{8} )
916
  unless ( $skipSec{8} )
916
  {
917
  {
917
    if ( keys %agents < $topagents )
918
    if ( keys %agents < $topagents )
918
    {
919
    {
919
      $count = keys %agents;
920
      $count = keys %agents;
920
    }
921
    }
921
    else
922
    else
922
    {
923
    {
923
      $count = $topagents;
924
      $count = $topagents;
924
    }
925
    }
925
    printf "%s\n",
926
    printf "%s\n",
926
      centred( __x( "Top {count} user agents by poster", count => $topagents ),
927
      centred( __x( "Top {count} user agents by poster", count => $topagents ),
927
      76 );
928
      76 );
928
    print "=" x 76, "\n";
929
    print "=" x 76, "\n";
929
    my $i = 0;
930
    my $i = 0;
930
    foreach my $agent ( sort { $agents{$b} <=> $agents{$a} } keys %agents )
931
    foreach my $agent ( sort { $agents{$b} <=> $agents{$a} } keys %agents )
931
    {
932
    {
932
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $agent, 63, "." ),
933
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $agent, 63, "." ),
933
        $agents{$agent};
934
        $agents{$agent};
934
      last if ( ++$i == $count );
935
      last if ( ++$i == $count );
935
    }
936
    }
936
    print "\n", "=" x 76, "\n";
937
    print "\n", "=" x 76, "\n";
937
  }
938
  }
938
939
939
  #######################
940
  #######################
940
  ## Show distinct agents
941
  ## Show distinct agents
941
  #######################
942
  #######################
942
  unless ( $skipSec{9} )
943
  unless ( $skipSec{9} )
943
  {
944
  {
944
    if ( keys %distinct_agent < $topagents )
945
    if ( keys %distinct_agent < $topagents )
945
    {
946
    {
946
      $count = keys %distinct_agent;
947
      $count = keys %distinct_agent;
947
    }
948
    }
948
    else
949
    else
949
    {
950
    {
950
      $count = $topagents;
951
      $count = $topagents;
951
    }
952
    }
952
    printf "%s\n",
953
    printf "%s\n",
953
      centred(
954
      centred(
954
      __x( "Top {count} user agents by number of posts", count => $topagents ),
955
      __x( "Top {count} user agents by number of posts", count => $topagents ),
955
      76
956
      76
956
      );
957
      );
957
    print "=" x 76, "\n";
958
    print "=" x 76, "\n";
958
    my $i = 0;
959
    my $i = 0;
959
    foreach my $agent (
960
    foreach my $agent (
960
      sort { $distinct_agent{$b} <=> $distinct_agent{$a} }
961
      sort { $distinct_agent{$b} <=> $distinct_agent{$a} }
961
      keys %distinct_agent
962
      keys %distinct_agent
962
      )
963
      )
963
    {
964
    {
964
      printf "%2d. %-58s : %5d (%2.f%%)\n", $i + 1, rpad( $agent, 58, "." ),
965
      printf "%2d. %-58s : %5d (%2.f%%)\n", $i + 1, rpad( $agent, 58, "." ),
965
        $distinct_agent{$agent},
966
        $distinct_agent{$agent},
966
        ( ( $distinct_agent{$agent} / $totalposts ) * 100 );
967
        ( ( $distinct_agent{$agent} / $totalposts ) * 100 );
967
      last if ( ++$i == $count );
968
      last if ( ++$i == $count );
968
    }
969
    }
969
    print "\n", "=" x 76, "\n";
970
    print "\n", "=" x 76, "\n";
970
  }
971
  }
971
972
972
  ############################
973
  ############################
973
  ## Show timezones and counts
974
  ## Show timezones and counts
974
  ############################
975
  ############################
975
  unless ( $skipSec{10} )
976
  unless ( $skipSec{10} )
976
  {
977
  {
977
    if ( keys %tz < $toptz )
978
    if ( keys %tz < $toptz )
978
    {
979
    {
979
      $count = keys %tz;
980
      $count = keys %tz;
980
    }
981
    }
981
    else
982
    else
982
    {
983
    {
983
      $count = $toptz;
984
      $count = $toptz;
984
    }
985
    }
985
    printf "%s\n",
986
    printf "%s\n",
986
      centred( __x( "Top {count} time zones", count => $toptz ), 76 );
987
      centred( __x( "Top {count} time zones", count => $toptz ), 76 );
987
    print "=" x 76, "\n";
988
    print "=" x 76, "\n";
988
    my $i = 0;
989
    my $i = 0;
989
    foreach my $zone ( sort { $tz{$b} <=> $tz{$a} } keys %tz )
990
    foreach my $zone ( sort { $tz{$b} <=> $tz{$a} } keys %tz )
990
    {
991
    {
991
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $zone, 63, "." ), $tz{$zone};
992
      printf "%2d. %-63s : %6d\n", $i + 1, rpad( $zone, 63, "." ), $tz{$zone};
992
      last if ( ++$i == $count );
993
      last if ( ++$i == $count );
993
    }
994
    }
994
    print "\n", "=" x 76, "\n";
995
    print "\n", "=" x 76, "\n";
995
  }
996
  }
996
}
997
}
997
998
998
## helper subs
999
## helper subs
999
1000
1000
###############################
1001
###############################
1001
## Right pad a string with '.'s
1002
## Right pad a string with '.'s
1002
###############################
1003
###############################
1003
sub rpad
1004
sub rpad
1004
{
1005
{
1005
  ## Get text to pad, length to pad, pad chr
1006
  ## Get text to pad, length to pad, pad chr
1006
  my ( $text, $pad_len, $pad_chr ) = @_;
1007
  my ( $text, $pad_len, $pad_chr ) = @_;
1007
1008
1008
  ## DEBUG
1009
  ## DEBUG
1009
  printf( "|%s| = %d\n", $text, length($text) ) if DEBUG > 1;
1010
  printf( "|%s| = %d\n", $text, length($text) ) if DEBUG > 1;
1010
1011
1011
  if ( length($text) > $pad_len )
1012
  if ( length($text) > $pad_len )
1012
  {
1013
  {
1013
    $text = substr( $text, 0, $pad_len );
1014
    $text = substr( $text, 0, $pad_len );
1014
  }
1015
  }
1015
  my $padded = $text . $pad_chr x ( $pad_len - length($text) );
1016
  my $padded = $text . $pad_chr x ( $pad_len - length($text) );
1016
  return $padded;
1017
  return $padded;
1017
}
1018
}
1018
1019
1019
##################
1020
##################
1020
## Centre a string
1021
## Centre a string
1021
##################
1022
##################
1022
sub centred
1023
sub centred
1023
{
1024
{
1024
  my ( $text, $width ) = @_;    # text to centre, size of field to centre in
1025
  my ( $text, $width ) = @_;    # text to centre, size of field to centre in
1025
  my $pad_len = ( $width - length($text) ) / 2;    #/
1026
  my $pad_len = ( $width - length($text) ) / 2;    #/
1026
  my $centred = " " x $pad_len . $text;
1027
  my $centred = " " x $pad_len . $text;
1027
  return $centred;
1028
  return $centred;
1028
}
1029
}
1029
1030
1030
###########################
1031
###########################
1031
## Put commas into a number
1032
## Put commas into a number
1032
###########################
1033
###########################
1033
sub commify
1034
sub commify
1034
{
1035
{
1035
  local $_ = shift;
1036
  local $_ = shift;
1036
  my $number = $_;
1037
  my $number = $_;
1037
  $_ = int;                                        # Chop non-integer part
1038
  $_ = int;                                        # Chop non-integer part
1038
  1 while
1039
  1 while
1039
    s/([-+]?\d)(\d{$grouping[0]}($|\Q$thousands_sep\E))/$1$thousands_sep$2/;
1040
    s/([-+]?\d)(\d{$grouping[0]}($|\Q$thousands_sep\E))/$1$thousands_sep$2/;
1040
  my $int_part  = $_;
1041
  my $int_part  = $_;
1041
  my $real_part = '';
1042
  my $real_part = '';
1042
  if ( $number =~ /(\Q$decimal_point\E\d+)$/ )
1043
  if ( $number =~ /(\Q$decimal_point\E\d+)$/ )
1043
  {
1044
  {
1044
    $real_part = $1;
1045
    $real_part = $1;
1045
  }
1046
  }
1046
  return $int_part . $real_part;
1047
  return $int_part . $real_part;
1047
}
1048
}
1048
1049
1049
################################################################
1050
################################################################
1050
## Returns a string with leading and trailing whitespace removed
1051
## Returns a string with leading and trailing whitespace removed
1051
################################################################
1052
################################################################
1052
sub clean
1053
sub clean
1053
{
1054
{
1054
  my $dirty = shift;
1055
  my $dirty = shift;
1055
  my $clean = $dirty;
1056
  my $clean = $dirty;
1056
  $clean =~ s/^\s+|\s+$//g;
1057
  $clean =~ s/^\s+|\s+$//g;
1057
1058
1058
  return $clean;
1059
  return $clean;
1059
}
1060
}
1060
1061
1061
sub usage
1062
sub usage
1062
{
1063
{
1063
  println( __ "usage: newsstat.pl NEWS.GROUP" );
1064
  println( __ "usage: newsstat.pl NEWS.GROUP" );
1064
  exit 1;
1065
  exit 1;
1065
}
1066
}
1066
1067
1067
sub dmsg
1068
sub dmsg
1068
{
1069
{
1069
  print STDERR @_, "\n";
1070
  print STDERR @_, "\n";
1070
}
1071
}
1071
1072
1072
sub dmsg2
1073
sub dmsg2
1073
{
1074
{
1074
  my ( $level, @msg ) = @_;
1075
  my ( $level, @msg ) = @_;
1075
  print STDERR @msg, "\n" if $level >= DEBUG;
1076
  print STDERR @msg, "\n" if $level >= DEBUG;
1076
}
1077
}
1077
1078
1078
sub println
1079
sub println
1079
{
1080
{
1080
  print @_, "\n";
1081
  print @_, "\n";
1081
}
1082
}
1082
 
1083