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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
#!/usr/bin/perl
# These tests operate on a mail archive I found on the web at
# http://el.www.media.mit.edu/groups/el/projects/handy-board/mailarc.txt
# and then broke into pieces
use strict;
use warnings 'all';
use lib 't';
use Benchmark;
my $MAILBOX_SIZE = 10_000_000;
my $TEMP_MAILBOX = 't/temp/bigmailbox.txt';
my @IMPLEMENTATIONS_TO_TEST = (
'Perl',
'Grep',
'Cache Init',
'Cache Use',
);
mkdir 't/temp';
my @mailboxes = CreateInputFiles($TEMP_MAILBOX);
pop @mailboxes;
foreach my $mailbox (@mailboxes)
{
print "\n";
{
local $" = ", ";
print "Executing speed tests for @IMPLEMENTATIONS_TO_TEST on \"$mailbox\"\n\n";
}
my $data = CollectData($mailbox);
print "=========================================\n";
DoHeadToHeadComparison($data);
print "=========================================\n";
DoImplementationsComparison($data);
print "#########################################\n";
}
# make clean will take care of it
#END
#{
# RemoveInputFile($TEMP_MAILBOX);
#}
################################################################################
sub RemoveInputFile
{
my $filename = shift;
unlink $filename;
}
################################################################################
sub CreateInputFiles
{
my $filename = shift;
my @mailboxes;
unless(-e $filename && abs((-s $filename) - $MAILBOX_SIZE) <= $MAILBOX_SIZE*.1)
{
print "Making input file ($MAILBOX_SIZE bytes).\n";
open FILE, 't/mailboxes/mailarc-1.txt';
local $/ = undef;
my $data = <FILE>;
close FILE;
open FILE, ">$filename";
my $number = 0;
while (-s $filename < $MAILBOX_SIZE)
{
print FILE $data, "\n";
$number++;
# Also make an email with a 1MB attachment.
print FILE<<"EOF";
From XXXXXXXX\@XXXXXXX.XXX.XXX.XXX Sat Apr 19 19:30:45 2003
Received: from XXXXXX.XXX.XXX.XXX (XXXXXX.XXX.XXX.XXX [##.##.#.##]) by XXX.XXXXXXXX.XXX id h3JNTvkA009295 envelope-from XXXXXXXX\@XXXXXXX.XXX.XXX.XXX for <XXXXX XXXXXX.XXX>; Sat, 19 Apr 2003 19:29:57 -0400 (EDT)8f/81N9n7q
(envelope-from XXXXXXXX\@XXXXXXX.XXX.XXX.XXX)
Date: Sat, 19 Apr 2003 19:29:50 -0400 (EDT)
From: Xxxxxxx Xxxxxxxx <xxxxxxxx\@xxxxxx.xxx.xxx.xxx>
To: "'Xxxxx Xxxxxx'" <xxxxx\@xxxxxx.xxx>
Subject: RE: FW: Xxxxxx--xxxxxx xxxxxxxx xxxxx xxxxxxx (xxx)
Message-ID: <Pine.LNX.4.44.0304191837520.30945-$number\@xxxxxxx.xxx.xxx.xxx>
MIME-Version: 1.0
Content-Type: MULTIPART/MIXED; BOUNDARY="873612032-418625252-1050794990=:31078"
This message is in MIME format. The first part should be readable text,
while the remaining parts are likely unreadable without MIME-aware tools.
Send mail to mime\@docserver.cac.washington.edu for more info.
--873612032-418625252-1050794990=:31078
Content-Type: TEXT/PLAIN; charset=US-ASCII
I am not sure if the message below went through. I accidentally
attached too big a file with it. Now it's nicely zipped.
--873612032-418625252-1050794990=:31078
Content-Type: APPLICATION/x-gzip; name="testera_dft_4_mchaff.tar.gz"
Content-Transfer-Encoding: BASE64
Content-ID: <Pine.LNX.4.44.0304191929500.3$number\@xxxxxxx.xxx.xxx.xxx>
Content-Description:
Content-Disposition: attachment; filename="foo.tar.gz"
EOF
print FILE (('x' x 74 . "\n" ) x (1_000_000 / 74));
print FILE "--873612032-418625252-1050794990=:31078--\n\n";
}
close FILE;
}
unlink "$filename.gz" if -e "$filename.gz";
print "Making compressed input file.\n";
system "gzip -c --force --best $filename > $filename.gz";
return ($filename, "$filename.gz");
}
################################################################################
my $test_program;
sub CollectData
{
my $filename = shift;
print "Collecting data...\n\n";
unless (defined $test_program)
{
local $/ = undef;
$test_program = <DATA>;
}
# I couldn't get the module to reload right, so we'll create an external program
# to do the testing
{
local $" = "', '";
my $implementations_to_test = "'@IMPLEMENTATIONS_TO_TEST'";
my $modified_test_program = $test_program;
$modified_test_program =~ s/\@IMPLEMENTATIONS_TO_TEST/$implementations_to_test/;
open TESTER, ">t/temp/test_speed.pl";
print TESTER $modified_test_program;
close TESTER;
}
my %data;
foreach my $old_or_new qw(New Old)
{
my $results = `$^X t/temp/test_speed.pl $old_or_new`;
die $results unless $results =~ /VAR1/;
my $VAR1;
eval $results;
%data = (%data, %$VAR1);
}
return \%data;
}
################################################################################
sub DoHeadToHeadComparison
{
my $data = shift;
print "HEAD TO HEAD COMPARISON\n\n";
my @labels = grep { s/New // } keys %$data;
my $first = 1;
foreach my $label (@labels)
{
next unless exists $data->{"Old $label"} && exists $data->{"New $label"};
print "-----------------------------------------\n"
unless $first;
my %head_to_head = ("Old $label" => $data->{"Old $label"},
"New $label" => $data->{"New $label"});
Benchmark::cmpthese(\%head_to_head);
$first = 0;
}
}
################################################################################
sub DoImplementationsComparison
{
my $data = shift;
print "IMPLEMENTATION COMPARISON\n\n";
{
my @old_labels = grep { /Old / } keys %$data;
my %old;
foreach my $label (@old_labels)
{
$old{$label} = $data->{$label};
}
Benchmark::cmpthese(\%old);
}
print "-----------------------------------------\n";
{
my @new_labels = grep { /New / } keys %$data;
my %new;
foreach my $label (@new_labels)
{
$new{$label} = $data->{$label};
}
Benchmark::cmpthese(\%new);
}
}
################################################################################
__DATA__
use strict;
use lib 'lib';
use Benchmark;
use Benchmark::Timer;
use FileHandle;
die unless @ARGV == 1;
my $old_or_new = $ARGV[0];
my $modpath = $old_or_new eq 'New' ? 'lib' : 'old';
my $filename = 't/temp/bigmailbox.txt';
my %data;
unshift @INC, $modpath;
require Mail::Mbox::MessageParser;
my %settings =
(
'Perl' => [0,0],
'Grep' => [0,1],
'Cache Init' => [1,1],
'Cache Use' => [1,0],
);
foreach my $file_type ('Filename', 'Filehandle')
{
# Take this out soon
next if $old_or_new eq 'Old' && $file_type eq 'Filename';
foreach my $impl (@IMPLEMENTATIONS_TO_TEST)
{
my $label = "$old_or_new $impl $file_type";
my $t = new Benchmark::Timer(skip => 2, minimum => 5, confidence => 98.5, error => 2);
$| = 1;
# Need enough for the statistics to be valid
while ($t->need_more_samples($label))
{
unlink 't/temp/cache' if $impl eq 'Cache Init';
if ($impl eq 'Cache Init')
{
$t->start($label);
InitializeCache($filename, $file_type);
$t->stop($label);
}
else
{
$t->start($label);
ParseFile($filename,$settings{$impl}[0],$settings{$impl}[1], $file_type);
$t->stop($label);
}
}
$t->report($label);
# Fake a benchmark object so we can compare later using Benchmark
$data{$label} = new Benchmark;
$data{$label}[5] = 1;
$data{$label}[1] = $t->result($label);
$data{$label}[2] = 0;
}
}
use Data::Dumper;
print Dumper \%data;
exit;
################################################################################
sub InitializeCache
{
my $filename = shift;
my $file_type = shift;
Mail::Mbox::MessageParser::SETUP_CACHE({'file_name' => 't/temp/cache'});
Mail::Mbox::MessageParser::MetaInfo::CLEAR_CACHE();
my $filehandle;
$filehandle = new FileHandle($filename) if $file_type eq 'Filehandle';
my $folder_reader =
new Mail::Mbox::MessageParser( {
'file_name' => $filename,
'file_handle' => $filehandle,
'enable_cache' => 1,
'enable_grep' => 0,
} );
my $prologue = $folder_reader->prologue;
# This is the main loop. It's executed once for each email
while(!$folder_reader->end_of_file())
{
$folder_reader->read_next_email();
}
Mail::Mbox::MessageParser::MetaInfo::WRITE_CACHE();
}
################################################################################
sub ParseFile
{
my $filename = shift;
my $enable_cache = shift;
my $enable_grep = shift;
my $file_type = shift;
my $file_handle;
$file_handle = new FileHandle($filename) if $file_type eq 'Filehandle';
Mail::Mbox::MessageParser::SETUP_CACHE({'file_name' => 't/temp/cache'})
if $enable_cache;
my $folder_reader =
new Mail::Mbox::MessageParser( {
'file_name' => $filename,
'file_handle' => $file_handle,
'enable_cache' => $enable_cache,
'enable_grep' => $enable_grep,
} );
while (!$folder_reader->end_of_file())
{
my $email_text = $folder_reader->read_next_email();
}
close $file_handle if $file_type eq 'Filehandle';
}
################################################################################
|