CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 30 Jul 2025 19:16:40 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20210117102406
location: https://web.archive.org/web/20210117102406/https://perl5.git.perl.org/perl5.git/blame/HEAD:/mg.h
server-timing: captures_list;dur=0.735517, exclusion.robots;dur=0.033476, exclusion.robots.policy;dur=0.019999, esindex;dur=0.013190, cdx.remote;dur=86.052742, LoadShardBlock;dur=265.638551, PetaboxLoader3.datanode;dur=124.281541
x-app-server: wwwb-app202
x-ts: 302
x-tr: 382
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: SERVER=wwwb-app202; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 30 Jul 2025 19:16:42 GMT
content-type: application/xhtml+xml; charset=utf-8
x-archive-orig-date: Sun, 17 Jan 2021 10:24:04 GMT
x-archive-orig-server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips
x-archive-orig-keep-alive: timeout=5, max=100
x-archive-orig-connection: Keep-Alive
x-archive-orig-x-crawler-transfer-encoding: chunked
x-archive-orig-content-length: 29811
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 17 Jan 2021 10:24:06 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 17 Jan 2021 10:24:06 GMT", ; rel="memento"; datetime="Sun, 17 Jan 2021 10:24:06 GMT", ; rel="last memento"; datetime="Sun, 17 Jan 2021 10:24:06 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: CC-MAIN-2021-04-1610703511903.11-0033/CC-MAIN-20210117081748-20210117111748-00676.warc.gz
server-timing: captures_list;dur=392.288988, exclusion.robots;dur=0.044219, exclusion.robots.policy;dur=0.032388, esindex;dur=0.015230, cdx.remote;dur=22.345022, LoadShardBlock;dur=108.622385, PetaboxLoader3.datanode;dur=113.753366, load_resource;dur=592.782144, PetaboxLoader3.resolve;dur=538.127422
x-app-server: wwwb-app202
x-ts: 200
x-tr: 1193
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
perl5.git.perl.org Git - perl5.git/blame - mg.h
This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Commit | Line | Data |
---|---|---|
a0d0e21e | 1 | /* mg.h |
79072805 | 2 | * |
4bb101f2 | 3 | * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999, |
1129b882 | 4 | * 2000, 2002, 2005, 2006, 2007, 2008 by Larry Wall and others |
79072805 LW |
5 | * |
6 | * You may distribute under the terms of either the GNU General Public | |
7 | * License or the Artistic License, as specified in the README file. | |
8 | * | |
79072805 LW |
9 | */ |
10 | ||
11 | struct mgvtbl { | |
16c91539 BM |
12 | int (*svt_get) (pTHX_ SV *sv, MAGIC* mg); |
13 | int (*svt_set) (pTHX_ SV *sv, MAGIC* mg); | |
14 | U32 (*svt_len) (pTHX_ SV *sv, MAGIC* mg); | |
6a84ef7c | 15 | int (*svt_clear) (pTHX_ SV *sv, MAGIC* mg); |
16c91539 BM |
16 | int (*svt_free) (pTHX_ SV *sv, MAGIC* mg); |
17 | int (*svt_copy) (pTHX_ SV *sv, MAGIC* mg, | |
3468c7ea | 18 | SV *nsv, const char *name, I32 namlen); |
16c91539 BM |
19 | int (*svt_dup) (pTHX_ MAGIC *mg, CLONE_PARAMS *param); |
20 | int (*svt_local)(pTHX_ SV *nsv, MAGIC *mg); | |
79072805 LW |
21 | }; |
22 | ||
23 | struct magic { | |
24 | MAGIC* mg_moremagic; | |
92e67595 | 25 | MGVTBL* mg_virtual; /* pointer to magic functions */ |
79072805 LW |
26 | U16 mg_private; |
27 | char mg_type; | |
28 | U8 mg_flags; | |
6174b39a | 29 | SSize_t mg_len; |
79072805 LW |
30 | SV* mg_obj; |
31 | char* mg_ptr; | |
79072805 | 32 | }; |
8990e307 | 33 | |
cb50f42d YST |
34 | #define MGf_TAINTEDDIR 1 /* PERL_MAGIC_envelem only */ |
35 | #define MGf_MINMATCH 1 /* PERL_MAGIC_regex_global only */ | |
aa38f4b1 | 36 | #define MGf_REQUIRE_GV 1 /* PERL_MAGIC_checkcall only */ |
85e6fe83 | 37 | #define MGf_REFCOUNTED 2 |
fd69380d | 38 | #define MGf_GSKIP 4 /* skip further GETs until after next SET */ |
a5063e7c DM |
39 | #define MGf_COPY 8 /* has an svt_copy MGVTBL entry */ |
40 | #define MGf_DUP 0x10 /* has an svt_dup MGVTBL entry */ | |
41 | #define MGf_LOCAL 0x20 /* has an svt_local MGVTBL entry */ | |
25fdce4a | 42 | #define MGf_BYTES 0x40 /* PERL_MAGIC_regex_global only */ |
d39c26a6 | 43 | #define MGf_PERSIST 0x80 /* PERL_MAGIC_lvref only */ |
748a9306 | 44 | |
1e422769 PP |
45 | #define MgTAINTEDDIR(mg) (mg->mg_flags & MGf_TAINTEDDIR) |
46 | #define MgTAINTEDDIR_on(mg) (mg->mg_flags |= MGf_TAINTEDDIR) | |
47 | #define MgTAINTEDDIR_off(mg) (mg->mg_flags &= ~MGf_TAINTEDDIR) | |
99069129 | 48 | |
32da55ab | 49 | #define MgPV(mg,lp) ((((int)(lp = (mg)->mg_len)) == HEf_SVKEY) ? \ |
b1bc3f34 | 50 | SvPV(MUTABLE_SV((mg)->mg_ptr),lp) : \ |
5aabfad6 | 51 | (mg)->mg_ptr) |
01b8bcb7 | 52 | #define MgPV_const(mg,lp) ((((int)(lp = (mg)->mg_len)) == HEf_SVKEY) ? \ |
b1bc3f34 | 53 | SvPV_const(MUTABLE_SV((mg)->mg_ptr),lp) : \ |
01b8bcb7 | 54 | (const char*)(mg)->mg_ptr) |
b1bc3f34 NC |
55 | #define MgPV_nolen_const(mg) (((((int)(mg)->mg_len)) == HEf_SVKEY) ? \ |
56 | SvPV_nolen_const(MUTABLE_SV((mg)->mg_ptr)) : \ | |
fa28a6c6 | 57 | (const char*)(mg)->mg_ptr) |
33c27489 | 58 | |
4608196e | 59 | #define SvTIED_mg(sv,how) (SvRMAGICAL(sv) ? mg_find((sv),(how)) : NULL) |
33c27489 GS |
60 | #define SvTIED_obj(sv,mg) \ |
61 | ((mg)->mg_obj ? (mg)->mg_obj : sv_2mortal(newRV(sv))) | |
e9a8c099 | 62 | |
25fdce4a FC |
63 | #if defined(PERL_CORE) || defined(PERL_EXT) |
64 | # define MgBYTEPOS(mg,sv,pv,len) S_MgBYTEPOS(aTHX_ mg,sv,pv,len) | |
65 | /* assumes get-magic and stringification have already occurred */ | |
66 | # define MgBYTEPOS_set(mg,sv,pv,off) ( \ | |
67 | assert_((mg)->mg_type == PERL_MAGIC_regex_global) \ | |
ed382232 | 68 | SvPOK(sv) && (!SvGMAGICAL(sv) || sv_only_taint_gmagic(sv)) \ |
25fdce4a FC |
69 | ? (mg)->mg_len = (off), (mg)->mg_flags |= MGf_BYTES \ |
70 | : ((mg)->mg_len = DO_UTF8(sv) \ | |
4df947ee FC |
71 | ? (SSize_t)utf8_length((U8 *)(pv), (U8 *)(pv)+(off)) \ |
72 | : (SSize_t)(off), \ | |
25fdce4a FC |
73 | (mg)->mg_flags &= ~MGf_BYTES)) |
74 | #endif | |
75 | ||
84c7b88c BF |
76 | #define whichsig(pv) whichsig_pv(pv) |
77 | ||
e9a8c099 | 78 | /* |
14d04a33 | 79 | * ex: set ts=8 sts=4 sw=4 et: |
e9a8c099 | 80 | */ |