Fix for FETCH/NEXTKEY problem in all *DB*_File modules
[p5sagit/p5-mst-13.2.git] / ext / threads / shared / shared.pm
CommitLineData
b050c948 1
2package threads::shared;
3
4use strict;
5use warnings;
6use Config;
7use Scalar::Util qw(weaken);
8use attributes qw(reftype);
9
10BEGIN {
11 if($Config{'useithreads'} && $Config::threads) {
12 *share = \&share_enabled;
13 *cond_wait = \&cond_wait_disabled;
14 *cond_signal = \&cond_signal_disabled;
15 *cond_broadcast = \&cond_broadcast_disabled;
16 *unlock = \&unlock_disabled;
17 *lock = \&lock_disabled;
18 } else {
19 *share = \&share_enabled;
20 }
21}
22
23require Exporter;
24require DynaLoader;
25our @ISA = qw(Exporter DynaLoader);
26
27our @EXPORT = qw(share cond_wait cond_broadcast cond_signal unlock lock);
28our $VERSION = '0.01';
29
30our %shared;
31
32
33sub cond_wait_disabled { return @_ };
34sub cond_signal_disabled { return @_};
35sub cond_broadcast_disabled { return @_};
36sub unlock_disabled { 1 };
37sub lock_disabled { 1 }
38sub share_disabled { return @_}
39
40sub share_enabled (\[$@%]) { # \]
41 my $value = $_[0];
42 my $ref = reftype($value);
43 if($ref eq 'SCALAR') {
44 my $obj = \threads::shared::sv->new($$value);
45 bless $obj, 'threads::shared::sv';
46 $shared{$$obj} = $value;
47 weaken($shared{$$obj});
48 } else {
49 die "You cannot share ref of type $_[0]\n";
50 }
51}
52
53sub CLONE {
54 return unless($_[0] eq "threads::shared");
55 foreach my $ptr (keys %shared) {
56 if($ptr) {
57 thrcnt_inc($shared{$ptr});
58 }
59 }
60}
61
62
63package threads::shared::sv;
64use base 'threads::shared';
65
66package threads::shared::av;
67use base 'threads::shared';
68
69package threads::shared::hv;
70use base 'threads::shared';
71
72
73bootstrap threads::shared $VERSION;
74
75__END__
76
77=head1 NAME
78
79threads::shared - Perl extension for sharing data structures between threads
80
81=head1 SYNOPSIS
82
83 use threads::shared;
84
85 my($foo, @foo, %foo);
86 share(\$foo);
87 share(\@foo);
88 share(\%hash);
89 my $bar = share([]);
90 $hash{bar} = share({});
91
92 lock(\%hash);
93 unlock(\%hash);
94 cond_wait($scalar);
95 cond_broadcast(\@array);
96 cond_signal($scalar);
97
98=head1 DESCRIPTION
99
100 This modules allows you to share() variables. These variables will then be shared across different threads (and pseudoforks on win32). They are used together with the threads module.
101
102=head2 EXPORT
103
104share(), lock(), unlock(), cond_wait, cond_signal, cond_broadcast
105
106=head1 BUGS
107
108Not stress tested!
109Does not support references
110Does not support splice on arrays!
111The exported functions need a reference due to unsufficent prototyping!
112
113=head1 AUTHOR
114
115Artur Bergman <lt>artur at contiller.se<gt>
116
117threads is released under the same license as Perl
118
119=head1 SEE ALSO
120
121L<perl> L<threads>
122
123=cut
124
125