Fix broken sections links in POD
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Replicated / Pool.pm
1 package DBIx::Class::Storage::DBI::Replicated::Pool;
2
3 use Moose;
4 use DBIx::Class::Storage::DBI::Replicated::Replicant;
5 use List::Util 'sum';
6 use Scalar::Util 'reftype';
7 use DBI ();
8 use Carp::Clan qw/^DBIx::Class/;
9 use MooseX::Types::Moose qw/Num Int ClassName HashRef/;
10 use DBIx::Class::Storage::DBI::Replicated::Types 'DBICStorageDBI';
11 use Try::Tiny;
12
13 use namespace::clean -except => 'meta';
14
15 =head1 NAME
16
17 DBIx::Class::Storage::DBI::Replicated::Pool - Manage a pool of replicants
18
19 =head1 SYNOPSIS
20
21 This class is used internally by L<DBIx::Class::Storage::DBI::Replicated>.  You
22 shouldn't need to create instances of this class.
23
24 =head1 DESCRIPTION
25
26 In a replicated storage type, there is at least one replicant to handle the
27 read-only traffic.  The Pool class manages this replicant, or list of 
28 replicants, and gives some methods for querying information about their status.
29
30 =head1 ATTRIBUTES
31
32 This class defines the following attributes.
33
34 =head2 maximum_lag ($num)
35
36 This is a number which defines the maximum allowed lag returned by the
37 L<DBIx::Class::Storage::DBI/lag_behind_master> method.  The default is 0.  In
38 general, this should return a larger number when the replicant is lagging
39 behind its master, however the implementation of this is database specific, so
40 don't count on this number having a fixed meaning.  For example, MySQL will
41 return a number of seconds that the replicating database is lagging.
42
43 =cut
44
45 has 'maximum_lag' => (
46   is=>'rw',
47   isa=>Num,
48   required=>1,
49   lazy=>1,
50   default=>0,
51 );
52
53 =head2 last_validated
54
55 This is an integer representing a time since the last time the replicants were
56 validated. It's nothing fancy, just an integer provided via the perl L<time|perlfunc/time>
57 built-in.
58
59 =cut
60
61 has 'last_validated' => (
62   is=>'rw',
63   isa=>Int,
64   reader=>'last_validated',
65   writer=>'_last_validated',
66   lazy=>1,
67   default=>0,
68 );
69
70 =head2 replicant_type ($classname)
71
72 Base class used to instantiate replicants that are in the pool.  Unless you
73 need to subclass L<DBIx::Class::Storage::DBI::Replicated::Replicant> you should
74 just leave this alone.
75
76 =cut
77
78 has 'replicant_type' => (
79   is=>'ro',
80   isa=>ClassName,
81   required=>1,
82   default=>'DBIx::Class::Storage::DBI',
83   handles=>{
84     'create_replicant' => 'new',
85   },  
86 );
87
88 =head2 replicants
89
90 A hashref of replicant, with the key being the dsn and the value returning the
91 actual replicant storage.  For example, if the $dsn element is something like:
92
93   "dbi:SQLite:dbname=dbfile"
94
95 You could access the specific replicant via:
96
97   $schema->storage->replicants->{'dbname=dbfile'}
98
99 This attributes also supports the following helper methods:
100
101 =over 4
102
103 =item set_replicant($key=>$storage)
104
105 Pushes a replicant onto the HashRef under $key
106
107 =item get_replicant($key)
108
109 Retrieves the named replicant
110
111 =item has_replicants
112
113 Returns true if the Pool defines replicants.
114
115 =item num_replicants
116
117 The number of replicants in the pool
118
119 =item delete_replicant ($key)
120
121 Removes the replicant under $key from the pool
122
123 =back
124
125 =cut
126
127 has 'replicants' => (
128   is=>'rw',
129   traits => ['Hash'],
130   isa=>HashRef['Object'],
131   default=>sub {{}},
132   handles  => {
133     'set_replicant' => 'set',
134     'get_replicant' => 'get',
135     'has_replicants' => 'is_empty',
136     'num_replicants' => 'count',
137     'delete_replicant' => 'delete',
138     'all_replicant_storages' => 'values',
139   },
140 );
141
142 around has_replicants => sub {
143     my ($orig, $self) = @_;
144     return !$self->$orig;
145 };
146
147 has next_unknown_replicant_id => (
148   is => 'rw',
149   traits => ['Counter'],
150   isa => Int,
151   default => 1,
152   handles => {
153     'inc_unknown_replicant_id' => 'inc',
154   },
155 );
156
157 =head2 master
158
159 Reference to the master Storage.
160
161 =cut
162
163 has master => (is => 'rw', isa => DBICStorageDBI, weak_ref => 1);
164
165 =head1 METHODS
166
167 This class defines the following methods.
168
169 =head2 connect_replicants ($schema, Array[$connect_info])
170
171 Given an array of $dsn or connect_info structures suitable for connected to a
172 database, create an L<DBIx::Class::Storage::DBI::Replicated::Replicant> object
173 and store it in the L</replicants> attribute.
174
175 =cut
176
177 sub connect_replicants {
178   my $self = shift @_;
179   my $schema = shift @_;
180
181   my @newly_created = ();
182   foreach my $connect_info (@_) {
183     $connect_info = [ $connect_info ]
184       if reftype $connect_info ne 'ARRAY';
185
186     my $connect_coderef =
187       (reftype($connect_info->[0])||'') eq 'CODE' ? $connect_info->[0]
188         : (reftype($connect_info->[0])||'') eq 'HASH' &&
189           $connect_info->[0]->{dbh_maker};
190
191     my $dsn;
192     my $replicant = do {
193 # yes this is evil, but it only usually happens once (for coderefs)
194 # this will fail if the coderef does not actually DBI::connect
195       no warnings 'redefine';
196       my $connect = \&DBI::connect;
197       local *DBI::connect = sub {
198         $dsn = $_[1];
199         goto $connect;
200       };
201       $self->connect_replicant($schema, $connect_info);
202     };
203
204     my $key;
205
206     if (!$dsn) {
207       if (!$connect_coderef) {
208         $dsn = $connect_info->[0];
209         $dsn = $dsn->{dsn} if (reftype($dsn)||'') eq 'HASH';
210       }
211       else {
212         # all attempts to get the DSN failed
213         $key = "UNKNOWN_" . $self->next_unknown_replicant_id;
214         $self->inc_unknown_replicant_id;
215       }
216     }
217     if ($dsn) {
218       $replicant->dsn($dsn);
219       ($key) = ($dsn =~ m/^dbi\:.+\:(.+)$/i);
220     }
221
222     $replicant->id($key);
223     $self->set_replicant($key => $replicant);  
224
225     push @newly_created, $replicant;
226   }
227
228   return @newly_created;
229 }
230
231 =head2 connect_replicant ($schema, $connect_info)
232
233 Given a schema object and a hashref of $connect_info, connect the replicant
234 and return it.
235
236 =cut
237
238 sub connect_replicant {
239   my ($self, $schema, $connect_info) = @_;
240   my $replicant = $self->create_replicant($schema);
241   $replicant->connect_info($connect_info);
242
243 ## It is undesirable for catalyst to connect at ->conect_replicants time, as
244 ## connections should only happen on the first request that uses the database.
245 ## So we try to set the driver without connecting, however this doesn't always
246 ## work, as a driver may need to connect to determine the DB version, and this
247 ## may fail.
248 ##
249 ## Why this is necessary at all, is that we need to have the final storage
250 ## class to apply the Replicant role.
251
252   $self->_safely($replicant, '->_determine_driver', sub {
253     $replicant->_determine_driver
254   });
255
256   Moose::Meta::Class->initialize(ref $replicant);
257
258   DBIx::Class::Storage::DBI::Replicated::Replicant->meta->apply($replicant);
259
260   # link back to master
261   $replicant->master($self->master);
262
263   return $replicant;
264 }
265
266 =head2 _safely_ensure_connected ($replicant)
267
268 The standard ensure_connected method with throw an exception should it fail to
269 connect.  For the master database this is desirable, but since replicants are
270 allowed to fail, this behavior is not desirable.  This method wraps the call
271 to ensure_connected in an eval in order to catch any generated errors.  That
272 way a slave can go completely offline (e.g. the box itself can die) without
273 bringing down your entire pool of databases.
274
275 =cut
276
277 sub _safely_ensure_connected {
278   my ($self, $replicant, @args) = @_;
279
280   return $self->_safely($replicant, '->ensure_connected', sub {
281     $replicant->ensure_connected(@args)
282   });
283 }
284
285 =head2 _safely ($replicant, $name, $code)
286
287 Execute C<$code> for operation C<$name> catching any exceptions and printing an
288 error message to the C<<$replicant->debugobj>>.
289
290 Returns 1 on success and undef on failure.
291
292 =cut
293
294 sub _safely {
295   my ($self, $replicant, $name, $code) = @_;
296
297   return try {
298     $code->();
299     1;
300   } catch {
301     $replicant->debugobj->print(sprintf(
302       "Exception trying to $name for replicant %s, error is %s",
303       $replicant->_dbi_connect_info->[0], $_)
304     );
305     undef;
306   };
307 }
308
309 =head2 connected_replicants
310
311 Returns true if there are connected replicants.  Actually is overloaded to
312 return the number of replicants.  So you can do stuff like:
313
314   if( my $num_connected = $storage->has_connected_replicants ) {
315     print "I have $num_connected connected replicants";
316   } else {
317     print "Sorry, no replicants.";
318   }
319
320 This method will actually test that each replicant in the L</replicants> hashref
321 is actually connected, try not to hit this 10 times a second.
322
323 =cut
324
325 sub connected_replicants {
326   my $self = shift @_;
327   return sum( map {
328     $_->connected ? 1:0
329   } $self->all_replicants );
330 }
331
332 =head2 active_replicants
333
334 This is an array of replicants that are considered to be active in the pool.
335 This does not check to see if they are connected, but if they are not, DBIC
336 should automatically reconnect them for us when we hit them with a query.
337
338 =cut
339
340 sub active_replicants {
341   my $self = shift @_;
342   return ( grep {$_} map {
343     $_->active ? $_:0
344   } $self->all_replicants );
345 }
346
347 =head2 all_replicants
348
349 Just a simple array of all the replicant storages.  No particular order to the
350 array is given, nor should any meaning be derived.
351
352 =cut
353
354 sub all_replicants {
355   my $self = shift @_;
356   return values %{$self->replicants};
357 }
358
359 =head2 validate_replicants
360
361 This does a check to see if 1) each replicate is connected (or reconnectable),
362 2) that is ->is_replicating, and 3) that it is not exceeding the lag amount
363 defined by L</maximum_lag>.  Replicants that fail any of these tests are set to
364 inactive, and thus removed from the replication pool.
365
366 This tests L</all_replicants>, since a replicant that has been previous marked
367 as inactive can be reactivated should it start to pass the validation tests again.
368
369 See L<DBIx::Class::Storage::DBI> for more about checking if a replicating
370 connection is not following a master or is lagging.
371
372 Calling this method will generate queries on the replicant databases so it is
373 not recommended that you run them very often.
374
375 This method requires that your underlying storage engine supports some sort of
376 native replication mechanism.  Currently only MySQL native replication is
377 supported.  Your patches to make other replication types work are welcomed.
378
379 =cut
380
381 sub validate_replicants {
382   my $self = shift @_;
383   foreach my $replicant($self->all_replicants) {
384     if($self->_safely_ensure_connected($replicant)) {
385       my $is_replicating = $replicant->is_replicating;
386       unless(defined $is_replicating) {
387         $replicant->debugobj->print("Storage Driver ".ref($self)." Does not support the 'is_replicating' method.  Assuming you are manually managing.\n");
388         next;
389       } else {
390         if($is_replicating) {
391           my $lag_behind_master = $replicant->lag_behind_master;
392           unless(defined $lag_behind_master) {
393             $replicant->debugobj->print("Storage Driver ".ref($self)." Does not support the 'lag_behind_master' method.  Assuming you are manually managing.\n");
394             next;
395           } else {
396             if($lag_behind_master <= $self->maximum_lag) {
397               $replicant->active(1);
398             } else {
399               $replicant->active(0);  
400             }
401           }    
402         } else {
403           $replicant->active(0);
404         }
405       }
406     } else {
407       $replicant->active(0);
408     }
409   }
410   ## Mark that we completed this validation.  
411   $self->_last_validated(time);  
412 }
413
414 =head1 AUTHOR
415
416 John Napiorkowski <john.napiorkowski@takkle.com>
417
418 =head1 LICENSE
419
420 You may distribute this code under the same terms as Perl itself.
421
422 =cut
423
424 __PACKAGE__->meta->make_immutable;
425
426 1;