Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^3: Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects

by sedusedan (Pilgrim)
on Oct 15, 2013 at 02:19 UTC ( [id://1058226]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects
in thread Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects

Data::Rmap is also an alternative (and is faster in this particular case). But they are both rather slow, so I created Data::Clean::JSON and Data::Clean::FromJSON which generate Perl code to do the cleansing and can be several times faster. A benchmark (from slowest to fastest):
% perl -MBench -MStorable=dclone -MData::Dump -MJSON -MData::Visitor:: +Callback -E' $data=JSON->new->decode(q([null, true, false, 1, 2, 3, "a", "b", [], { +}])); dd $data; $v=Data::Visitor::Callback->new("JSON::PP::Boolean"=>sub{$_=$_?1:0}, " +JSON::XS::Boolean"=>sub{$_=$_?1:0}); bench sub { $data2=dclone($data); $v->visit($data2) }, -1; dd $data2' [ undef, bless(do{\(my $o = 1)}, "JSON::XS::Boolean"), bless(do{\(my $o = 0)}, "JSON::XS::Boolean"), 1, 2, 3, "a", "b", [], {}, ] 4846 calls (3328/s), 1.456s (0.301ms/call) [undef, 1, 0 .. 3, "a", "b", [], {}] % perl -MBench -MStorable=dclone -MData::Dump -MJSON -MData::Rmap=rmap +_ref -E' $data=JSON->new->decode(q([null, true, false, 1, 2, 3, "a", "b", [], { +}])); dd $data; bench sub { $data2=clone($data); rmap_ref { $_ = ref($_) eq "JSON::PP: +:Boolean" || ref($_) eq "JSON::XS::Boolean" ? ($_?1:0) : $_ } $data } +, -1; dd $data2' [ undef, bless(do{\(my $o = 1)}, "JSON::XS::Boolean"), bless(do{\(my $o = 0)}, "JSON::XS::Boolean"), 1, 2, 3, "a", "b", [], {}, ] 13573 calls (11735/s), 1.157s (0.0852ms/call) [undef, 1, 0 .. 3, "a", "b", [], {}] % perl -MBench -MStorable=dclone -MData::Dump -MJSON -MData::Clean::Fr +omJSON -E' $data=JSON->new->decode(q([null, true, false, 1, 2, 3, "a", "b", [], { +}])); dd $data; $cleanser=Data::Clean::FromJSON->new; bench sub { $data2=dclone($data); $cleanser->clean_in_place($data2) }, + -1; dd $data2' [ undef, bless(do{\(my $o = 1)}, "JSON::XS::Boolean"), bless(do{\(my $o = 0)}, "JSON::XS::Boolean"), 1, 2, 3, "a", "b", [], {}, ] 33781 calls (32790/s), 1.030s (0.0305ms/call) [undef, 1, 0 .. 3, "a", "b", [], {}]
  • Comment on Re^3: Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects
  • Download Code

Replies are listed 'Best First'.
Re^4: Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects
by sundialsvc4 (Abbot) on Oct 15, 2013 at 03:04 UTC

    Man, I wish that I had known about that data-cleaner of yours a few months ago ...!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1058226]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (1)
As of 2025-02-09 14:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which URL do you most often use to access this site?












    Results (96 votes). Check out past polls.