This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: fix minor errors in description of postderef
[perl5.git] / regen / feature.pl
... / ...
CommitLineData
1#!/usr/bin/perl
2#
3# Regenerate (overwriting only if changed):
4#
5# lib/feature.pm
6# feature.h
7#
8# from information hardcoded into this script and from two #defines
9# in perl.h.
10#
11# This script is normally invoked from regen.pl.
12
13BEGIN {
14 require 'regen/regen_lib.pl';
15 push @INC, './lib';
16}
17use strict ;
18
19
20###########################################################################
21# Hand-editable data
22
23# (feature name) => (internal name, used in %^H and macro names)
24my %feature = (
25 say => 'say',
26 state => 'state',
27 switch => 'switch',
28 evalbytes => 'evalbytes',
29 postderef => 'postderef',
30 array_base => 'arybase',
31 current_sub => '__SUB__',
32 lexical_subs => 'lexsubs',
33 postderef_qq => 'postderef_qq',
34 unicode_eval => 'unieval',
35 unicode_strings => 'unicode',
36 fc => 'fc',
37);
38
39# NOTE: If a feature is ever enabled in a non-contiguous range of Perl
40# versions, any code below that uses %BundleRanges will have to
41# be changed to account.
42
43# 5.odd implies the next 5.even, but an explicit 5.even can override it.
44my %feature_bundle = (
45 all => [ keys %feature ],
46 default => [qw(array_base)],
47 "5.9.5" => [qw(say state switch array_base)],
48 "5.10" => [qw(say state switch array_base)],
49 "5.11" => [qw(say state switch unicode_strings array_base)],
50 "5.13" => [qw(say state switch unicode_strings array_base)],
51 "5.15" => [qw(say state switch unicode_strings unicode_eval
52 evalbytes current_sub fc)],
53 "5.17" => [qw(say state switch unicode_strings unicode_eval
54 evalbytes current_sub fc)],
55 "5.19" => [qw(say state switch unicode_strings unicode_eval
56 evalbytes current_sub fc)],
57);
58
59# not actually used currently
60my @experimental = qw( lexical_subs );
61
62
63###########################################################################
64# More data generated from the above
65
66for (keys %feature_bundle) {
67 next unless /^5\.(\d*[13579])\z/;
68 $feature_bundle{"5.".($1+1)} ||= $feature_bundle{$_};
69}
70
71my %UniqueBundles; # "say state switch" => 5.10
72my %Aliases; # 5.12 => 5.11
73for( sort keys %feature_bundle ) {
74 my $value = join(' ', sort @{$feature_bundle{$_}});
75 if (exists $UniqueBundles{$value}) {
76 $Aliases{$_} = $UniqueBundles{$value};
77 }
78 else {
79 $UniqueBundles{$value} = $_;
80 }
81}
82 # start end
83my %BundleRanges; # say => ['5.10', '5.15'] # unique bundles for values
84for my $bund (
85 sort { $a eq 'default' ? -1 : $b eq 'default' ? 1 : $a cmp $b }
86 values %UniqueBundles
87) {
88 next if $bund =~ /[^\d.]/ and $bund ne 'default';
89 for (@{$feature_bundle{$bund}}) {
90 if (@{$BundleRanges{$_} ||= []} == 2) {
91 $BundleRanges{$_}[1] = $bund
92 }
93 else {
94 push @{$BundleRanges{$_}}, $bund;
95 }
96 }
97}
98
99my $HintShift;
100my $HintMask;
101my $Uni8Bit;
102
103open "perl.h", "perl.h" or die "$0 cannot open perl.h: $!";
104while (readline "perl.h") {
105 next unless /#\s*define\s+(HINT_FEATURE_MASK|HINT_UNI_8_BIT)/;
106 my $is_u8b = $1 =~ 8;
107 /(0x[A-Fa-f0-9]+)/ or die "No hex number in:\n\n$_\n ";
108 if ($is_u8b) {
109 $Uni8Bit = $1;
110 }
111 else {
112 my $hex = $HintMask = $1;
113 my $bits = sprintf "%b", oct $1;
114 $bits =~ /^0*1+(0*)\z/
115 or die "Non-contiguous bits in $bits (binary for $hex):\n\n$_\n ";
116 $HintShift = length $1;
117 my $bits_needed =
118 length sprintf "%b", scalar keys %UniqueBundles;
119 $bits =~ /1{$bits_needed}/
120 or die "Not enough bits (need $bits_needed)"
121 . " in $bits (binary for $hex):\n\n$_\n ";
122 }
123 if ($Uni8Bit && $HintMask) { last }
124}
125die "No HINT_FEATURE_MASK defined in perl.h" unless $HintMask;
126die "No HINT_UNI_8_BIT defined in perl.h" unless $Uni8Bit;
127
128close "perl.h";
129
130my @HintedBundles =
131 ('default', grep !/[^\d.]/, sort values %UniqueBundles);
132
133
134###########################################################################
135# Open files to be generated
136
137my ($pm, $h) = map {
138 open_new($_, '>', { by => 'regen/feature.pl' });
139} 'lib/feature.pm', 'feature.h';
140
141
142###########################################################################
143# Generate lib/feature.pm
144
145while (<DATA>) {
146 last if /^FEATURES$/ ;
147 print $pm $_ ;
148}
149
150sub longest {
151 my $long;
152 for(@_) {
153 if (!defined $long or length $long < length) {
154 $long = $_;
155 }
156 }
157 $long;
158}
159
160print $pm "our %feature = (\n";
161my $width = length longest keys %feature;
162for(sort { length $a <=> length $b || $a cmp $b } keys %feature) {
163 print $pm " $_" . " "x($width-length)
164 . " => 'feature_$feature{$_}',\n";
165}
166print $pm ");\n\n";
167
168print $pm "our %feature_bundle = (\n";
169$width = length longest values %UniqueBundles;
170for( sort { $UniqueBundles{$a} cmp $UniqueBundles{$b} }
171 keys %UniqueBundles ) {
172 my $bund = $UniqueBundles{$_};
173 print $pm qq' "$bund"' . " "x($width-length $bund)
174 . qq' => [qw($_)],\n';
175}
176print $pm ");\n\n";
177
178for (sort keys %Aliases) {
179 print $pm
180 qq'\$feature_bundle{"$_"} = \$feature_bundle{"$Aliases{$_}"};\n';
181};
182
183#print $pm "my \%experimental = (\n";
184#print $pm " $_ => 1,\n", for @experimental;
185#print $pm ");\n";
186
187print $pm <<EOPM;
188
189our \$hint_shift = $HintShift;
190our \$hint_mask = $HintMask;
191our \@hint_bundles = qw( @HintedBundles );
192
193# This gets set (for now) in \$^H as well as in %^H,
194# for runtime speed of the uc/lc/ucfirst/lcfirst functions.
195# See HINT_UNI_8_BIT in perl.h.
196our \$hint_uni8bit = $Uni8Bit;
197EOPM
198
199
200while (<DATA>) {
201 last if /^PODTURES$/ ;
202 print $pm $_ ;
203}
204
205select +(select($pm), $~ = 'PODTURES')[0];
206format PODTURES =
207 ^<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~
208$::bundle, $::feature
209.
210
211for ('default', sort grep /\.\d[02468]/, keys %feature_bundle) {
212 $::bundle = ":$_";
213 $::feature = join ' ', @{$feature_bundle{$_}};
214 write $pm;
215 print $pm "\n";
216}
217
218while (<DATA>) {
219 print $pm $_ ;
220}
221
222read_only_bottom_close_and_rename($pm);
223
224
225###########################################################################
226# Generate feature.h
227
228print $h <<EOH;
229
230#if defined(PERL_CORE) || defined (PERL_EXT)
231
232#define HINT_FEATURE_SHIFT $HintShift
233
234EOH
235
236my $count;
237for (@HintedBundles) {
238 (my $key = uc) =~ y/.//d;
239 print $h "#define FEATURE_BUNDLE_$key ", $count++, "\n";
240}
241
242print $h <<'EOH';
243#define FEATURE_BUNDLE_CUSTOM (HINT_FEATURE_MASK >> HINT_FEATURE_SHIFT)
244
245#define CURRENT_HINTS \
246 (PL_curcop == &PL_compiling ? PL_hints : PL_curcop->cop_hints)
247#define CURRENT_FEATURE_BUNDLE \
248 ((CURRENT_HINTS & HINT_FEATURE_MASK) >> HINT_FEATURE_SHIFT)
249
250/* Avoid using ... && Perl_feature_is_enabled(...) as that triggers a bug in
251 the HP-UX cc on PA-RISC */
252#define FEATURE_IS_ENABLED(name) \
253 ((CURRENT_HINTS \
254 & HINT_LOCALIZE_HH) \
255 ? Perl_feature_is_enabled(aTHX_ STR_WITH_LEN(name)) : FALSE)
256/* The longest string we pass in. */
257EOH
258
259my $longest_internal_feature_name = longest values %feature;
260print $h <<EOL;
261#define MAX_FEATURE_LEN (sizeof("$longest_internal_feature_name")-1)
262
263EOL
264
265for (
266 sort { length $a <=> length $b || $a cmp $b } keys %feature
267) {
268 my($first,$last) =
269 map { (my $__ = uc) =~ y/.//d; $__ } @{$BundleRanges{$_}};
270 my $name = $feature{$_};
271 my $NAME = uc $name;
272 if ($last && $first eq 'DEFAULT') { # ‘>= DEFAULT’ warns
273 print $h <<EOI;
274#define FEATURE_$NAME\_IS_ENABLED \\
275 ( \\
276 CURRENT_FEATURE_BUNDLE <= FEATURE_BUNDLE_$last \\
277 || (CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \\
278 FEATURE_IS_ENABLED("$name")) \\
279 )
280
281EOI
282 }
283 elsif ($last) {
284 print $h <<EOH3;
285#define FEATURE_$NAME\_IS_ENABLED \\
286 ( \\
287 (CURRENT_FEATURE_BUNDLE >= FEATURE_BUNDLE_$first && \\
288 CURRENT_FEATURE_BUNDLE <= FEATURE_BUNDLE_$last) \\
289 || (CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \\
290 FEATURE_IS_ENABLED("$name")) \\
291 )
292
293EOH3
294 }
295 elsif ($first) {
296 print $h <<EOH4;
297#define FEATURE_$NAME\_IS_ENABLED \\
298 ( \\
299 CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_$first \\
300 || (CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \\
301 FEATURE_IS_ENABLED("$name")) \\
302 )
303
304EOH4
305 }
306 else {
307 print $h <<EOH5;
308#define FEATURE_$NAME\_IS_ENABLED \\
309 ( \\
310 CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \\
311 FEATURE_IS_ENABLED("$name") \\
312 )
313
314EOH5
315 }
316}
317
318print $h <<EOH;
319
320#endif /* PERL_CORE or PERL_EXT */
321
322#ifdef PERL_IN_OP_C
323PERL_STATIC_INLINE void
324S_enable_feature_bundle(pTHX_ SV *ver)
325{
326 SV *comp_ver = sv_newmortal();
327 PL_hints = (PL_hints &~ HINT_FEATURE_MASK)
328 | (
329EOH
330
331for (reverse @HintedBundles[1..$#HintedBundles]) { # skip default
332 my $numver = $_;
333 if ($numver eq '5.10') { $numver = '5.009005' } # special case
334 else { $numver =~ s/\./.0/ } # 5.11 => 5.011
335 (my $macrover = $_) =~ y/.//d;
336 print $h <<" EOK";
337 (sv_setnv(comp_ver, $numver),
338 vcmp(ver, upg_version(comp_ver, FALSE)) >= 0)
339 ? FEATURE_BUNDLE_$macrover :
340 EOK
341}
342
343print $h <<EOJ;
344 FEATURE_BUNDLE_DEFAULT
345 ) << HINT_FEATURE_SHIFT;
346 /* special case */
347 assert(PL_curcop == &PL_compiling);
348 if (FEATURE_UNICODE_IS_ENABLED) PL_hints |= HINT_UNI_8_BIT;
349 else PL_hints &= ~HINT_UNI_8_BIT;
350}
351#endif /* PERL_IN_OP_C */
352EOJ
353
354read_only_bottom_close_and_rename($h);
355
356
357###########################################################################
358# Template for feature.pm
359
360__END__
361package feature;
362
363our $VERSION = '1.34';
364
365FEATURES
366
367# TODO:
368# - think about versioned features (use feature switch => 2)
369
370=head1 NAME
371
372feature - Perl pragma to enable new features
373
374=head1 SYNOPSIS
375
376 use feature qw(say switch);
377 given ($foo) {
378 when (1) { say "\$foo == 1" }
379 when ([2,3]) { say "\$foo == 2 || \$foo == 3" }
380 when (/^a[bc]d$/) { say "\$foo eq 'abd' || \$foo eq 'acd'" }
381 when ($_ > 100) { say "\$foo > 100" }
382 default { say "None of the above" }
383 }
384
385 use feature ':5.10'; # loads all features available in perl 5.10
386
387 use v5.10; # implicitly loads :5.10 feature bundle
388
389=head1 DESCRIPTION
390
391It is usually impossible to add new syntax to Perl without breaking
392some existing programs. This pragma provides a way to minimize that
393risk. New syntactic constructs, or new semantic meanings to older
394constructs, can be enabled by C<use feature 'foo'>, and will be parsed
395only when the appropriate feature pragma is in scope. (Nevertheless, the
396C<CORE::> prefix provides access to all Perl keywords, regardless of this
397pragma.)
398
399=head2 Lexical effect
400
401Like other pragmas (C<use strict>, for example), features have a lexical
402effect. C<use feature qw(foo)> will only make the feature "foo" available
403from that point to the end of the enclosing block.
404
405 {
406 use feature 'say';
407 say "say is available here";
408 }
409 print "But not here.\n";
410
411=head2 C<no feature>
412
413Features can also be turned off by using C<no feature "foo">. This too
414has lexical effect.
415
416 use feature 'say';
417 say "say is available here";
418 {
419 no feature 'say';
420 print "But not here.\n";
421 }
422 say "Yet it is here.";
423
424C<no feature> with no features specified will reset to the default group. To
425disable I<all> features (an unusual request!) use C<no feature ':all'>.
426
427=head1 AVAILABLE FEATURES
428
429=head2 The 'say' feature
430
431C<use feature 'say'> tells the compiler to enable the Perl 6 style
432C<say> function.
433
434See L<perlfunc/say> for details.
435
436This feature is available starting with Perl 5.10.
437
438=head2 The 'state' feature
439
440C<use feature 'state'> tells the compiler to enable C<state>
441variables.
442
443See L<perlsub/"Persistent Private Variables"> for details.
444
445This feature is available starting with Perl 5.10.
446
447=head2 The 'switch' feature
448
449C<use feature 'switch'> tells the compiler to enable the Perl 6
450given/when construct.
451
452See L<perlsyn/"Switch Statements"> for details.
453
454This feature is available starting with Perl 5.10.
455
456=head2 The 'unicode_strings' feature
457
458C<use feature 'unicode_strings'> tells the compiler to use Unicode semantics
459in all string operations executed within its scope (unless they are also
460within the scope of either C<use locale> or C<use bytes>). The same applies
461to all regular expressions compiled within the scope, even if executed outside
462it. It does not change the internal representation of strings, but only how
463they are interpreted.
464
465C<no feature 'unicode_strings'> tells the compiler to use the traditional
466Perl semantics wherein the native character set semantics is used unless it is
467clear to Perl that Unicode is desired. This can lead to some surprises
468when the behavior suddenly changes. (See
469L<perlunicode/The "Unicode Bug"> for details.) For this reason, if you are
470potentially using Unicode in your program, the
471C<use feature 'unicode_strings'> subpragma is B<strongly> recommended.
472
473This feature is available starting with Perl 5.12; was almost fully
474implemented in Perl 5.14; and extended in Perl 5.16 to cover C<quotemeta>.
475
476=head2 The 'unicode_eval' and 'evalbytes' features
477
478Under the C<unicode_eval> feature, Perl's C<eval> function, when passed a
479string, will evaluate it as a string of characters, ignoring any
480C<use utf8> declarations. C<use utf8> exists to declare the encoding of
481the script, which only makes sense for a stream of bytes, not a string of
482characters. Source filters are forbidden, as they also really only make
483sense on strings of bytes. Any attempt to activate a source filter will
484result in an error.
485
486The C<evalbytes> feature enables the C<evalbytes> keyword, which evaluates
487the argument passed to it as a string of bytes. It dies if the string
488contains any characters outside the 8-bit range. Source filters work
489within C<evalbytes>: they apply to the contents of the string being
490evaluated.
491
492Together, these two features are intended to replace the historical C<eval>
493function, which has (at least) two bugs in it, that cannot easily be fixed
494without breaking existing programs:
495
496=over
497
498=item *
499
500C<eval> behaves differently depending on the internal encoding of the
501string, sometimes treating its argument as a string of bytes, and sometimes
502as a string of characters.
503
504=item *
505
506Source filters activated within C<eval> leak out into whichever I<file>
507scope is currently being compiled. To give an example with the CPAN module
508L<Semi::Semicolons>:
509
510 BEGIN { eval "use Semi::Semicolons; # not filtered here " }
511 # filtered here!
512
513C<evalbytes> fixes that to work the way one would expect:
514
515 use feature "evalbytes";
516 BEGIN { evalbytes "use Semi::Semicolons; # filtered " }
517 # not filtered
518
519=back
520
521These two features are available starting with Perl 5.16.
522
523=head2 The 'current_sub' feature
524
525This provides the C<__SUB__> token that returns a reference to the current
526subroutine or C<undef> outside of a subroutine.
527
528This feature is available starting with Perl 5.16.
529
530=head2 The 'array_base' feature
531
532This feature supports the legacy C<$[> variable. See L<perlvar/$[> and
533L<arybase>. It is on by default but disabled under C<use v5.16> (see
534L</IMPLICIT LOADING>, below).
535
536This feature is available under this name starting with Perl 5.16. In
537previous versions, it was simply on all the time, and this pragma knew
538nothing about it.
539
540=head2 The 'fc' feature
541
542C<use feature 'fc'> tells the compiler to enable the C<fc> function,
543which implements Unicode casefolding.
544
545See L<perlfunc/fc> for details.
546
547This feature is available from Perl 5.16 onwards.
548
549=head2 The 'lexical_subs' feature
550
551B<WARNING>: This feature is still experimental and the implementation may
552change in future versions of Perl. For this reason, Perl will
553warn when you use the feature, unless you have explicitly disabled the
554warning:
555
556 no warnings "experimental::lexical_subs";
557
558This enables declaration of subroutines via C<my sub foo>, C<state sub foo>
559and C<our sub foo> syntax. See L<perlsub/Lexical Subroutines> for details.
560
561This feature is available from Perl 5.18 onwards.
562
563=head1 FEATURE BUNDLES
564
565It's possible to load multiple features together, using
566a I<feature bundle>. The name of a feature bundle is prefixed with
567a colon, to distinguish it from an actual feature.
568
569 use feature ":5.10";
570
571The following feature bundles are available:
572
573 bundle features included
574 --------- -----------------
575PODTURES
576The C<:default> bundle represents the feature set that is enabled before
577any C<use feature> or C<no feature> declaration.
578
579Specifying sub-versions such as the C<0> in C<5.14.0> in feature bundles has
580no effect. Feature bundles are guaranteed to be the same for all sub-versions.
581
582 use feature ":5.14.0"; # same as ":5.14"
583 use feature ":5.14.1"; # same as ":5.14"
584
585=head1 IMPLICIT LOADING
586
587Instead of loading feature bundles by name, it is easier to let Perl do
588implicit loading of a feature bundle for you.
589
590There are two ways to load the C<feature> pragma implicitly:
591
592=over 4
593
594=item *
595
596By using the C<-E> switch on the Perl command-line instead of C<-e>.
597That will enable the feature bundle for that version of Perl in the
598main compilation unit (that is, the one-liner that follows C<-E>).
599
600=item *
601
602By explicitly requiring a minimum Perl version number for your program, with
603the C<use VERSION> construct. That is,
604
605 use v5.10.0;
606
607will do an implicit
608
609 no feature ':all';
610 use feature ':5.10';
611
612and so on. Note how the trailing sub-version
613is automatically stripped from the
614version.
615
616But to avoid portability warnings (see L<perlfunc/use>), you may prefer:
617
618 use 5.010;
619
620with the same effect.
621
622If the required version is older than Perl 5.10, the ":default" feature
623bundle is automatically loaded instead.
624
625=back
626
627=cut
628
629sub import {
630 my $class = shift;
631
632 if (!@_) {
633 croak("No features specified");
634 }
635
636 __common(1, @_);
637}
638
639sub unimport {
640 my $class = shift;
641
642 # A bare C<no feature> should reset to the default bundle
643 if (!@_) {
644 $^H &= ~($hint_uni8bit|$hint_mask);
645 return;
646 }
647
648 __common(0, @_);
649}
650
651
652sub __common {
653 my $import = shift;
654 my $bundle_number = $^H & $hint_mask;
655 my $features = $bundle_number != $hint_mask
656 && $feature_bundle{$hint_bundles[$bundle_number >> $hint_shift]};
657 if ($features) {
658 # Features are enabled implicitly via bundle hints.
659 # Delete any keys that may be left over from last time.
660 delete @^H{ values(%feature) };
661 $^H |= $hint_mask;
662 for (@$features) {
663 $^H{$feature{$_}} = 1;
664 $^H |= $hint_uni8bit if $_ eq 'unicode_strings';
665 }
666 }
667 while (@_) {
668 my $name = shift;
669 if (substr($name, 0, 1) eq ":") {
670 my $v = substr($name, 1);
671 if (!exists $feature_bundle{$v}) {
672 $v =~ s/^([0-9]+)\.([0-9]+).[0-9]+$/$1.$2/;
673 if (!exists $feature_bundle{$v}) {
674 unknown_feature_bundle(substr($name, 1));
675 }
676 }
677 unshift @_, @{$feature_bundle{$v}};
678 next;
679 }
680 if (!exists $feature{$name}) {
681 unknown_feature($name);
682 }
683 if ($import) {
684 $^H{$feature{$name}} = 1;
685 $^H |= $hint_uni8bit if $name eq 'unicode_strings';
686 } else {
687 delete $^H{$feature{$name}};
688 $^H &= ~ $hint_uni8bit if $name eq 'unicode_strings';
689 }
690 }
691}
692
693sub unknown_feature {
694 my $feature = shift;
695 croak(sprintf('Feature "%s" is not supported by Perl %vd',
696 $feature, $^V));
697}
698
699sub unknown_feature_bundle {
700 my $feature = shift;
701 croak(sprintf('Feature bundle "%s" is not supported by Perl %vd',
702 $feature, $^V));
703}
704
705sub croak {
706 require Carp;
707 Carp::croak(@_);
708}
709
7101;