From: Eric Wong Date: Sat, 2 Oct 2021 08:16:21 +0000 (+0000) Subject: lei inspect: integerize "bytes" and "lines" fields X-Git-Tag: v1.7.0~230 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=3826b39b6433ecec96a0230ae4602b7c819fde66;p=public-inbox.git lei inspect: integerize "bytes" and "lines" fields These are always numeric, but none of the Perl code cares; we want to prevent JSON from quoting them. --- diff --git a/lib/PublicInbox/LeiInspect.pm b/lib/PublicInbox/LeiInspect.pm index 2158b996..f18e31c5 100644 --- a/lib/PublicInbox/LeiInspect.pm +++ b/lib/PublicInbox/LeiInspect.pm @@ -13,6 +13,12 @@ use PublicInbox::Config; use PublicInbox::MID qw(mids); use PublicInbox::NetReader qw(imap_uri nntp_uri); +sub _json_prep ($) { + my ($smsg) = @_; + $smsg->{$_} += 0 for qw(bytes lines); # integerize + +{ %$smsg } # unbless and scalarize +} + sub inspect_blob ($$) { my ($lei, $oidhex) = @_; my $ent = {}; @@ -143,7 +149,7 @@ sub inspect_num ($$) { } if ($ibx && $ibx->over) { my $smsg = $ibx->over->get_art($num); - $ent->{smsg} = { %$smsg } if $smsg; + $ent->{smsg} = _json_prep($smsg) if $smsg; } defined($docid) ? inspect_docid($lei, $docid, $ent) : $ent; } @@ -164,7 +170,7 @@ sub inspect_mid ($$) { if ($ibx && $ibx->over) { my ($id, $prev); while (my $smsg = $ibx->over->next_by_mid($mid, \$id, \$prev)) { - push @{$ent->{smsg}}, { %$smsg } + push @{$ent->{smsg}}, _json_prep($smsg); } } $ent;