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