ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/eg/bench
(Generate patch)

Comparing JSON-XS/eg/bench (file contents):
Revision 1.7 by root, Sun Mar 25 21:19:13 2007 UTC vs.
Revision 1.22 by root, Tue Jan 19 01:02:19 2010 UTC

1#!/opt/bin/perl 1#!/opt/bin/perl
2 2
3# Usage: bench json-file 3# Usage: bench json-file
4 4
5# which modules to test (JSON::PP usually excluded because its so slow)
6my %tst = (
7# "JSON" => ['JSON::encode_json $perl' , 'JSON::decode_json $json'],
8 "JSON::PP" => ['$pp->encode ($perl)' , '$pp->decode ($json)'],
9 "JSON::DWIW/FJ" => ['$dwiw->to_json ($perl)' , '$dwiw->from_json ($json)'],
10 "JSON::DWIW/DS" => ['$dwiw->to_json ($perl)' , 'JSON::DWIW::deserialize $json'],
11# "JSON::PC" => ['$pc->convert ($perl)' , '$pc->parse ($json)'],
12 "JSON::Syck" => ['JSON::Syck::Dump $perl' , 'JSON::Syck::Load $json'],
13 "JSON::XS" => ['encode_json $perl' , 'decode_json $json'],
14 "JSON::XS/2" => ['$xs2->encode ($perl)' , '$xs2->decode ($json)'],
15 "JSON::XS/3" => ['$xs3->encode ($perl)' , '$xs3->decode ($json)'],
16 "Storable" => ['Storable::nfreeze $perl' , 'Storable::thaw $pst'],
17);
18
5use JSON; 19use JSON ();
6use JSON::DWIW; 20use JSON::DWIW;
7use JSON::PC; 21use JSON::PC;
22use JSON::PP ();
8use JSON::XS qw(to_json from_json); 23use JSON::XS qw(encode_json decode_json);
9use JSON::Syck; 24use JSON::Syck;
25use Storable ();
10 26
11use Time::HiRes; 27use Time::HiRes;
12use List::Util; 28use List::Util;
13 29
14use utf8; 30use utf8;
15 31
16my $dwiw = new JSON::DWIW; 32my $dwiw = new JSON::DWIW;
17my $pc = new JSON::PC; 33my $pc = new JSON::PC;
34my $pp = JSON::PP->new->max_depth (512);
18my $xs2 = JSON::XS->new->utf8->pretty->canonical; 35my $xs2 = JSON::XS->new->utf8->pretty->canonical;
19my $xs3 = JSON::XS->new->utf8->shrink; 36my $xs3 = JSON::XS->new->utf8->shrink;
20 37
21my $json; # the test string 38my $json; # the test string
22 39
23local $/; 40local $/;
24$json = <>; 41$json = <>;
42
43# fix syck-brokenised stuff
44#$json = JSON::XS->new->ascii(1)->encode (JSON::Syck::Load $json);
25 45
26#srand 0; $json = JSON::XS->new->utf8(1)->ascii(0)->encode ([join "", map +(chr rand 255), 0..2047]); 46#srand 0; $json = JSON::XS->new->utf8(1)->ascii(0)->encode ([join "", map +(chr rand 255), 0..2047]);
27 47
28#if (1) { 48#if (1) {
29# use Storable; 49# use Storable;
33# open my $fh2, ">:unix", "faces.json" or die "$!"; 53# open my $fh2, ">:unix", "faces.json" or die "$!";
34# print $fh2 $json; 54# print $fh2 $json;
35# warn length $json; 55# warn length $json;
36#} 56#}
37 57
38my %tst = (
39 "JSON" => ['objToJson $perl' , 'jsonToObj $json'],
40 "JSON::DWIW" => ['$dwiw->to_json ($perl)', '$dwiw->from_json ($json)'],
41 "JSON::PC" => ['$pc->convert ($perl)' , '$pc->parse ($json)'],
42 "JSON::Syck" => ['JSON::Syck::Dump $perl', 'JSON::Syck::Load $json'],
43 "JSON::XS" => ['to_json $perl' , 'from_json $json'],
44 "JSON::XS/2" => ['$xs2->encode ($perl)' , '$xs2->decode ($json)'],
45 "JSON::XS/3" => ['$xs3->encode ($perl)' , '$xs3->decode ($json)'],
46);
47
48sub bench($) { 58sub bench($) {
49 my ($code) = @_; 59 my ($code) = @_;
50 60
51 my $perl = jsonToObj $json; 61 my $pst = Storable::nfreeze JSON::XS::decode_json $json; # seperately decode as storable stringifies :/
52 my $count = 20; 62 my $perl = JSON::XS::decode_json $json;
53 my $times = 25;
54 63
55 my $cent = eval "sub { " . (join ";", ($code) x $count) . "}"; 64 my $count = 5;
65 my $times = 200;
66
67 my $cent = eval "sub { my \$t = Time::HiRes::time; " . (join ";", ($code) x $count) . "; Time::HiRes::time - \$t }";
56 $cent->(); 68 $cent->();
57 69
58 my @meas; 70 my $min = 1e99;
59 71
60 while () { 72 for (1..$times) {
61 push @meas, Time::HiRes::time;
62 $cent->(); 73 my $t = $cent->();
63 $meas[-1] = Time::HiRes::time - $meas[-1];
64 74
65 my $mean = (List::Util::sum @meas) / @meas; 75 $min = $t if $t < $min;
66 if (@meas >= $times) {
67 @meas = grep $_ > $mean * 0.9 && $_ < $mean * 1.1, @meas;
68 my @meas = grep $_ > $mean * 0.9999 && $_ < $mean * 1.1111, @meas;
69 if (@meas >= $times) {
70 return $count / $mean;
71 }
72 }
73 } 76 }
77
78 return $count / $min;
74} 79}
75 80
76printf "%-10s | %10s | %10s |\n", "module", "encode", "decode"; 81printf "%-13s | %10s | %10s |\n", "module", "encode", "decode";
77printf "-----------|------------|------------|\n"; 82printf "--------------|------------|------------|\n";
78for my $module (sort keys %tst) { 83for my $module (sort keys %tst) {
79 my $enc = bench $tst{$module}[0]; 84 my $enc = bench $tst{$module}[0];
80 my $dec = bench $tst{$module}[1]; 85 my $dec = bench $tst{$module}[1];
81 86
82 printf "%-10s | %10.3f | %10.3f |\n", $module, $enc, $dec; 87 printf "%-13s | %10.3f | %10.3f |\n", $module, $enc, $dec;
83} 88}
84printf "-----------+------------+------------+\n"; 89printf "--------------+------------+------------+\n";
85 90

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines