START_EXTERN_C
EXTERN_C const regexp_engine engine_plugin;
-EXTERN_C REGEXP * Plugin_comp(pTHX_ const SV const *, const U32);
+#if PERL_VERSION <= 10
+EXTERN_C REGEXP * Plugin_comp(pTHX_ const SV * const, const U32);
+#else
+EXTERN_C REGEXP * Plugin_comp(pTHX_ SV * const, U32);
+#endif
EXTERN_C I32 Plugin_exec(pTHX_ REGEXP * const, char *, char *,
char *, I32, SV *, void *, U32);
EXTERN_C char * Plugin_intuit(pTHX_ REGEXP * const, SV *, char *,
};
typedef struct replug {
- /* Pointer back to the containing REGEXP struct so that accessors
+ /* Pointer back to the containing regexp struct so that accessors
* can modify nparens, gofs etc. */
- REGEXP * rx;
+ struct regexp * rx;
/* A copy of the pattern given to comp, for ->pattern */
SV * pattern;
SV * cb_num_capture_buff_STORE;
SV * cb_num_capture_buff_LENGTH;
} *re__engine__Plugin;
+
+#if PERL_VERSION >= 11
+# define rxREGEXP(RX) (SvANY(RX))
+# define newREGEXP(RX) ((RX) = ((REGEXP*) newSV_type(SVt_REGEXP)))
+#else
+# define rxREGEXP(RX) (RX)
+# define newREGEXP(RX) (Newxz((RX), 1, struct regexp))
+#endif
}
REGEXP *
+#if PERL_VERSION <= 10
Plugin_comp(pTHX_ const SV * const pattern, const U32 flags)
+#else
+Plugin_comp(pTHX_ SV * const pattern, U32 flags)
+#endif
{
dSP;
- REGEXP * rx;
+ struct regexp * rx;
+ REGEXP *RX;
re__engine__Plugin re;
I32 buffers;
STRLEN plen;
char* exp = SvPV((SV*)pattern, plen);
- /* The REGEXP structure to return to perl */
- Newxz(rx, 1, REGEXP);
-
/* Our blessed object */
SV *obj = newSV(0);
SvREFCNT_inc(obj);
Newxz(re, 1, struct replug);
sv_setref_pv(obj, "re::engine::Plugin", (void*)re);
+ newREGEXP(RX);
+ rx = rxREGEXP(RX);
+
re->rx = rx; /* Make the rx accessible from self->rx */
- rx->refcnt = 1; /* Refcount so we won' be destroyed */
rx->intflags = flags; /* Flags for internal use */
rx->extflags = flags; /* Flags for perl to use */
rx->engine = RE_ENGINE_PLUGIN; /* Compile to use this engine */
+#if PERL_VERSION <= 10
+ rx->refcnt = 1; /* Refcount so we won't be destroyed */
+
/* Precompiled pattern for pp_regcomp to use */
rx->prelen = plen;
rx->precomp = savepvn(exp, rx->prelen);
rx->wraplen = rx->prelen;
Newx(rx->wrapped, rx->wraplen, char);
Copy(rx->precomp, rx->wrapped, rx->wraplen, char);
+#endif
/* Store our private object */
rx->pprivate = obj;
Newxz(rx->offs, buffers + 1, regexp_paren_pair);
- return rx;
+ return RX;
}
I32
-Plugin_exec(pTHX_ REGEXP * const rx, char *stringarg, char *strend,
+Plugin_exec(pTHX_ REGEXP * const RX, char *stringarg, char *strend,
char *strbeg, I32 minend, SV *sv, void *data, U32 flags)
{
dSP;
I32 matched;
SV * callback = get_H_callback("exec");
+ struct regexp *rx = rxREGEXP(RX);
GET_SELF_FROM_PPRIVATE(rx->pprivate);
if (callback) {
}
char *
-Plugin_intuit(pTHX_ REGEXP * const rx, SV *sv, char *strpos,
+Plugin_intuit(pTHX_ REGEXP * const RX, SV *sv, char *strpos,
char *strend, U32 flags, re_scream_pos_data *data)
{
- PERL_UNUSED_ARG(rx);
+ PERL_UNUSED_ARG(RX);
PERL_UNUSED_ARG(sv);
PERL_UNUSED_ARG(strpos);
PERL_UNUSED_ARG(strend);
}
SV *
-Plugin_checkstr(pTHX_ REGEXP * const rx)
+Plugin_checkstr(pTHX_ REGEXP * const RX)
{
- PERL_UNUSED_ARG(rx);
+ PERL_UNUSED_ARG(RX);
return NULL;
}
void
-Plugin_free(pTHX_ REGEXP * const rx)
+Plugin_free(pTHX_ REGEXP * const RX)
{
- PERL_UNUSED_ARG(rx);
+ PERL_UNUSED_ARG(RX);
/*
dSP;
SV * callback;
}
void *
-Plugin_dupe(pTHX_ REGEXP * const rx, CLONE_PARAMS *param)
+Plugin_dupe(pTHX_ REGEXP * const RX, CLONE_PARAMS *param)
{
+ struct regexp *rx = rxREGEXP(RX);
Perl_croak(aTHX_ "dupe not supported yet");
return rx->pprivate;
}
void
-Plugin_numbered_buff_FETCH(pTHX_ REGEXP * const rx, const I32 paren,
+Plugin_numbered_buff_FETCH(pTHX_ REGEXP * const RX, const I32 paren,
SV * const sv)
{
dSP;
I32 items;
SV * callback;
+ struct regexp *rx = rxREGEXP(RX);
GET_SELF_FROM_PPRIVATE(rx->pprivate);
callback = self->cb_num_capture_buff_FETCH;
}
void
-Plugin_numbered_buff_STORE(pTHX_ REGEXP * const rx, const I32 paren,
+Plugin_numbered_buff_STORE(pTHX_ REGEXP * const RX, const I32 paren,
SV const * const value)
{
dSP;
SV * callback;
+ struct regexp *rx = rxREGEXP(RX);
GET_SELF_FROM_PPRIVATE(rx->pprivate);
callback = self->cb_num_capture_buff_STORE;
}
I32
-Plugin_numbered_buff_LENGTH(pTHX_ REGEXP * const rx, const SV * const sv,
+Plugin_numbered_buff_LENGTH(pTHX_ REGEXP * const RX, const SV * const sv,
const I32 paren)
{
dSP;
SV * callback;
+ struct regexp *rx = rxREGEXP(RX);
GET_SELF_FROM_PPRIVATE(rx->pprivate);
callback = self->cb_num_capture_buff_LENGTH;
SV*
-Plugin_named_buff (pTHX_ REGEXP * const rx, SV * const key, SV * const value,
+Plugin_named_buff (pTHX_ REGEXP * const RX, SV * const key, SV * const value,
const U32 flags)
{
return NULL;
}
SV*
-Plugin_named_buff_iter (pTHX_ REGEXP * const rx, const SV * const lastkey,
+Plugin_named_buff_iter (pTHX_ REGEXP * const RX, const SV * const lastkey,
const U32 flags)
{
return NULL;
}
SV*
-Plugin_package(pTHX_ REGEXP * const rx)
+Plugin_package(pTHX_ REGEXP * const RX)
{
- PERL_UNUSED_ARG(rx);
+ PERL_UNUSED_ARG(RX);
return newSVpvs("re::engine::Plugin");
}