X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=av.c;h=5ac68587cc2ca2c0a5a405ec193e8227961e772a;hb=5d5aaa5e70a8a8ab4803cdb506e2096b6e190e80;hp=67f7880b8f389b62007897141411328f9ca6b70f;hpb=49beac4814c9f4f107819fdd49700d8c7d84d40b;p=p5sagit%2Fp5-mst-13.2.git diff --git a/av.c b/av.c index 67f7880..5ac6858 100644 --- a/av.c +++ b/av.c @@ -1,6 +1,6 @@ /* av.c * - * Copyright (c) 1991-1994, Larry Wall + * Copyright (c) 1991-1997, Larry Wall * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -15,32 +15,35 @@ #include "EXTERN.h" #include "perl.h" -static void av_reify _((AV* av)); - -static void -av_reify(av) -AV* av; +void +av_reify(AV *av) { I32 key; SV* sv; - + + if (AvREAL(av)) + return; key = AvMAX(av) + 1; while (key > AvFILL(av) + 1) AvARRAY(av)[--key] = &sv_undef; while (key) { sv = AvARRAY(av)[--key]; assert(sv); - if (sv != &sv_undef) + if (sv != &sv_undef) { + dTHR; (void)SvREFCNT_inc(sv); + } } + key = AvARRAY(av) - AvALLOC(av); + while (key) + AvALLOC(av)[--key] = &sv_undef; AvREAL_on(av); } void -av_extend(av,key) -AV *av; -I32 key; +av_extend(AV *av, I32 key) { + dTHR; /* only necessary if we have to extend stack */ if (key > AvMAX(av)) { SV** ary; I32 tmp; @@ -84,10 +87,8 @@ I32 key; newmax = tmp - 1; New(2,ary, newmax+1, SV*); Copy(AvALLOC(av), ary, AvMAX(av)+1, SV*); - if (AvMAX(av) > 64 && !nice_chunk) { - nice_chunk = (char*)AvALLOC(av); - nice_chunk_size = (AvMAX(av) + 1) * sizeof(SV*); - } + if (AvMAX(av) > 64) + offer_nice_chunk(AvALLOC(av), (AvMAX(av)+1) * sizeof(SV*)); else Safefree(AvALLOC(av)); AvALLOC(av) = ary; @@ -119,10 +120,7 @@ I32 key; } SV** -av_fetch(av,key,lval) -register AV *av; -I32 key; -I32 lval; +av_fetch(register AV *av, I32 key, I32 lval) { SV *sv; @@ -131,6 +129,7 @@ I32 lval; if (SvRMAGICAL(av)) { if (mg_find((SV*)av,'P')) { + dTHR; sv = sv_newmortal(); mg_copy((SV*)av, sv, 0, key); Sv = sv; @@ -170,10 +169,7 @@ I32 lval; } SV** -av_store(av,key,val) -register AV *av; -I32 key; -SV *val; +av_store(register AV *av, I32 key, SV *val) { SV** ary; @@ -197,13 +193,14 @@ SV *val; } if (SvREADONLY(av) && key >= AvFILL(av)) croak(no_modify); - if (key > AvMAX(av)) - av_extend(av,key); if (!AvREAL(av) && AvREIFY(av)) av_reify(av); + if (key > AvMAX(av)) + av_extend(av,key); ary = AvARRAY(av); if (AvFILL(av) < key) { if (!AvREAL(av)) { + dTHR; if (av == curstack && key > stack_sp - stack_base) stack_sp = stack_base + key; /* XPUSH in disguise */ do @@ -226,7 +223,7 @@ SV *val; } AV * -newAV() +newAV(void) { register AV *av; @@ -240,9 +237,7 @@ newAV() } AV * -av_make(size,strp) -register I32 size; -register SV **strp; +av_make(register I32 size, register SV **strp) { register AV *av; register I32 i; @@ -250,25 +245,25 @@ register SV **strp; av = (AV*)NEWSV(8,0); sv_upgrade((SV *) av,SVt_PVAV); - New(4,ary,size+1,SV*); - AvALLOC(av) = ary; AvFLAGS(av) = AVf_REAL; - SvPVX(av) = (char*)ary; - AvFILL(av) = size - 1; - AvMAX(av) = size - 1; - for (i = 0; i < size; i++) { - assert (*strp); - ary[i] = NEWSV(7,0); - sv_setsv(ary[i], *strp); - strp++; + if (size) { /* `defined' was returning undef for size==0 anyway. */ + New(4,ary,size,SV*); + AvALLOC(av) = ary; + SvPVX(av) = (char*)ary; + AvFILL(av) = size - 1; + AvMAX(av) = size - 1; + for (i = 0; i < size; i++) { + assert (*strp); + ary[i] = NEWSV(7,0); + sv_setsv(ary[i], *strp); + strp++; + } } return av; } AV * -av_fake(size,strp) -register I32 size; -register SV **strp; +av_fake(register I32 size, register SV **strp) { register AV *av; register SV** ary; @@ -291,8 +286,7 @@ register SV **strp; } void -av_clear(av) -register AV *av; +av_clear(register AV *av) { register I32 key; SV** ary; @@ -319,11 +313,13 @@ register AV *av; SvPVX(av) = (char*)AvALLOC(av); } AvFILL(av) = -1; + + if (SvRMAGICAL(av)) + mg_clear((SV*)av); } void -av_undef(av) -register AV *av; +av_undef(register AV *av) { register I32 key; @@ -346,9 +342,7 @@ register AV *av; } void -av_push(av,val) -register AV *av; -SV *val; +av_push(register AV *av, SV *val) { if (!av) return; @@ -356,8 +350,7 @@ SV *val; } SV * -av_pop(av) -register AV *av; +av_pop(register AV *av) { SV *retval; @@ -373,9 +366,7 @@ register AV *av; } void -av_unshift(av,num) -register AV *av; -register I32 num; +av_unshift(register AV *av, register I32 num) { register I32 i; register SV **sstr,**dstr; @@ -416,8 +407,7 @@ register I32 num; } SV * -av_shift(av) -register AV *av; +av_shift(register AV *av) { SV *retval; @@ -437,16 +427,13 @@ register AV *av; } I32 -av_len(av) -register AV *av; +av_len(register AV *av) { return AvFILL(av); } void -av_fill(av, fill) -register AV *av; -I32 fill; +av_fill(register AV *av, I32 fill) { if (!av) croak("panic: null array"); @@ -474,3 +461,225 @@ I32 fill; else (void)av_store(av,fill,&sv_undef); } + + +HV* +avhv_keys(AV *av) +{ + SV **keysp; + HV *keys = Nullhv; + + keysp = av_fetch(av, 0, FALSE); + if (keysp) { + if (SvGMAGICAL(*keysp)) + mg_get(*keysp); + if (SvROK(*keysp)) { + SV *hash = SvRV(*keysp); + if (SvTYPE(hash) == SVt_PVHV) + keys = (HV*)hash; + } + } + if (!keys) + croak("Can't coerce array into hash"); + return keys; +} + +SV** +avhv_fetch(AV *av, char *key, U32 klen, I32 lval) +{ + SV **indsvp; + HV *keys = avhv_keys(av); + I32 ind; + + indsvp = hv_fetch(keys, key, klen, FALSE); + if (indsvp) { + ind = SvIV(*indsvp); + if (ind < 1) + croak("Bad index while coercing array into hash"); + } else { + if (!lval) + return 0; + + ind = AvFILL(av) + 1; + hv_store(keys, key, klen, newSViv(ind), 0); + } + return av_fetch(av, ind, lval); +} + +SV** +avhv_fetch_ent(AV *av, SV *keysv, I32 lval, U32 hash) +{ + SV **indsvp; + HV *keys = avhv_keys(av); + HE *he; + I32 ind; + + he = hv_fetch_ent(keys, keysv, FALSE, hash); + if (he) { + ind = SvIV(HeVAL(he)); + if (ind < 1) + croak("Bad index while coercing array into hash"); + } else { + if (!lval) + return 0; + + ind = AvFILL(av) + 1; + hv_store_ent(keys, keysv, newSViv(ind), 0); + } + return av_fetch(av, ind, lval); +} + +SV** +avhv_store(AV *av, char *key, U32 klen, SV *val, U32 hash) +{ + SV **indsvp; + HV *keys = avhv_keys(av); + I32 ind; + + indsvp = hv_fetch(keys, key, klen, FALSE); + if (indsvp) { + ind = SvIV(*indsvp); + if (ind < 1) + croak("Bad index while coercing array into hash"); + } else { + ind = AvFILL(av) + 1; + hv_store(keys, key, klen, newSViv(ind), hash); + } + return av_store(av, ind, val); +} + +SV** +avhv_store_ent(AV *av, SV *keysv, SV *val, U32 hash) +{ + HV *keys = avhv_keys(av); + HE *he; + I32 ind; + + he = hv_fetch_ent(keys, keysv, FALSE, hash); + if (he) { + ind = SvIV(HeVAL(he)); + if (ind < 1) + croak("Bad index while coercing array into hash"); + } else { + ind = AvFILL(av) + 1; + hv_store_ent(keys, keysv, newSViv(ind), hash); + } + return av_store(av, ind, val); +} + +bool +avhv_exists_ent(AV *av, SV *keysv, U32 hash) +{ + HV *keys = avhv_keys(av); + return hv_exists_ent(keys, keysv, hash); +} + +bool +avhv_exists(AV *av, char *key, U32 klen) +{ + HV *keys = avhv_keys(av); + return hv_exists(keys, key, klen); +} + +/* avhv_delete leaks. Caller can re-index and compress if so desired. */ +SV * +avhv_delete(AV *av, char *key, U32 klen, I32 flags) +{ + HV *keys = avhv_keys(av); + SV *sv; + SV **svp; + I32 ind; + + sv = hv_delete(keys, key, klen, 0); + if (!sv) + return Nullsv; + ind = SvIV(sv); + if (ind < 1) + croak("Bad index while coercing array into hash"); + svp = av_fetch(av, ind, FALSE); + if (!svp) + return Nullsv; + if (flags & G_DISCARD) { + sv = Nullsv; + SvREFCNT_dec(*svp); + } else { + sv = sv_2mortal(*svp); + } + *svp = &sv_undef; + return sv; +} + +/* avhv_delete_ent leaks. Caller can re-index and compress if so desired. */ +SV * +avhv_delete_ent(AV *av, SV *keysv, I32 flags, U32 hash) +{ + HV *keys = avhv_keys(av); + SV *sv; + SV **svp; + I32 ind; + + sv = hv_delete_ent(keys, keysv, 0, hash); + if (!sv) + return Nullsv; + ind = SvIV(sv); + if (ind < 1) + croak("Bad index while coercing array into hash"); + svp = av_fetch(av, ind, FALSE); + if (!svp) + return Nullsv; + if (flags & G_DISCARD) { + sv = Nullsv; + SvREFCNT_dec(*svp); + } else { + sv = sv_2mortal(*svp); + } + *svp = &sv_undef; + return sv; +} + +I32 +avhv_iterinit(AV *av) +{ + HV *keys = avhv_keys(av); + return hv_iterinit(keys); +} + +HE * +avhv_iternext(AV *av) +{ + HV *keys = avhv_keys(av); + return hv_iternext(keys); +} + +SV * +avhv_iterval(AV *av, register HE *entry) +{ + HV *keys = avhv_keys(av); + SV *sv; + I32 ind; + + sv = hv_iterval(keys, entry); + ind = SvIV(sv); + if (ind < 1) + croak("Bad index while coercing array into hash"); + return *av_fetch(av, ind, TRUE); +} + +SV * +avhv_iternextsv(AV *av, char **key, I32 *retlen) +{ + HV *keys = avhv_keys(av); + HE *he; + SV *sv; + I32 ind; + + he = hv_iternext(keys); + if (!he) + return Nullsv; + *key = hv_iterkey(he, retlen); + sv = hv_iterval(keys, he); + ind = SvIV(sv); + if (ind < 1) + croak("Bad index while coercing array into hash"); + return *av_fetch(av, ind, TRUE); +}