3 * Copyright (c) 2001, Larry Wall
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
11 * Contributed by Arthur Bergman arthur@contiller.se
13 * "Hand any two wizards a piece of rope and they would instinctively pull in
14 * opposite directions."
20 #define PERL_IN_SHAREDSV_C
30 Shared SV is a structure for keeping the backend storage
36 =for apidoc sharedsv_init
38 Saves a space for keeping SVs wider than an interpreter,
39 currently only stores a pointer to the first interpreter.
45 Perl_sharedsv_init(pTHX)
47 PerlInterpreter* old_context = PERL_GET_CONTEXT;
48 PL_sharedsv_space = perl_alloc();
49 perl_construct(PL_sharedsv_space);
50 PERL_SET_CONTEXT(old_context);
51 MUTEX_INIT(&PL_sharedsv_space_mutex);
55 =for apidoc sharedsv_new
57 Allocates a new shared sv struct, you must yourself create the SV/AV/HV.
62 Perl_sharedsv_new(pTHX)
65 New(2555,ssv,1,shared_sv);
66 MUTEX_INIT(&ssv->mutex);
67 COND_INIT(&ssv->cond);
68 COND_INIT(&ssv->user_cond);
77 =for apidoc sharedsv_find
79 Tries to find if a given SV has a shared backend, either by
80 looking at magic, or by checking if it is tied again threads::shared.
86 Perl_sharedsv_find(pTHX_ SV* sv)
88 /* does all it can to find a shared_sv struct, returns NULL otherwise */
89 shared_sv* ssv = NULL;
94 MAGIC* mg = mg_find(sv, PERL_MAGIC_ext);
96 if(strcmp(mg->mg_ptr,"threads::shared"))
98 ssv = INT2PTR(shared_sv *, SvIV(mg->mg_obj));
102 mg = mg_find(sv,PERL_MAGIC_tied);
104 SV* obj = SvTIED_obj(sv,mg);
105 if(sv_derived_from(obj, "threads::shared"))
106 ssv = INT2PTR(shared_sv *, SvIV(SvRV(obj)));
115 =for apidoc sharedsv_lock
117 Recursive locks on a sharedsv.
118 Locks are dynamically scoped at the level of the first lock.
122 Perl_sharedsv_lock(pTHX_ shared_sv* ssv)
126 MUTEX_LOCK(&ssv->mutex);
127 if(ssv->owner && ssv->owner == my_perl) {
129 MUTEX_UNLOCK(&ssv->mutex);
133 COND_WAIT(&ssv->cond,&ssv->mutex);
135 ssv->owner = my_perl;
137 SAVEDESTRUCTOR_X(Perl_sharedsv_unlock_scope,ssv);
138 MUTEX_UNLOCK(&ssv->mutex);
142 =for apidoc sharedsv_unlock
144 Recursively unlocks a shared sv.
150 Perl_sharedsv_unlock(pTHX_ shared_sv* ssv)
152 MUTEX_LOCK(&ssv->mutex);
153 if(ssv->owner != my_perl) {
154 Perl_croak(aTHX_ "panic: Perl_sharedsv_unlock unlocking mutex that we don't own");
155 MUTEX_UNLOCK(&ssv->mutex);
159 if(--ssv->locks == 0) {
161 COND_SIGNAL(&ssv->cond);
163 MUTEX_UNLOCK(&ssv->mutex);
167 Perl_sharedsv_unlock_scope(pTHX_ shared_sv* ssv)
169 MUTEX_LOCK(&ssv->mutex);
170 if(ssv->owner != my_perl) {
171 MUTEX_UNLOCK(&ssv->mutex);
176 COND_SIGNAL(&ssv->cond);
177 MUTEX_UNLOCK(&ssv->mutex);
181 =for apidoc sharedsv_thrcnt_inc
183 Increments the threadcount of a sharedsv.
187 Perl_sharedsv_thrcnt_inc(pTHX_ shared_sv* ssv)
190 SvREFCNT_inc(ssv->sv);
195 =for apidoc sharedsv_thrcnt_dec
197 Decrements the threadcount of a shared sv. When a threads frontend is freed
198 this function should be called.
204 Perl_sharedsv_thrcnt_dec(pTHX_ shared_sv* ssv)
208 sv = SHAREDSvGET(ssv);
209 if (SvREFCNT(sv) == 1) {
210 switch (SvTYPE(sv)) {
213 Perl_sharedsv_thrcnt_dec(aTHX_ INT2PTR(shared_sv *, SvIV(SvRV(sv))));
216 SV **src_ary = AvARRAY((AV *)sv);
217 SSize_t items = AvFILLp((AV *)sv) + 1;
219 while (items-- > 0) {
221 Perl_sharedsv_thrcnt_dec(aTHX_ INT2PTR(shared_sv *, SvIV(*src_ary)));
228 (void)hv_iterinit((HV *)sv);
229 while ((entry = hv_iternext((HV *)sv)))
230 Perl_sharedsv_thrcnt_dec(
231 aTHX_ INT2PTR(shared_sv *, SvIV(hv_iterval((HV *)sv, entry)))
237 Perl_sv_free(PL_sharedsv_space,SHAREDSvGET(ssv));
241 #endif /* USE_ITHREADS */