我希望做一個模塊,爲我自己的「默認使用」,例如:(主要是基於tchrist's後)如何使用現代的perl&utf8默認設置「使用My :: defaults」?
use My::perldefs;
,內容如下
use 5.014;
use strict;
use features qw(switch say state);
no warnings;
use warnings qw(FATAL closed threads internal debugging pack substr malloc
unopened portable prototype inplace io pipe unpack regexp
deprecated exiting glob digit printf utf8 layer
reserved parenthesis taint closure semicolon);
no warnings qw(exec newline);
use utf8;
use open qw(:std :utf8);
use charnames qw(:full);
use feature qw(unicode_strings);
use Encode qw(encode decode);
use Unicode::Normalize qw(NFD NFC);
use Carp qw(carp croak confess cluck);
use autodie;
簡單地說,要實現一個use My::perldefs
用於實現
- 完整正確的utf8支持和
- 打開所有現代Perl特徵。
基於recent question好的起點是uni :: perl。它是做幾乎所有的事情,我想要什麼,只需要添加:
use feature qw(unicode_strings);
use charnames qw(:full);
use Encode qw(encode decode);
use Unicode::Normalize qw(NFD NFC);
use autodie;
我將用獎金獎勵的人誰將會與上述5線的延伸UNI :: perl的(inseretd波紋管),使用有效和正確的方式。
請幫助爲utf8和現代perl的使用做一個很好的樣板。謝謝。
貝婁是uni :: perl的副本。
package My::perldefs;
use 5.014;
BEGIN {
${^WARNING_BITS} ^= ${^WARNING_BITS}^"\xfc\x3f\xf3\x00\x0f\xf3\xcf\xc0\xf3\xfc\x33\x03";
$^H |= 0x00000602;
}
m{
use strict;
use warnings;
}x;
use mro();
BEGIN {
for my $sub (qw(carp croak confess)) {
no strict 'refs';
*$sub = sub {
my $caller = caller;
local *__ANON__ = $caller .'::'. $sub;
require Carp;
*{ $caller.'::'.$sub } = \&{ 'Carp::'.$sub };
goto &{ 'Carp::'.$sub };
};
}
}
sub import {
my $me = shift;
my $caller = caller;
${^WARNING_BITS} ^= ${^WARNING_BITS}^"\xfc\x3f\xf3\x00\x0f\xf3\xcf\xc0\xf3\xfc\x33\x03";
$^H |=
0x00000602 # strict
| 0x00800000 # utf8
;
# use feature
$^H{feature_switch} =
$^H{feature_say} =
$^H{feature_state} = 1;
# use mro 'c3';
mro::set_mro($caller, 'c3');
#use open (:utf8 :std);
${^OPEN} = ":utf8\0:utf8";
binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");
binmode(STDERR, ":utf8");
for my $sub (qw(carp croak confess)) {
no strict 'refs';
*{ $caller .'::'. $sub } = \&$sub;
}
while (@_) {
my $feature = shift;
if ($feature =~ s/^://) {
my $package = $me. '::'. $feature;
eval "require $package; 1" or croak("[email protected]");
$package->load($caller);
}
}
}
1;
PS:
All of the above is (C): Mons Anderson, C<< <mons at cpan.org> >>
相關:[perl5i(http://p3rl.org/perl5i),[的perl5(http://p3rl.org/perl5),[工具包] (http://p3rl.org/Toolkit)。 – daxim
另外[ToolSet](http://search.cpan.org/perldoc?ToolSet)可能是有趣的。 – bvr