-
Notifications
You must be signed in to change notification settings - Fork 26
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
PPC 0032: Optional Strictures and Warnings #65
Open
Ovid
wants to merge
4
commits into
Perl:main
Choose a base branch
from
Ovid:ovid/no-stringification
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
# Adding Optional Strictures and Warnings Classifications to Perl | ||
|
||
## Preamble | ||
|
||
Author: Curtis "Ovid" Poe <[email protected]> | ||
Sponsor: | ||
ID: 0032 | ||
Status: Draft | ||
|
||
## Abstract | ||
|
||
This PPC proposes adding mechanisms for optional strictures and warnings to | ||
Perl that would not be enabled by the standard `use strict` and `use warnings` | ||
pragmas. This allows for introducing new strict checks and warnings without | ||
affecting existing code that uses these pragmas. As a concrete example, this | ||
PPC proposes adding `use strict 'strings'` as the first such optional | ||
stricture, which would prevent implicit stringification of references, similar | ||
to the functionality provided by the CPAN module `stringification`. | ||
|
||
## Motivation | ||
|
||
The current `strict` and `warnings` pragmas in Perl effectively enable all | ||
available strictures and warnings when used in their recommended forms (`use | ||
strict` and `use warnings`). This creates a challenge when wanting to | ||
introduce new strict checks or warnings that might be too strict or noisy for | ||
general use but valuable for specific cases. Currently, such functionality | ||
must be implemented as separate pragmatic modules (like `indirect`, | ||
`multidimensional`, or `bareword::filehandles`), leading to inconsistent | ||
interfaces and documentation scattered across different locations. | ||
|
||
The specific case of implicit reference stringification illustrates this | ||
problem well. When references are implicitly stringified (e.g., `"$ref"`), | ||
they produce output like `ARRAY(0x1234567)` which is rarely useful and often | ||
indicates a programming error. However, this behavior cannot be prohibited | ||
under the current `strict` pragma as it would break existing code. | ||
|
||
## Rationale | ||
|
||
Adding support for optional strictures and warnings provides several benefits: | ||
|
||
1. It allows for introducing new strict checks and warnings without breaking | ||
backward compatibility | ||
2. It provides a consistent interface for enabling such checks (`use strict | ||
'feature'` rather than `no feature`) | ||
3. It groups related functionality under the established `strict` and | ||
`warnings` pragmas | ||
4. It provides a clear path for experimental features to graduate into core | ||
Perl | ||
|
||
The stringification case demonstrates these benefits. Rather than using a | ||
separate `no stringification` pragma, the functionality can be enabled with | ||
`use strict 'strings'`, which is more consistent with existing Perl syntax and | ||
more discoverable through the standard documentation. | ||
|
||
## Specification | ||
|
||
### Optional Strictures | ||
|
||
Add support for optional strict modes that are not enabled by a bare `use | ||
strict` statement. These would be enabled explicitly: | ||
|
||
```perl | ||
use strict 'strings'; # Enable reference stringification checks | ||
``` | ||
|
||
The first such optional stricture would be 'strings', which prevents implicit | ||
stringification of references. When enabled, the following operations would | ||
die with an error if attempted on a non-object reference: | ||
|
||
- String interpolation (`"$ref"`) | ||
- String concatenation (`$ref . "foo"`) | ||
- Case conversion (`lc`, `lcfirst`, `uc`, `ucfirst`) | ||
- Pattern matching (`$ref =~ m//`) | ||
- String operations (`split`, `join`) | ||
- Output operations (`print`, `say`) | ||
|
||
Error messages would be specific to the operation being performed, e.g.: | ||
|
||
``` | ||
Attempted to stringify a reference at line X | ||
Attempted to concat a reference at line Y | ||
``` | ||
|
||
### Optional Warnings | ||
|
||
Add a new warnings classification for optional warnings that are not | ||
enabled by `use warnings` or `use warnings 'all'`. These would require | ||
explicit enabling: | ||
|
||
```perl | ||
use warnings 'optional'; # Enable all optional warnings | ||
use warnings 'optional::specific'; # Enable specific optional warning | ||
``` | ||
|
||
## Backwards Compatibility | ||
|
||
This proposal is explicitly designed to maintain backward compatibility: | ||
|
||
- Existing code using `use strict` or `use warnings` will continue to work | ||
unchanged | ||
- New strictures and warnings must be explicitly enabled | ||
- The mechanism allows for gradual adoption of new features | ||
- Existing modules like `stringification` can be updated to use the new | ||
mechanism while maintaining their current interface | ||
|
||
## Security Implications | ||
|
||
The proposed changes improve security by allowing developers to catch more | ||
potential programming errors. The stringification case in particular can help | ||
prevent information leaks where reference addresses might be accidentally | ||
exposed in output, though that seems unlikely to be a significant security | ||
issue. | ||
|
||
## Examples | ||
|
||
Here's a trivial example: | ||
|
||
```perl | ||
use strict 'refs', 'subs, 'vars', 'strings'; | ||
use warnings; | ||
|
||
my $data = [ sensitive_info() ]; | ||
log("Processing $data"); # Dies | ||
``` | ||
|
||
Perhaps a new `strict` flag, `strict 'standard'`, could enable the combined | ||
'refs', 'subs', and 'vars' strictures to make it easier to enable them with | ||
optional strictures: | ||
|
||
```perl | ||
use strict 'standard', 'strings'; | ||
``` | ||
|
||
## Prototype Implementation | ||
|
||
The [`stringification` module on | ||
CPAN](https://metacpan.org/release/PEVANS/stringification-0.01_004/view/lib/stringification.pm) | ||
provides a prototype for the reference stringification checks. The | ||
implementation can be adapted to work as a core feature, using similar | ||
op-hooking techniques. | ||
|
||
## Future Scope | ||
|
||
1. Additional optional strictures could include: | ||
- `strict 'direct'` (current `indirect` module) | ||
- `strict 'filehandles'` (current `bareword::filehandles` feature) | ||
|
||
2. Warning modes for optional strictures: | ||
- `use strict 'strings=warn'` to warn rather than die | ||
|
||
## Rejected Ideas | ||
|
||
1. Adding new strictures to the default `strict` mode: | ||
- Would break backward compatibility | ||
- Would make `strict` too restrictive for general use | ||
|
||
2. Using negative pragmas (`no feature`): | ||
- Less consistent with Perl's existing pragma system | ||
- Makes features harder to discover | ||
|
||
## Open Issues | ||
|
||
1. The PPC specifically mentions "non-object" stringification. Should this be | ||
more general and apply to all references? | ||
|
||
2. How should string overloading be handled? Presumably, stringification | ||
should be allowed for objects that overload stringification. Hence, the | ||
earlier restriction on "non-object" stringification, but it's unclear if | ||
that's the best approach. | ||
|
||
3. Should there be a way to enable all optional strictures at once? | ||
|
||
```perl | ||
use strict 'optional'; # ? | ||
``` | ||
|
||
See also [Grinnz's feature suggestion on this | ||
matter](https://github.com/Perl/perl5/issues/18543). | ||
|
||
## Copyright | ||
|
||
Copyright (C) 2025, Curtis "Ovid" Poe. | ||
|
||
This document and code and documentation within it may be used, redistributed and/or modified under the same terms as Perl itself. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure whether treating "optional" as a category is the best approach for this. Warnings have a classification separate from their category (see perldiag) which dictates among other things in what cases they are enabled. My thought was to add a classification for optional warnings which could then be added to any category that makes sense. The category approach would make them easier to enable all at once, but I'm not sure that's necessary. Difficult to reason about some of this until we know what optional warnings we will want to add.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure, either. That's why it's listed as open question number 3, with a link to the original discussion.