我想我遇到了Unicode和IO :: Handle的问题。我很可能做错了什么。我想从IO :: Handle获取并取消单个unicode字符(而不是字节)。但我得到了一个令人惊讶的错误。
#!/usr/local/bin/perl
use 5.016;
use utf8;
use strict;
use warnings;
binmode(STDIN, ':encoding(utf-8)');
binmode(STDOUT, ':encoding(utf-8)');
binmode(STDERR, ':encoding(utf-8)');
my $string = qq[a Å];
my $fh = IO::File->new();
$fh->open(\$string, '<:encoding(UTF-8)');
say $fh->getc(); # a
say $fh->getc(); # SPACE
say $fh->getc(); # Å LATIN CAPITAL LETTER A WITH RING ABOVE (U+00C5)
$fh->ungetc(ord("Å"));
say $fh->getc(); # should be A RING again.
来自ungetc()行的错误消息是“畸形的UTF-8字符(字符串的意外结束),例如在unicode.pl第21行。”\x{00c5}
“未映射到unicode.pl上的utf8第21行。“但这是角色的正确十六进制,它应该映射到角色。
我使用十六进制编辑器确保A-RING的字节对于UTF-8是正确的。
这似乎是任何双字节字符的问题。
最后说输出'\ xC5'(字面意思是四个字符:反斜杠,x,C,5)。
我通过读取文件而不是标量变量来测试它。结果是一样的。
这是为darwin-2level构建的perl 5,版本16,subversion 2(v5.16.2)
脚本以UTF-8保存。这是我检查的第一件事。
答案 0 :(得分:2)
我很确定这证明存在严重的Unicode处理错误,因为这个输出:
perl5.16.0 ungettest
ungettest 98896 @ Sun Jan 6 16:01:08 2013: sending normal line to kid
ungettest 98896 @ Sun Jan 6 16:01:08 2013: await()ing kid
ungettest 98897 @ Sun Jan 6 16:01:08 2013: ungetting litte z
ungettest 98897 @ Sun Jan 6 16:01:08 2013: ungetting big sigma
ungettest 98897 @ Sun Jan 6 16:01:08 2013: kid looping on parental input
98897: Unexpected fatalized warning: utf8 "\xA3" does not map to Unicode at ungettest line 40, <STDIN> line 1.
at ungettest line 10, <STDIN> line 1.
main::__ANON__('utf8 "\xA3" does not map to Unicode at ungettest line 40, <ST...') called at ungettest line 40
98896: parent pclose failed: 65280, at ungettest line 28.
Exit 255
由该程序生成:
#!/usr/bin/env perl
use v5.16;
use strict;
use warnings;
use open qw( :utf8 :std );
use Carp;
$SIG{__WARN__} = sub { confess "$$: Unexpected fatalized warning: @_" };
sub ungetchar($) {
my $char = shift();
confess "$$: expected single character pushback, not <$char>" if length($char) != 1;
STDIN->ungetc(ord $char);
}
sub debug {
my $now = localtime(time());
print STDERR "$0 $$ \@ $now: @_\n";
}
if (open(STDOUT, "|-") // confess "$$: cannot fork: $!") {
$| = 1;
debug("sending normal line to kid");
say "From \N{greek:alpha} to \N{greek:omega}.";
debug("await()ing kid");
close(STDOUT) || confess "$$: parent pclose failed: $?, $!";
debug("child finished, parent exiting normally");
exit(0);
}
debug("ungetting litte z");
ungetchar("z") || confess "$$: ASCII ungetchar failed: $!";
debug("ungetting big sigma");
ungetchar("\N{greek:Sigma}") || confess "$$: Unicode ungetchar failed: $!";
debug("kid looping on parental input");
while (<STDIN>) {
chomp;
debug("kid got $_");
}
close(STDIN) || confess "$$: child pclose failed: $?, $!";
debug("parent closed pipe, child exiting normally");
exit 0;
答案 1 :(得分:1)
ungetc
将一个字节添加到基础输入流。要返回U + 00C5,流必须包含C3 A5
(该字符的UTF-8编码),而不是C5
(ord("Å")
)。请改用IO::Unread的unread
。