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
|
#include "ppport.h"
## we want hv_fetch but with the U32 hash argument of hv_fetch_ent, so do it ourselves...
#ifdef hv_common_key_len
#define CXSA_HASH_FETCH(hv, key, len, hash) hv_common_key_len((hv), (key), (len), HV_FETCH_JUST_SV, NULL, (hash))
#else
#define CXSA_HASH_FETCH(hv, key, len, hash) hv_fetch(hv, key, len, 0)
#endif
#ifndef croak_xs_usage
#define croak_xs_usage(cv,msg) croak(aTHX_ "Usage: %s(%s)", GvNAME(CvGV(cv)), msg)
#endif
MODULE = Class::XSAccessor PACKAGE = Class::XSAccessor
PROTOTYPES: DISABLE
void
array_setter_init(self, ...)
SV* self;
INIT:
/* NOTE: This method is for Class::Accessor compatibility only. It's not
* part of the normal API! */
SV* newvalue = NULL; /* squelch may-be-used-uninitialized warning that doesn't apply */
SV ** hashAssignRes;
/* Get the const hash key struct from the global storage */
const autoxs_hashkey * readfrom = CXAH_GET_HASHKEY;
PPCODE:
CXA_CHECK_HASH(self);
CXAH_OPTIMIZE_ENTERSUB(array_setter);
if (items == 2) {
newvalue = newSVsv(ST(1));
}
else if (items > 2) {
I32 i;
AV* tmp = newAV();
av_extend(tmp, items-1);
for (i = 1; i < items; ++i) {
newvalue = newSVsv(ST(i));
if (!av_store(tmp, i-1, newvalue)) {
SvREFCNT_dec(newvalue);
croak("Failure to store value in array");
}
}
newvalue = newRV_noinc((SV*) tmp);
}
else {
croak_xs_usage(cv, "self, newvalue(s)");
}
if ((hashAssignRes = hv_store((HV*)SvRV(self), readfrom->key, readfrom->len, newvalue, readfrom->hash))) {
PUSHs(*hashAssignRes);
}
else {
SvREFCNT_dec(newvalue);
croak("Failed to write new value to hash.");
}
void
array_setter(self, ...)
SV* self;
INIT:
/* NOTE: This method is for Class::Accessor compatibility only. It's not
* part of the normal API! */
SV* newvalue = NULL; /* squelch may-be-used-uninitialized warning that doesn't apply */
SV ** hashAssignRes;
/* Get the const hash key struct from the global storage */
const autoxs_hashkey * readfrom = CXAH_GET_HASHKEY;
PPCODE:
CXA_CHECK_HASH(self);
if (items == 2) {
newvalue = newSVsv(ST(1));
}
else if (items > 2) {
I32 i;
AV* tmp = newAV();
av_extend(tmp, items-1);
for (i = 1; i < items; ++i) {
newvalue = newSVsv(ST(i));
if (!av_store(tmp, i-1, newvalue)) {
SvREFCNT_dec(newvalue);
croak("Failure to store value in array");
}
}
newvalue = newRV_noinc((SV*) tmp);
}
else {
croak_xs_usage(cv, "self, newvalue(s)");
}
if ((hashAssignRes = hv_store((HV*)SvRV(self), readfrom->key, readfrom->len, newvalue, readfrom->hash))) {
PUSHs(*hashAssignRes);
}
else {
SvREFCNT_dec(newvalue);
croak("Failed to write new value to hash.");
}
void
array_accessor_init(self, ...)
SV* self;
INIT:
/* NOTE: This method is for Class::Accessor compatibility only. It's not
* part of the normal API! */
SV ** hashAssignRes;
/* Get the const hash key struct from the global storage */
const autoxs_hashkey * readfrom = CXAH_GET_HASHKEY;
PPCODE:
CXA_CHECK_HASH(self);
CXAH_OPTIMIZE_ENTERSUB(array_accessor);
if (items == 1) {
SV** svp;
if ((svp = CXSA_HASH_FETCH((HV *)SvRV(self), readfrom->key, readfrom->len, readfrom->hash)))
PUSHs(*svp);
else
XSRETURN_UNDEF;
}
else { /* writing branch */
SV* newvalue;
if (items == 2) {
newvalue = newSVsv(ST(1));
}
else { /* items > 2 */
I32 i;
AV* tmp = newAV();
av_extend(tmp, items-1);
for (i = 1; i < items; ++i) {
newvalue = newSVsv(ST(i));
if (!av_store(tmp, i-1, newvalue)) {
SvREFCNT_dec(newvalue);
croak("Failure to store value in array");
}
}
newvalue = newRV_noinc((SV*) tmp);
}
if ((hashAssignRes = hv_store((HV*)SvRV(self), readfrom->key, readfrom->len, newvalue, readfrom->hash))) {
PUSHs(*hashAssignRes);
}
else {
SvREFCNT_dec(newvalue);
croak("Failed to write new value to hash.");
}
} /* end writing branch */
void
array_accessor(self, ...)
SV* self;
INIT:
/* NOTE: This method is for Class::Accessor compatibility only. It's not
* part of the normal API! */
SV ** hashAssignRes;
/* Get the const hash key struct from the global storage */
const autoxs_hashkey * readfrom = CXAH_GET_HASHKEY;
PPCODE:
CXA_CHECK_HASH(self);
if (items == 1) {
SV** svp;
if ((svp = CXSA_HASH_FETCH((HV *)SvRV(self), readfrom->key, readfrom->len, readfrom->hash)))
PUSHs(*svp);
else
XSRETURN_UNDEF;
}
else { /* writing branch */
SV* newvalue;
if (items == 2) {
newvalue = newSVsv(ST(1));
}
else { /* items > 2 */
I32 i;
AV* tmp = newAV();
av_extend(tmp, items-1);
for (i = 1; i < items; ++i) {
newvalue = newSVsv(ST(i));
if (!av_store(tmp, i-1, newvalue)) {
SvREFCNT_dec(newvalue);
croak("Failure to store value in array");
}
}
newvalue = newRV_noinc((SV*) tmp);
}
if ((hashAssignRes = hv_store((HV*)SvRV(self), readfrom->key, readfrom->len, newvalue, readfrom->hash))) {
PUSHs(*hashAssignRes);
}
else {
SvREFCNT_dec(newvalue);
croak("Failed to write new value to hash.");
}
} /* end writing branch */
void
_newxs_compat_setter(name, key)
char* name;
char* key;
PPCODE:
/* WARNING: If this is called in your code, you're doing it WRONG! */
INSTALL_NEW_CV_HASH_OBJ(name, CXAH(array_setter_init), key);
void
_newxs_compat_accessor(name, key)
char* name;
char* key;
PPCODE:
/* WARNING: If this is called in your code, you're doing it WRONG! */
INSTALL_NEW_CV_HASH_OBJ(name, CXAH(array_accessor_init), key);
|