package Keyword::Simple; use v5.12.0; use warnings; use Carp qw(croak); use XSLoader; BEGIN { our $VERSION = '0.04'; XSLoader::load __PACKAGE__, $VERSION; } sub define { my ($kw, $sub) = @_; $kw =~ /^\p{XIDS}\p{XIDC}*\z/ or croak "'$kw' doesn't look like an identifier"; ref($sub) eq 'CODE' or croak "'$sub' doesn't look like a coderef"; my %keywords = %{$^H{+HINTK_KEYWORDS} // {}}; $keywords{$kw} = $sub; $^H{+HINTK_KEYWORDS} = \%keywords; } sub undefine { my ($kw) = @_; $kw =~ /^\p{XIDS}\p{XIDC}*\z/ or croak "'$kw' doesn't look like an identifier"; my %keywords = %{$^H{+HINTK_KEYWORDS} // {}}; delete $keywords{$kw}; $^H{+HINTK_KEYWORDS} = \%keywords; } 'ok' __END__ =encoding UTF-8 =for highlighter language=perl =head1 NAME Keyword::Simple - define new keywords in pure Perl =head1 SYNOPSIS package Some::Module; use Keyword::Simple; sub import { # create keyword 'provided', expand it to 'if' at parse time Keyword::Simple::define 'provided', sub { my ($ref) = @_; substr($$ref, 0, 0) = 'if'; # inject 'if' at beginning of parse buffer }; } sub unimport { # lexically disable keyword again Keyword::Simple::undefine 'provided'; } 'ok' =head1 DESCRIPTION Warning: This module is still new and experimental. The API may change in future versions. The code may be buggy. This module lets you implement new keywords in pure Perl. To do this, you need to write a module and call L|/Keyword::Simple::define> in your C method. Any keywords defined this way will be available in the lexical scope that's currently being compiled. =head2 Functions =over =item C Takes two arguments, the name of a keyword and a coderef. Injects the keyword in the lexical scope currently being compiled. For every occurrence of the keyword, your coderef will be called with one argument: A reference to a scalar holding the rest of the source code (following the keyword). You can modify this scalar in any way you like and after your coderef returns, perl will continue parsing from that scalar as if its contents had been the real source code in the first place. =item C Takes one argument, the name of a keyword. Disables that keyword in the lexical scope that's currently being compiled. You can call this from your C method to make the C syntax work. =back =head1 BUGS AND LIMITATIONS This module depends on the L API introduced in perl 5.12. Older versions of perl are not supported. Every new keyword is actually a complete statement by itself. The parsing magic only happens afterwards. This means that e.g. the code in the L actually does this: provided ($foo > 2) { ... } # expands to ; if ($foo > 2) { ... } The C<;> represents a no-op statement, the C was injected by the Perl code, and the rest of the file is unchanged. This also means your new keywords can only occur at the beginning of a statement, not embedded in an expression. Keywords in the replacement part of a C substitution aren't handled correctly and break parsing. There are barely any tests. =begin :README =head1 INSTALLATION To download and install this module, use your favorite CPAN client, e.g. L|cpan>: =for highlighter language=sh cpan Keyword::Simple Or L|cpanm>: cpanm Keyword::Simple To do it manually, run the following commands (after downloading and unpacking the tarball): perl Makefile.PL make make test make install =end :README =head1 SUPPORT AND DOCUMENTATION After installing, you can find documentation for this module with the L|perldoc> command. =for highlighter language=sh perldoc Keyword::Simple You can also look for information at L. To see a list of open bugs, visit L. To report a new bug, send an email to C. =head1 AUTHOR Lukas Mai, C<< >> =head1 COPYRIGHT & LICENSE Copyright (C) 2012, 2013 Lukas Mai. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. =cut