ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/BDB.pm
Revision: 1.96
Committed: Mon Mar 16 11:12:52 2020 UTC (4 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-6_57, HEAD
Changes since 1.95: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 =head1 NAME
2
3 Coro::BDB - truly asynchronous bdb access
4
5 =head1 SYNOPSIS
6
7 use Coro::BDB;
8 use BDB;
9
10 # can now use any of the bdb requests
11
12 =head1 DESCRIPTION
13
14 This module is an L<AnyEvent> user, you need to make sure that you use and
15 run a supported event loop.
16
17 This module implements a thin wrapper around the L<BDB> module: Each BDB
18 request that could block and doesn't get passed a callback will normally
19 block all coroutines. after loading this module, this will no longer be
20 the case (it provides a suitable sync prepare callback).
21
22 It will also register an AnyEvent watcher as soon as AnyEvent chooses an
23 event loop.
24
25 The AnyEvent watcher can be disabled by executing C<undef
26 $Coro::BDB::WATCHER>. Please notify the author of when and why you think
27 this was necessary.
28
29 This module does not export anything (unlike L<Coro::AIO>), as BDB already
30 supports leaving out the callback. (Unfortunately, it ties a C context
31 to each coroutine executing such a callback, so in the future, it might
32 export more efficient wrappers).
33
34 =over 4
35
36 =cut
37
38 package Coro::BDB;
39
40 use common::sense;
41
42 use BDB ();
43 use AnyEvent::BDB ();
44
45 use Coro ();
46 use Coro::AnyEvent ();
47
48 use base Exporter::;
49
50 our $VERSION = 6.57;
51 our $WATCHER;
52
53 BDB::set_sync_prepare {
54 my $cb = Coro::rouse_cb;
55 (
56 sub { $cb->($!) },
57 sub { $! = Coro::rouse_wait },
58 )
59 };
60
61 =back
62
63 =head1 SEE ALSO
64
65 L<BDB> of course.
66
67 =head1 AUTHOR/SUPPORT/CONTACT
68
69 Marc A. Lehmann <schmorp@schmorp.de>
70 http://software.schmorp.de/pkg/Coro.html
71
72 =cut
73
74 1