-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data::Dumper gets string lengths wrong when the utf8 flag is set #15416
Comments
From @karenetheridgeseen in both Data::Dumper 2.154 and 2.160, perl 5.24.0 and perl 5.25.0. Here is a self-contained reproduction case showing that string lengths are being counted wrong: use strict; __END__ but the output should instead be: |
From @jkeenanOn Sat Jul 02 15:00:44 2016, ether wrote:
The difference created by executing 'utf8::upgrade' on the strings can be demonstrated in even simpler versions of Data::Dumper calls. See attached file 'saydumper.pl'. Thank you very much. -- |
From @jkeenan |
The RT System itself - Status changed from 'new' to 'open' |
From @jkeenanOn Sun Jul 03 06:39:25 2016, jkeenan wrote:
Also, the above was observed as far back as perl-5.10.1. -- |
From @tonycozOn Sat Jul 02 15:00:44 2016, ether wrote:
The problem was more that the key length was always being used rather then the The attached fixes it for me. Tony |
From @tonycoz0001-perl-128524-correct-indentation-for-utf-8-key-hash-e.patchFrom ace8b39f6f00f1de15be195bf2d36a02dcc93dc6 Mon Sep 17 00:00:00 2001
From: Tony Cook <tony@develop-help.com>
Date: Wed, 13 Jul 2016 15:48:52 +1000
Subject: (perl #128524) correct indentation for utf-8 key hash elements
---
dist/Data-Dumper/Dumper.xs | 4 ++--
dist/Data-Dumper/t/bugs.t | 32 +++++++++++++++++++++++++++++++-
2 files changed, 33 insertions(+), 3 deletions(-)
diff --git a/dist/Data-Dumper/Dumper.xs b/dist/Data-Dumper/Dumper.xs
index 8220241..0dc7699 100644
--- a/dist/Data-Dumper/Dumper.xs
+++ b/dist/Data-Dumper/Dumper.xs
@@ -886,7 +886,6 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv,
SV *sname;
HE *entry = NULL;
char *key;
- STRLEN klen;
SV *hval;
AV *keys = NULL;
@@ -976,6 +975,7 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv,
char *nkey_buffer = NULL;
STRLEN nticks = 0;
SV* keysv;
+ STRLEN klen;
STRLEN keylen;
STRLEN nlen;
bool do_utf8 = FALSE;
@@ -1029,7 +1029,7 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv,
if (style->quotekeys || key_needs_quote(key,keylen)) {
if (do_utf8 || style->useqq) {
STRLEN ocur = SvCUR(retval);
- nlen = esc_q_utf8(aTHX_ retval, key, klen, do_utf8, style->useqq);
+ klen = nlen = esc_q_utf8(aTHX_ retval, key, klen, do_utf8, style->useqq);
nkey = SvPVX(retval) + ocur;
}
else {
diff --git a/dist/Data-Dumper/t/bugs.t b/dist/Data-Dumper/t/bugs.t
index a440b0a..b3c1a17 100644
--- a/dist/Data-Dumper/t/bugs.t
+++ b/dist/Data-Dumper/t/bugs.t
@@ -12,7 +12,7 @@ BEGIN {
}
use strict;
-use Test::More tests => 15;
+use Test::More tests => 23;
use Data::Dumper;
{
@@ -144,4 +144,34 @@ SKIP: {
&$tests;
}
+{ # https://rt.perl.org/Ticket/Display.html?id=128524
+ my $want = <<'EOW';
+$VAR1 = {
+ 'runtime' => {
+ 'requires' => {
+ 'foo' => 'bar'
+ }
+ }
+ };
+EOW
+ my @want = split /\n/, $want;
+ my $runtime = "runtime";
+ my $requires = "requires";
+ utf8::upgrade(my $uruntime = $runtime);
+ utf8::upgrade(my $urequires = $requires);
+ for my $run ($runtime, $uruntime) {
+ for my $req ($requires, $urequires) {
+ my $data = { $run => { $req => { foo => "bar" } } };
+ local $Data::Dumper::Useperl = 1;
+ is(Dumper( $data ), $want, "utf-8 indents");
+ {
+ defined &Data::Dumper::Dumpxs
+ or skip "No XS available", 1;
+ local $Data::Dumper::Useperl = 0;
+ is(Dumper( $data ), $want, "utf8-indents");
+ }
+ }
+ }
+}
+
# EOF
--
2.1.4
|
From @tonycozOn Tue Jul 12 22:50:11 2016, tonyc wrote:
I've adjusted the test to skip properly and I think made the test less fragile. Applied as 3a3625f. Tony |
@tonycoz - Status changed from 'open' to 'pending release' |
From @khwilliamsonThank you for filing this report. You have helped make Perl better. With the release today of Perl 5.26.0, this and 210 other issues have been Perl 5.26.0 may be downloaded via: If you find that the problem persists, feel free to reopen this ticket. |
@khwilliamson - Status changed from 'pending release' to 'resolved' |
Migrated from rt.perl.org#128524 (status was 'resolved')
Searchable as RT128524$
The text was updated successfully, but these errors were encountered: