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
25 PerlInterpreter* sharedsv_space;
26 perl_mutex sharedsv_space_mutex;
31 Shared SV is a structure for keeping the backend storage
37 =for apidoc sharedsv_init
39 Saves a space for keeping SVs wider than an interpreter,
40 currently only stores a pointer to the first interpreter.
46 Perl_sharedsv_init(pTHX)
48 sharedsv_space = PERL_GET_CONTEXT;
49 MUTEX_INIT(&sharedsv_space_mutex);
53 =for apidoc sharedsv_new
55 Allocates a new shared sv struct, you must yourself create the SV/AV/HV.
60 Perl_sharedsv_new(pTHX)
63 New(2555,ssv,1,shared_sv);
64 MUTEX_INIT(&ssv->mutex);
65 COND_INIT(&ssv->cond);
72 =for apidoc sharedsv_find
74 Tries to find if a given SV has a shared backend, either by
75 looking at magic, or by checking if it is tied again threads::shared.
81 Perl_sharedsv_find(pTHX_ SV* sv)
83 /* does all it can to find a shared_sv struct, returns NULL otherwise */
84 shared_sv* ssv = NULL;
89 =for apidoc sharedsv_lock
91 Recursive locks on a sharedsv.
92 Locks are dynamicly scoped at the level of the first lock.
96 Perl_sharedsv_lock(pTHX_ shared_sv* ssv)
100 if(ssv->owner && ssv->owner == my_perl) {
104 MUTEX_LOCK(&ssv->mutex);
106 ssv->owner = my_perl;
108 SAVEDESTRUCTOR_X(Perl_sharedsv_unlock_scope,ssv);
112 =for apidoc sharedsv_unlock
114 Recursively unlocks a shared sv.
120 Perl_sharedsv_unlock(pTHX_ shared_sv* ssv)
122 if(ssv->owner != my_perl)
125 if(--ssv->locks == 0) {
127 MUTEX_UNLOCK(&ssv->mutex);
132 Perl_sharedsv_unlock_scope(pTHX_ shared_sv* ssv)
134 if(ssv->owner != my_perl)
138 MUTEX_UNLOCK(&ssv->mutex);
142 =for apidoc sharedsv_thrcnt_inc
144 Increments the threadcount of a sharedsv.
148 Perl_sharedsv_thrcnt_inc(pTHX_ shared_sv* ssv)
151 SvREFCNT_inc(ssv->sv);
152 SHAREDSvRELEASE(ssv);
156 =for apidoc sharedsv_thrcnt_dec
158 Decrements the threadcount of a shared sv. When a threads frontend is freed
159 this function should be called.
165 Perl_sharedsv_thrcnt_dec(pTHX_ shared_sv* ssv)
169 sv = SHAREDSvGET(ssv);
170 if (SvREFCNT(sv) == 1) {
171 switch (SvTYPE(sv)) {
174 Perl_sharedsv_thrcnt_dec(aTHX_ INT2PTR(shared_sv *, SvIV(SvRV(sv))));
177 SV **src_ary = AvARRAY((AV *)sv);
178 SSize_t items = AvFILLp((AV *)sv) + 1;
180 while (items-- > 0) {
182 Perl_sharedsv_thrcnt_dec(aTHX_ INT2PTR(shared_sv *, SvIV(*src_ary++)));
188 (void)hv_iterinit((HV *)sv);
189 while ((entry = hv_iternext((HV *)sv)))
190 Perl_sharedsv_thrcnt_dec(
191 aTHX_ INT2PTR(shared_sv *, SvIV(hv_iterval((HV *)sv, entry)))
198 SHAREDSvRELEASE(ssv);
201 #endif /* USE_ITHREADS */