1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
|
/* You may distribute under the terms of either the GNU General Public License
* or the Artistic License (the same terms as Perl itself)
*
* (C) Paul Evans, 2019-2024 -- leonerd@leonerd.org.uk
*/
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
/* We need to be able to see FEATURE_*_IS_ENABLED */
#define PERL_EXT
#include "feature.h"
#include "XSParseSublike.h"
#define HAVE_PERL_VERSION(R, V, S) \
(PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S))))))
#if HAVE_PERL_VERSION(5, 37, 10)
/* feature 'class' first became available in 5.37.9 but it wasn't until
* 5.37.10 that we could pass CVf_IsMETHOD to start_subparse()
*/
# define HAVE_FEATURE_CLASS
#endif
#if HAVE_PERL_VERSION(5, 18, 0)
# define HAVE_LEXICAL_SUB
#endif
/* We always need this included to get the struct and function definitions
* visible, even though we won't be calling it
*/
#include "parse_subsignature_ex.h"
#if HAVE_PERL_VERSION(5, 26, 0)
# include "make_argcheck_aux.c.inc"
# if !HAVE_PERL_VERSION(5, 31, 3)
# define parse_subsignature(flags) parse_subsignature_ex(0, NULL, NULL, 0) /* ignore core flags as there are none */
# endif
# define HAVE_PARSE_SUBSIGNATURE
#endif
#if !HAVE_PERL_VERSION(5, 22, 0)
# include "block_start.c.inc"
# include "block_end.c.inc"
#endif
#ifndef wrap_keyword_plugin
# include "wrap_keyword_plugin.c.inc"
#endif
#include "lexer-additions.c.inc"
#define QUOTED_PVNf "\"%.*s\"%s"
#define QUOTED_PVNfARG(pv,len) ((len) <= 255 ? (int)(len) : 255), (pv), ((len) <= 255 ? "" : "...")
/* Non-documented internal flags we use for our own purposes */
enum {
XS_PARSE_SUBLIKE_ACTION_CVf_IsMETHOD = (1<<31), /* do we set CVf_IsMETHOD? */
};
static int parse(pTHX_
struct HooksAndData hooksanddata[],
size_t nhooks,
OP **op_ptr)
{
/* We need to reserve extra space in here for the sigctx pointer. To
* simplify much code here lets just pretend `ctx` is the actual context
* struct stored within
*/
struct XPSContextWithPointer ctx_with_ptr = { 0 };
#define ctx (ctx_with_ptr.ctx)
IV hooki;
const struct XSParseSublikeHooks *hooks;
void *hookdata;
U8 require_parts = 0, skip_parts = 0;
bool have_dynamic_actions = FALSE;
ENTER_with_name("parse_sublike");
/* From here onwards any `return` must be prefixed by LEAVE_with_name() */
U32 was_scopestack_ix = PL_scopestack_ix;
ctx.moddata = newHV();
SAVEFREESV(ctx.moddata);
FOREACH_HOOKS_FORWARD {
require_parts |= hooks->require_parts;
skip_parts |= hooks->skip_parts;
if(!(hooks->flags & XS_PARSE_SUBLIKE_FLAG_BODY_OPTIONAL))
require_parts |= XS_PARSE_SUBLIKE_PART_BODY;
if(hooks->flags & XS_PARSE_SUBLIKE_COMPAT_FLAG_DYNAMIC_ACTIONS)
have_dynamic_actions = TRUE;
}
if(!(skip_parts & XS_PARSE_SUBLIKE_PART_NAME)) {
ctx.name = lex_scan_packagename();
lex_read_space(0);
}
if((require_parts & XS_PARSE_SUBLIKE_PART_NAME) && !ctx.name)
croak("Expected name for sub-like construction");
if(ctx.name && strstr(SvPV_nolen(ctx.name), "::")) {
FOREACH_HOOKS_FORWARD {
if(hooks->flags & XS_PARSE_SUBLIKE_FLAG_ALLOW_PKGNAME)
continue;
croak("Declaring this sub-like function in another package is not permitted");
}
}
/* Initial idea of actions are determined by whether we have a name */
ctx.actions = ctx.name
? /* named */ XS_PARSE_SUBLIKE_ACTION_SET_CVNAME|XS_PARSE_SUBLIKE_ACTION_INSTALL_SYMBOL
: /* anon */ XS_PARSE_SUBLIKE_ACTION_CVf_ANON|XS_PARSE_SUBLIKE_ACTION_REFGEN_ANONCODE|XS_PARSE_SUBLIKE_ACTION_RET_EXPR;
FOREACH_HOOKS_FORWARD {
if(hooks->pre_subparse)
(*hooks->pre_subparse)(aTHX_ &ctx, hookdata);
}
#ifdef DEBUGGING
if(PL_scopestack_ix != was_scopestack_ix)
croak("ARGH: pre_subparse broke the scopestack (was %d, now %d)\n",
was_scopestack_ix, PL_scopestack_ix);
#endif
if(!have_dynamic_actions) {
if(ctx.name)
ctx.actions &= ~XS_PARSE_SUBLIKE_ACTION_CVf_ANON;
else
ctx.actions |= XS_PARSE_SUBLIKE_ACTION_CVf_ANON;
}
int subparse_flags = 0;
if(ctx.actions & XS_PARSE_SUBLIKE_ACTION_CVf_ANON)
subparse_flags |= CVf_ANON;
#ifdef HAVE_FEATURE_CLASS
if(ctx.actions & XS_PARSE_SUBLIKE_ACTION_CVf_IsMETHOD)
subparse_flags |= CVf_IsMETHOD;
#endif
/* TODO: We should find a way to put this in the main ctx structure, but we
* can't easily change that without breaking ABI compat.
*/
PADOFFSET lexname_padix = 0;
if(ctx.name && (ctx.actions & XS_PARSE_SUBLIKE_ACTION_INSTALL_LEXICAL)) {
SV *ampname = newSVpvf("&%" SVf, SVfARG(ctx.name));
SAVEFREESV(ampname);
lexname_padix = pad_add_name_sv(ampname, 0, NULL, NULL);
}
I32 floor_ix = start_subparse(FALSE, subparse_flags);
SAVEFREESV(PL_compcv);
#ifdef HAVE_LEXICAL_SUB
if(ctx.actions & XS_PARSE_SUBLIKE_ACTION_INSTALL_LEXICAL)
/* Lexical subs always have CVf_CLONE */
CvCLONE_on(PL_compcv);
#endif
if(!(skip_parts & XS_PARSE_SUBLIKE_PART_ATTRS) && (lex_peek_unichar(0) == ':')) {
lex_read_unichar(0);
lex_read_space(0);
ctx.attrs = newLISTOP(OP_LIST, 0, NULL, NULL);
while(1) {
SV *attr = newSV(0);
SV *val = newSV(0);
if(!lex_scan_attrval_into(attr, val))
break;
lex_read_space(0);
if(lex_peek_unichar(0) == ':') {
lex_read_unichar(0);
lex_read_space(0);
}
bool handled = FALSE;
FOREACH_HOOKS_FORWARD {
if(hooks->filter_attr)
handled |= (*hooks->filter_attr)(aTHX_ &ctx, attr, val, hookdata);
}
if(handled) {
SvREFCNT_dec(attr);
SvREFCNT_dec(val);
continue;
}
if(strEQ(SvPVX(attr), "lvalue")) {
CvLVALUE_on(PL_compcv);
continue;
}
if(SvPOK(val))
sv_catpvf(attr, "(%" SVf ")", val);
SvREFCNT_dec(val);
ctx.attrs = op_append_elem(OP_LIST, ctx.attrs, newSVOP(OP_CONST, 0, attr));
}
}
PL_hints |= HINT_LOCALIZE_HH;
I32 save_ix = block_start(TRUE);
FOREACH_HOOKS_FORWARD {
if(hooks->post_blockstart)
(*hooks->post_blockstart)(aTHX_ &ctx, hookdata);
}
#ifdef DEBUGGING
if(PL_scopestack_ix != was_scopestack_ix)
croak("ARGH: post_blockstart broke the scopestack (was %d, now %d)\n",
was_scopestack_ix, PL_scopestack_ix);
#endif
#ifdef HAVE_PARSE_SUBSIGNATURE
OP *sigop = NULL;
if(!(skip_parts & XS_PARSE_SUBLIKE_PART_SIGNATURE) && (lex_peek_unichar(0) == '(')) {
lex_read_unichar(0);
lex_read_space(0);
if(require_parts & XS_PARSE_SUBLIKE_PART_SIGNATURE) {
#if HAVE_PERL_VERSION(5, 41, 8)
SAVEFEATUREBITS();
PL_compiling.cop_features.bits[FEATURE_SIGNATURES_INDEX] |= FEATURE_SIGNATURES_BIT;
#elif HAVE_PERL_VERSION(5, 32, 0)
SAVEI32(PL_compiling.cop_features);
PL_compiling.cop_features |= FEATURE_SIGNATURES_BIT;
#else
/* So far this is only used by the "method" keyword hack for perl 5.38
* onwards so this doesn't technically matter. Yet...
*/
croak("TODO: import_pragma(\"feature\", \"signatures\")");
#endif
}
U32 flags = 0;
bool have_sighooks = false;
FOREACH_HOOKS_FORWARD {
if(hooks->flags & XS_PARSE_SUBLIKE_FLAG_SIGNATURE_NAMED_PARAMS)
flags |= PARSE_SUBSIGNATURE_NAMED_PARAMS;
if(hooks->flags & XS_PARSE_SUBLIKE_FLAG_SIGNATURE_PARAM_ATTRIBUTES)
flags |= PARSE_SUBSIGNATURE_PARAM_ATTRIBUTES;
if(hooks->ver >= 7 && (hooks->start_signature || hooks->finish_signature))
have_sighooks = true;
}
if(flags || have_sighooks)
sigop = parse_subsignature_ex(flags, &ctx_with_ptr, hooksanddata, nhooks);
else {
#if HAVE_PERL_VERSION(5, 31, 3)
/* core's parse_subsignature doesn't seem able to handle empty sigs
* RT132284
* https://github.com/Perl/perl5/issues/17689
*/
if(lex_peek_unichar(0) == ')') {
/* Inject an empty OP_ARGCHECK much as core would do if it encountered
* an empty signature */
UNOP_AUX_item *aux = make_argcheck_aux(0, 0, 0);
sigop = op_prepend_elem(OP_LINESEQ, newSTATEOP(0, NULL, NULL),
newUNOP_AUX(OP_ARGCHECK, 0, NULL, aux));
/* a nextstate at the end handles context correctly for an empty
* sub body */
sigop = op_append_elem(OP_LINESEQ, sigop, newSTATEOP(0, NULL, NULL));
#if HAVE_PERL_VERSION(5,31,5)
/* wrap the list of arg ops in a NULL aux op. This serves two
* purposes. First, it makes the arg list a separate subtree
* from the body of the sub, and secondly the null op may in
* future be upgraded to an OP_SIGNATURE when implemented. For
* now leave it as ex-argcheck
*/
sigop = newUNOP_AUX(OP_ARGCHECK, 0, sigop, NULL);
op_null(sigop);
#endif
}
else
#endif
sigop = parse_subsignature(0);
if(PL_parser->error_count) {
assert(PL_scopestack_ix == was_scopestack_ix);
LEAVE_with_name("parse_sublike");
return 0;
}
}
if(lex_peek_unichar(0) != ')')
croak("Expected ')'");
lex_read_unichar(0);
lex_read_space(0);
}
#endif
if(lex_peek_unichar(0) == '{') {
/* TODO: technically possible to have skip body flag */
ctx.body = parse_block(0);
SvREFCNT_inc(PL_compcv);
}
else if(require_parts & XS_PARSE_SUBLIKE_PART_BODY)
croak("Expected '{' for block body");
else if(lex_peek_unichar(0) == ';') {
/* nothing to be done */
}
else
croak("Expected '{' for block body or ';'");
#ifdef HAVE_PARSE_SUBSIGNATURE
if(ctx.body && sigop) {
/* parse_block() returns an empy block as a stub op.
* no need to keep that if we we have a signature.
*/
if (ctx.body->op_type == OP_STUB) {
op_free(ctx.body);
ctx.body = NULL;
}
ctx.body = op_append_list(OP_LINESEQ, sigop, ctx.body);
}
#endif
if(PL_parser->error_count) {
/* parse_block() still sometimes returns a valid body even if a parse
* error happens.
* We need to destroy this partial body before returning a valid(ish)
* state to the keyword hook mechanism, so it will find the error count
* correctly
* See https://rt.cpan.org/Ticket/Display.html?id=130417
*/
op_free(ctx.body);
/* REALLY??! Do I really have to do this??
* See also:
* https://www.nntp.perl.org/group/perl.perl5.porters/2021/06/msg260642.html
*/
while(PL_scopestack_ix > was_scopestack_ix)
LEAVE;
*op_ptr = newOP(OP_NULL, 0);
if(ctx.name) {
SvREFCNT_dec(ctx.name);
assert(PL_scopestack_ix == was_scopestack_ix);
LEAVE_with_name("parse_sublike");
return KEYWORD_PLUGIN_STMT;
}
else {
assert(PL_scopestack_ix == was_scopestack_ix);
LEAVE_with_name("parse_sublike");
return KEYWORD_PLUGIN_EXPR;
}
}
FOREACH_HOOKS_REVERSE {
if(hooks->pre_blockend)
(*hooks->pre_blockend)(aTHX_ &ctx, hookdata);
}
#ifdef DEBUGGING
if(PL_scopestack_ix != was_scopestack_ix)
croak("ARGH: pre_blockend broke the scopestack (was %d, now %d)\n",
was_scopestack_ix, PL_scopestack_ix);
#endif
if(ctx.body) {
ctx.body = block_end(save_ix, ctx.body);
if(!have_dynamic_actions) {
if(ctx.name) {
ctx.actions |= XS_PARSE_SUBLIKE_ACTION_SET_CVNAME;
if(!(ctx.actions & XS_PARSE_SUBLIKE_ACTION_INSTALL_LEXICAL))
ctx.actions |= XS_PARSE_SUBLIKE_ACTION_INSTALL_SYMBOL;
}
else
ctx.actions &= ~(XS_PARSE_SUBLIKE_ACTION_SET_CVNAME|XS_PARSE_SUBLIKE_ACTION_INSTALL_SYMBOL);
}
/* If we want both SET_CVNAME and INSTALL_SYMBOL actions we might as well
* let newATTRSUB() do it. If we only wanted one we need to be more subtle
*/
bool action_set_cvname = ctx.actions & XS_PARSE_SUBLIKE_ACTION_SET_CVNAME;
bool action_install_symbol = ctx.actions & XS_PARSE_SUBLIKE_ACTION_INSTALL_SYMBOL;
bool action_install_lexical = ctx.actions & XS_PARSE_SUBLIKE_ACTION_INSTALL_LEXICAL;
if(action_install_symbol && action_install_lexical)
croak("Cannot both ACTION_INSTALL_SYMBOL and ACTION_INSTALL_LEXICAL");
OP *nameop = NULL;
if(ctx.name && action_set_cvname && action_install_symbol)
nameop = newSVOP(OP_CONST, 0, SvREFCNT_inc(ctx.name));
if(!nameop && action_install_symbol)
warn("Setting XS_PARSE_SUBLIKE_ACTION_INSTALL_SYMBOL without _ACTION_SET_CVNAME is nonsensical");
if(action_install_lexical) {
#ifdef HAVE_LEXICAL_SUB
assert(lexname_padix);
nameop = newOP(OP_PADANY, 0);
nameop->op_targ = lexname_padix;
ctx.cv = newMYSUB(floor_ix, nameop, NULL, ctx.attrs, ctx.body);
#else
PERL_UNUSED_VAR(lexname_padix);
croak("XS_PARSE_SUBLIKE_ACTION_INSTALL_LEXICAL is not supported on this version of Perl");
#endif
}
else
ctx.cv = newATTRSUB(floor_ix, nameop, NULL, ctx.attrs, ctx.body);
if(!nameop && action_set_cvname) {
#if HAVE_PERL_VERSION(5,22,0)
STRLEN namelen;
const char *name = SvPV_const(ctx.name, namelen);
U32 hash;
PERL_HASH(hash, name, namelen);
/* Core's CvNAME_HEK_set macro uses unshare_hek() which isn't exposed. But we
* likely don't need it here */
#ifndef unshare_hek
# define unshare_hek(h) (void)0
#endif
assert(!CvNAME_HEK(ctx.cv));
CvNAME_HEK_set(ctx.cv,
share_hek(name, SvUTF8(ctx.name) ? -namelen : namelen, hash));
#endif
}
ctx.attrs = NULL;
ctx.body = NULL;
}
FOREACH_HOOKS_FORWARD {
if(hooks->post_newcv)
(*hooks->post_newcv)(aTHX_ &ctx, hookdata);
}
assert(PL_scopestack_ix == was_scopestack_ix);
LEAVE_with_name("parse_sublike");
if(!have_dynamic_actions) {
if(!ctx.name)
ctx.actions |= XS_PARSE_SUBLIKE_ACTION_REFGEN_ANONCODE;
else
ctx.actions &= ~XS_PARSE_SUBLIKE_ACTION_REFGEN_ANONCODE;
}
if(!(ctx.actions & XS_PARSE_SUBLIKE_ACTION_REFGEN_ANONCODE)) {
*op_ptr = newOP(OP_NULL, 0);
SvREFCNT_dec(ctx.name);
}
else {
*op_ptr = newUNOP(OP_REFGEN, 0,
newSVOP(OP_ANONCODE, 0, (SV *)ctx.cv));
}
if(!have_dynamic_actions) {
if(!ctx.name)
ctx.actions |= XS_PARSE_SUBLIKE_ACTION_RET_EXPR;
else
ctx.actions &= ~XS_PARSE_SUBLIKE_ACTION_RET_EXPR;
}
return (ctx.actions & XS_PARSE_SUBLIKE_ACTION_RET_EXPR) ? KEYWORD_PLUGIN_EXPR : KEYWORD_PLUGIN_STMT;
#undef ctx
}
static int IMPL_xs_parse_sublike_v6(pTHX_ const struct XSParseSublikeHooks *hooks, void *hookdata, OP **op_ptr)
{
struct HooksAndData hd = { .hooks = hooks, .data = hookdata };
return parse(aTHX_ &hd, 1, op_ptr);
}
struct Registration;
struct Registration {
struct Registration *next;
const char *kw;
STRLEN kwlen;
union {
const struct XSParseSublikeHooks *hooks;
};
void *hookdata;
STRLEN permit_hintkey_len;
};
#define REGISTRATIONS_LOCK OP_CHECK_MUTEX_LOCK
#define REGISTRATIONS_UNLOCK OP_CHECK_MUTEX_UNLOCK
static struct Registration *registrations;
static void register_sublike(pTHX_ const char *kw, const struct XSParseSublikeHooks *hooks, void *hookdata, int ver)
{
if(ver < 4)
croak("Mismatch in sublike keyword registration ABI version field: module wants %u; we require >= 4\n",
ver);
if(ver > XSPARSESUBLIKE_ABI_VERSION)
croak("Mismatch in sublike keyword registration ABI version field: module wants %u; we support <= %d\n",
ver, XSPARSESUBLIKE_ABI_VERSION);
struct Registration *reg;
Newx(reg, 1, struct Registration);
reg->kw = savepv(kw);
reg->kwlen = strlen(kw);
reg->hooks = hooks;
reg->hookdata = hookdata;
if(reg->hooks->permit_hintkey)
reg->permit_hintkey_len = strlen(reg->hooks->permit_hintkey);
else
reg->permit_hintkey_len = 0;
if(!reg->hooks->permit && !reg->hooks->permit_hintkey)
croak("Third-party sublike keywords require a permit callback or hinthash key");
REGISTRATIONS_LOCK;
{
reg->next = registrations;
registrations = reg;
}
REGISTRATIONS_UNLOCK;
}
static void IMPL_register_xs_parse_sublike_v6(pTHX_ const char *kw, const struct XSParseSublikeHooks *hooks, void *hookdata)
{
int ver = hooks->ver;
if(!ver)
/* Caller forgot to set .ver but for source-level compat we'll presume they
* wanted version 6, the first ABI version that added the .ver field
*/
ver = 6;
register_sublike(aTHX_ kw, hooks, hookdata, ver);
}
static const struct Registration *find_permitted(pTHX_ const char *kw, STRLEN kwlen)
{
const struct Registration *reg;
HV *hints = GvHV(PL_hintgv);
for(reg = registrations; reg; reg = reg->next) {
if(reg->kwlen != kwlen || !strnEQ(reg->kw, kw, kwlen))
continue;
if(reg->hooks->permit_hintkey &&
(!hints || !hv_fetch(hints, reg->hooks->permit_hintkey, reg->permit_hintkey_len, 0)))
continue;
if(reg->hooks->permit &&
!(*reg->hooks->permit)(aTHX_ reg->hookdata))
continue;
return reg;
}
return NULL;
}
static int IMPL_xs_parse_sublike_any_v6(pTHX_ const struct XSParseSublikeHooks *hooksA, void *hookdataA, OP **op_ptr)
{
SV *kwsv = lex_scan_ident();
if(!kwsv || !SvCUR(kwsv))
croak("Expected a keyword to introduce a sub or sub-like construction");
const char *kw = SvPV_nolen(kwsv);
STRLEN kwlen = SvCUR(kwsv);
lex_read_space(0);
const struct Registration *reg = NULL;
/* We permit 'sub' as a NULL set of hooks; anything else should be a registered keyword */
if(kwlen != 3 || !strEQ(kw, "sub")) {
reg = find_permitted(aTHX_ kw, kwlen);
if(!reg)
croak("Expected a keyword to introduce a sub or sub-like construction, found " QUOTED_PVNf,
QUOTED_PVNfARG(kw, kwlen));
}
SvREFCNT_dec(kwsv);
struct HooksAndData hd[] = {
{ .hooks = hooksA, .data = hookdataA },
{ 0 }
};
if(reg) {
hd[1].hooks = reg->hooks;
hd[1].data = reg->hookdata;
}
return parse(aTHX_ hd, 1 + !!reg, op_ptr);
}
static void IMPL_register_xps_signature_attribute(pTHX_ const char *name, const struct XPSSignatureAttributeFuncs *funcs, void *funcdata)
{
if(funcs->ver < 5)
croak("Mismatch in signature param attribute ABI version field: module wants %u; we require >= 5\n",
(int)funcs->ver);
if(funcs->ver > XSPARSESUBLIKE_ABI_VERSION)
croak("Mismatch in signature param attribute ABI version field: module wants %u; we support <= %d\n",
(int)funcs->ver, XSPARSESUBLIKE_ABI_VERSION);
if(!name || !(name[0] >= 'A' && name[0] <= 'Z'))
croak("Signature param attribute names must begin with a capital letter");
if(!funcs->permit_hintkey)
croak("Signature param attributes require a permit hinthash key");
register_subsignature_attribute(name, funcs, funcdata);
}
#ifdef HAVE_FEATURE_CLASS
static bool permit_core_method(pTHX_ void *hookdata)
{
return FEATURE_CLASS_IS_ENABLED;
}
static void pre_subparse_core_method(pTHX_ struct XSParseSublikeContext *ctx, void *hookdata)
{
ctx->actions |= XS_PARSE_SUBLIKE_ACTION_CVf_IsMETHOD;
}
static const struct XSParseSublikeHooks hooks_core_method = {
.ver = XSPARSESUBLIKE_ABI_VERSION,
.permit = &permit_core_method,
.pre_subparse = &pre_subparse_core_method,
.require_parts = XS_PARSE_SUBLIKE_PART_SIGNATURE, /* enable signatures feature */
};
#endif
#ifdef HAVE_LEXICAL_SUB
static void pre_subparse_lexical_sub(pTHX_ struct XSParseSublikeContext *ctx, void *hookdata)
{
ctx->actions &= ~XS_PARSE_SUBLIKE_ACTION_INSTALL_SYMBOL;
ctx->actions |= XS_PARSE_SUBLIKE_ACTION_INSTALL_LEXICAL;
}
static const struct XSParseSublikeHooks hooks_lexical_sub = {
.ver = XSPARSESUBLIKE_ABI_VERSION,
/* no permit needed */
.pre_subparse = &pre_subparse_lexical_sub,
};
#endif
/* Sublike::Extended */
static struct XSParseSublikeHooks hooks_extended = {
.ver = XSPARSESUBLIKE_ABI_VERSION,
.permit_hintkey = "Sublike::Extended/extended",
.flags = XS_PARSE_SUBLIKE_FLAG_PREFIX|
XS_PARSE_SUBLIKE_FLAG_BODY_OPTIONAL|
XS_PARSE_SUBLIKE_FLAG_SIGNATURE_NAMED_PARAMS|
XS_PARSE_SUBLIKE_FLAG_SIGNATURE_PARAM_ATTRIBUTES,
/* No hooks */
};
static struct XSParseSublikeHooks hooks_extended_sub = {
.ver = XSPARSESUBLIKE_ABI_VERSION,
.permit_hintkey = "Sublike::Extended/extended-sub",
.flags = XS_PARSE_SUBLIKE_FLAG_BODY_OPTIONAL|
XS_PARSE_SUBLIKE_FLAG_SIGNATURE_NAMED_PARAMS|
XS_PARSE_SUBLIKE_FLAG_SIGNATURE_PARAM_ATTRIBUTES,
/* No hooks */
};
/* keyword plugin */
static int (*next_keyword_plugin)(pTHX_ char *, STRLEN, OP **);
static int my_keyword_plugin(pTHX_ char *kw, STRLEN kwlen, OP **op_ptr)
{
char *orig_kw = kw;
STRLEN orig_kwlen = kwlen;
#ifdef HAVE_LEXICAL_SUB
char *was_parser_bufptr = PL_parser->bufptr;
bool is_lexical_sub = false;
if(kwlen == 2 && strEQ(kw, "my")) {
lex_read_space(0);
I32 c = lex_peek_unichar(0);
if(!isIDFIRST_uni(c))
goto next_keyword;
kw = PL_parser->bufptr;
lex_read_unichar(0);
while((c = lex_peek_unichar(0)) && isALNUM_uni(c))
lex_read_unichar(0);
kwlen = PL_parser->bufptr - kw;
is_lexical_sub = true;
}
#endif
const struct Registration *reg = find_permitted(aTHX_ kw, kwlen);
if(!reg) {
#ifdef HAVE_LEXICAL_SUB
if(PL_parser->bufptr > was_parser_bufptr)
PL_parser->bufptr = was_parser_bufptr;
next_keyword:
#endif
return (*next_keyword_plugin)(aTHX_ orig_kw, orig_kwlen, op_ptr);
}
lex_read_space(0);
/* We'll abuse the SvPVX storage of an SV to keep an array of HooksAndData
* structures
*/
SV *hdlsv = newSV(4 * sizeof(struct HooksAndData));
SAVEFREESV(hdlsv);
struct HooksAndData *hd = (struct HooksAndData *)SvPVX(hdlsv);
size_t nhooks = 0;
#ifdef HAVE_LEXICAL_SUB
if(is_lexical_sub) {
hd[nhooks].hooks = &hooks_lexical_sub;
hd[nhooks].data = NULL;
nhooks++;
}
#endif
struct XSParseSublikeHooks *hooks = (struct XSParseSublikeHooks *)reg->hooks;
hd[nhooks].hooks = hooks;
hd[nhooks].data = reg->hookdata;
nhooks++;
while(hooks->flags & XS_PARSE_SUBLIKE_FLAG_PREFIX) {
/* After a prefixing keyword, expect another one */
SV *kwsv = lex_scan_ident();
SAVEFREESV(kwsv);
if(!kwsv || !SvCUR(kwsv))
croak("Expected a keyword to introduce a sub or sub-like construction");
kw = SvPV_nolen(kwsv);
kwlen = SvCUR(kwsv);
lex_read_space(0);
reg = find_permitted(aTHX_ kw, kwlen);
/* We permit 'sub' as a NULL set of hooks; anything else should be a registered keyword */
if(!reg && kwlen == 3 && strEQ(kw, "sub"))
break;
if(!reg)
croak("Expected a keyword to introduce a sub or sub-like construction, found " QUOTED_PVNf,
QUOTED_PVNfARG(kw, kwlen));
hooks = (struct XSParseSublikeHooks *)reg->hooks;
if(SvLEN(hdlsv) < (nhooks + 1) * sizeof(struct HooksAndData)) {
SvGROW(hdlsv, SvLEN(hdlsv) * 2);
hd = (struct HooksAndData *)SvPVX(hdlsv);
}
hd[nhooks].hooks = hooks;
hd[nhooks].data = reg->hookdata;
nhooks++;
}
/* See if Sublike::Extended wants to claim this one. If it wanted 'sub' it
* has already claimed that above */
if(kwlen != 3 || !strEQ(kw, "sub")) {
HV *hints = GvHV(PL_hintgv);
SV *keysv = sv_2mortal(newSVpvf("Sublike::Extended/extended-%.*s", (int)kwlen, kw));
if(hints && hv_exists_ent(hints, keysv, 0)) {
if(SvLEN(hdlsv) < (nhooks + 1) * sizeof(struct HooksAndData)) {
SvGROW(hdlsv, SvLEN(hdlsv) * 2);
hd = (struct HooksAndData *)SvPVX(hdlsv);
}
/* This hook has the prefix flag set, but it doesn't matter because
* we've finished processing those already
*/
hd[nhooks].hooks = &hooks_extended;
hd[nhooks].data = NULL;
nhooks++;
}
}
return parse(aTHX_ hd, nhooks, op_ptr);
}
/* API v3 back-compat */
static int IMPL_xs_parse_sublike_v3(pTHX_ const void *hooks, void *hookdata, OP **op_ptr)
{
croak("XS::Parse::Sublike ABI v3 is no longer supported; the caller should be rebuilt to use v4");
}
static void IMPL_register_xs_parse_sublike_v3(pTHX_ const char *kw, const void *hooks, void *hookdata)
{
croak("XS::Parse::Sublike ABI v3 is no longer supported; the caller should be rebuilt to use v4");
}
static int IMPL_xs_parse_sublike_any_v3(pTHX_ const void *hooksA, void *hookdataA, OP **op_ptr)
{
croak("XS::Parse::Sublike ABI v3 is no longer supported; the caller should be rebuilt to use v4");
}
/* API v4 back-compat */
struct XSParseSublikeHooks_v4 {
U16 flags;
U8 require_parts;
U8 skip_parts;
const char *permit_hintkey;
bool (*permit)(pTHX_ void *hookdata);
void (*pre_subparse) (pTHX_ struct XSParseSublikeContext *ctx, void *hookdata);
void (*post_blockstart)(pTHX_ struct XSParseSublikeContext *ctx, void *hookdata);
void (*pre_blockend) (pTHX_ struct XSParseSublikeContext *ctx, void *hookdata);
void (*post_newcv) (pTHX_ struct XSParseSublikeContext *ctx, void *hookdata);
bool (*filter_attr) (pTHX_ struct XSParseSublikeContext *ctx, SV *attr, SV *val, void *hookdata);
};
#define STRUCT_XSPARSESUBLIKEHOOKS_FROM_v4(hooks_v4) \
(struct XSParseSublikeHooks){ \
.ver = 4, \
.flags = hooks_v4->flags, \
.require_parts = hooks_v4->require_parts, \
.skip_parts = hooks_v4->skip_parts, \
.permit_hintkey = hooks_v4->permit_hintkey, \
.permit = hooks_v4->permit, \
.pre_subparse = hooks_v4->pre_subparse, \
.filter_attr = (hooks_v4->flags & XS_PARSE_SUBLIKE_FLAG_FILTERATTRS) \
? hooks_v4->filter_attr \
: NULL, \
.post_blockstart = hooks_v4->post_blockstart, \
.pre_blockend = hooks_v4->pre_blockend, \
.post_newcv = hooks_v4->post_newcv, \
}
static int IMPL_xs_parse_sublike_v4(pTHX_ const struct XSParseSublikeHooks_v4 *hooks_v4, void *hookdata, OP **op_ptr)
{
return IMPL_xs_parse_sublike_v6(aTHX_
&STRUCT_XSPARSESUBLIKEHOOKS_FROM_v4(hooks_v4),
hookdata,
op_ptr);
}
static void IMPL_register_xs_parse_sublike_v4(pTHX_ const char *kw, const struct XSParseSublikeHooks_v4 *hooks_v4, void *hookdata)
{
struct XSParseSublikeHooks *hooks;
Newx(hooks, 1, struct XSParseSublikeHooks);
*hooks = STRUCT_XSPARSESUBLIKEHOOKS_FROM_v4(hooks_v4);
register_sublike(aTHX_ kw, hooks, hookdata, 4);
}
static int IMPL_xs_parse_sublike_any_v4(pTHX_ const struct XSParseSublikeHooks_v4 *hooksA_v4, void *hookdataA, OP **op_ptr)
{
return IMPL_xs_parse_sublike_any_v6(aTHX_
&STRUCT_XSPARSESUBLIKEHOOKS_FROM_v4(hooksA_v4),
hookdataA,
op_ptr);
}
MODULE = XS::Parse::Sublike PACKAGE = XS::Parse::Sublike
BOOT:
/* Legacy lookup mechanism using perl symbol table */
sv_setiv(get_sv("XS::Parse::Sublike::ABIVERSION", GV_ADDMULTI), 4);
sv_setuv(get_sv("XS::Parse::Sublike::PARSE", GV_ADDMULTI), PTR2UV(&IMPL_xs_parse_sublike_v3));
sv_setuv(get_sv("XS::Parse::Sublike::REGISTER", GV_ADDMULTI), PTR2UV(&IMPL_register_xs_parse_sublike_v3));
sv_setuv(get_sv("XS::Parse::Sublike::PARSEANY", GV_ADDMULTI), PTR2UV(&IMPL_xs_parse_sublike_any_v3));
/* Newer mechanism */
sv_setiv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/ABIVERSION_MIN", 1), 4);
sv_setiv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/ABIVERSION_MAX", 1), XSPARSESUBLIKE_ABI_VERSION);
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/parse()@4", 1), PTR2UV(&IMPL_xs_parse_sublike_v4));
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/parse()@6", 1), PTR2UV(&IMPL_xs_parse_sublike_v6));
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/register()@6", 1), PTR2UV(&IMPL_register_xs_parse_sublike_v6));
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/register()@4", 1), PTR2UV(&IMPL_register_xs_parse_sublike_v4));
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/parseany()@4", 1), PTR2UV(&IMPL_xs_parse_sublike_any_v4));
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/parseany()@6", 1), PTR2UV(&IMPL_xs_parse_sublike_any_v6));
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/signature_add_param()@7", 1), PTR2UV(&XPS_signature_add_param));
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/signature_query()@8", 1), PTR2UV(&XPS_signature_query));
sv_setuv(*hv_fetchs(PL_modglobal, "XS::Parse::Sublike/register_sigattr()@5", 1), PTR2UV(&IMPL_register_xps_signature_attribute));
#ifdef HAVE_FEATURE_CLASS
register_sublike(aTHX_ "method", &hooks_core_method, NULL, 4);
#endif
wrap_keyword_plugin(&my_keyword_plugin, &next_keyword_plugin);
register_sublike(aTHX_ "extended", &hooks_extended, NULL, 4);
register_sublike(aTHX_ "sub", &hooks_extended_sub, NULL, 4);
boot_parse_subsignature_ex();
|