add a link to SQL::Abstract for WHERE clauses
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Replicated.pm
1 package DBIx::Class::Storage::DBI::Replicated;
2
3 BEGIN {
4   use DBIx::Class;
5   die('The following modules are required for Replication ' . DBIx::Class::Optional::Dependencies->req_missing_for ('replicated') . "\n" )
6     unless DBIx::Class::Optional::Dependencies->req_ok_for ('replicated');
7 }
8
9 use Moose;
10 use DBIx::Class::Storage::DBI;
11 use DBIx::Class::Storage::DBI::Replicated::Pool;
12 use DBIx::Class::Storage::DBI::Replicated::Balancer;
13 use DBIx::Class::Storage::DBI::Replicated::Types qw/BalancerClassNamePart DBICSchema DBICStorageDBI/;
14 use MooseX::Types::Moose qw/ClassName HashRef Object/;
15 use Scalar::Util 'reftype';
16 use Hash::Merge;
17 use List::Util qw/min max reduce/;
18 use Try::Tiny;
19 use namespace::clean;
20
21 use namespace::clean -except => 'meta';
22
23 =head1 NAME
24
25 DBIx::Class::Storage::DBI::Replicated - BETA Replicated database support
26
27 =head1 SYNOPSIS
28
29 The Following example shows how to change an existing $schema to a replicated
30 storage type, add some replicated (read-only) databases, and perform reporting
31 tasks.
32
33 You should set the 'storage_type attribute to a replicated type.  You should
34 also define your arguments, such as which balancer you want and any arguments
35 that the Pool object should get.
36
37   my $schema = Schema::Class->clone;
38   $schema->storage_type( ['::DBI::Replicated', {balancer=>'::Random'}] );
39   $schema->connection(...);
40
41 Next, you need to add in the Replicants.  Basically this is an array of
42 arrayrefs, where each arrayref is database connect information.  Think of these
43 arguments as what you'd pass to the 'normal' $schema->connect method.
44
45   $schema->storage->connect_replicants(
46     [$dsn1, $user, $pass, \%opts],
47     [$dsn2, $user, $pass, \%opts],
48     [$dsn3, $user, $pass, \%opts],
49   );
50
51 Now, just use the $schema as you normally would.  Automatically all reads will
52 be delegated to the replicants, while writes to the master.
53
54   $schema->resultset('Source')->search({name=>'etc'});
55
56 You can force a given query to use a particular storage using the search
57 attribute 'force_pool'.  For example:
58
59   my $RS = $schema->resultset('Source')->search(undef, {force_pool=>'master'});
60
61 Now $RS will force everything (both reads and writes) to use whatever was setup
62 as the master storage.  'master' is hardcoded to always point to the Master,
63 but you can also use any Replicant name.  Please see:
64 L<DBIx::Class::Storage::DBI::Replicated::Pool> and the replicants attribute for more.
65
66 Also see transactions and L</execute_reliably> for alternative ways to
67 force read traffic to the master.  In general, you should wrap your statements
68 in a transaction when you are reading and writing to the same tables at the
69 same time, since your replicants will often lag a bit behind the master.
70
71 See L<DBIx::Class::Storage::DBI::Replicated::Instructions> for more help and
72 walkthroughs.
73
74 =head1 DESCRIPTION
75
76 Warning: This class is marked BETA.  This has been running a production
77 website using MySQL native replication as its backend and we have some decent
78 test coverage but the code hasn't yet been stressed by a variety of databases.
79 Individual DBs may have quirks we are not aware of.  Please use this in first
80 development and pass along your experiences/bug fixes.
81
82 This class implements replicated data store for DBI. Currently you can define
83 one master and numerous slave database connections. All write-type queries
84 (INSERT, UPDATE, DELETE and even LAST_INSERT_ID) are routed to master
85 database, all read-type queries (SELECTs) go to the slave database.
86
87 Basically, any method request that L<DBIx::Class::Storage::DBI> would normally
88 handle gets delegated to one of the two attributes: L</read_handler> or to
89 L</write_handler>.  Additionally, some methods need to be distributed
90 to all existing storages.  This way our storage class is a drop in replacement
91 for L<DBIx::Class::Storage::DBI>.
92
93 Read traffic is spread across the replicants (slaves) occurring to a user
94 selected algorithm.  The default algorithm is random weighted.
95
96 =head1 NOTES
97
98 The consistency between master and replicants is database specific.  The Pool
99 gives you a method to validate its replicants, removing and replacing them
100 when they fail/pass predefined criteria.  Please make careful use of the ways
101 to force a query to run against Master when needed.
102
103 =head1 REQUIREMENTS
104
105 Replicated Storage has additional requirements not currently part of
106 L<DBIx::Class>. See L<DBIx::Class::Optional::Dependencies> for more details.
107
108 =head1 ATTRIBUTES
109
110 This class defines the following attributes.
111
112 =head2 schema
113
114 The underlying L<DBIx::Class::Schema> object this storage is attaching
115
116 =cut
117
118 has 'schema' => (
119     is=>'rw',
120     isa=>DBICSchema,
121     weak_ref=>1,
122     required=>1,
123 );
124
125 =head2 pool_type
126
127 Contains the classname which will instantiate the L</pool> object.  Defaults
128 to: L<DBIx::Class::Storage::DBI::Replicated::Pool>.
129
130 =cut
131
132 has 'pool_type' => (
133   is=>'rw',
134   isa=>ClassName,
135   default=>'DBIx::Class::Storage::DBI::Replicated::Pool',
136   handles=>{
137     'create_pool' => 'new',
138   },
139 );
140
141 =head2 pool_args
142
143 Contains a hashref of initialized information to pass to the Balancer object.
144 See L<DBIx::Class::Storage::DBI::Replicated::Pool> for available arguments.
145
146 =cut
147
148 has 'pool_args' => (
149   is=>'rw',
150   isa=>HashRef,
151   lazy=>1,
152   default=>sub { {} },
153 );
154
155
156 =head2 balancer_type
157
158 The replication pool requires a balance class to provider the methods for
159 choose how to spread the query load across each replicant in the pool.
160
161 =cut
162
163 has 'balancer_type' => (
164   is=>'rw',
165   isa=>BalancerClassNamePart,
166   coerce=>1,
167   required=>1,
168   default=> 'DBIx::Class::Storage::DBI::Replicated::Balancer::First',
169   handles=>{
170     'create_balancer' => 'new',
171   },
172 );
173
174 =head2 balancer_args
175
176 Contains a hashref of initialized information to pass to the Balancer object.
177 See L<DBIx::Class::Storage::DBI::Replicated::Balancer> for available arguments.
178
179 =cut
180
181 has 'balancer_args' => (
182   is=>'rw',
183   isa=>HashRef,
184   lazy=>1,
185   required=>1,
186   default=>sub { {} },
187 );
188
189 =head2 pool
190
191 Is a L<DBIx::Class::Storage::DBI::Replicated::Pool> or derived class.  This is a
192 container class for one or more replicated databases.
193
194 =cut
195
196 has 'pool' => (
197   is=>'ro',
198   isa=>'DBIx::Class::Storage::DBI::Replicated::Pool',
199   lazy_build=>1,
200   handles=>[qw/
201     connect_replicants
202     replicants
203     has_replicants
204   /],
205 );
206
207 =head2 balancer
208
209 Is a L<DBIx::Class::Storage::DBI::Replicated::Balancer> or derived class.  This
210 is a class that takes a pool (L<DBIx::Class::Storage::DBI::Replicated::Pool>)
211
212 =cut
213
214 has 'balancer' => (
215   is=>'rw',
216   isa=>'DBIx::Class::Storage::DBI::Replicated::Balancer',
217   lazy_build=>1,
218   handles=>[qw/auto_validate_every/],
219 );
220
221 =head2 master
222
223 The master defines the canonical state for a pool of connected databases.  All
224 the replicants are expected to match this databases state.  Thus, in a classic
225 Master / Slaves distributed system, all the slaves are expected to replicate
226 the Master's state as quick as possible.  This is the only database in the
227 pool of databases that is allowed to handle write traffic.
228
229 =cut
230
231 has 'master' => (
232   is=> 'ro',
233   isa=>DBICStorageDBI,
234   lazy_build=>1,
235 );
236
237 =head1 ATTRIBUTES IMPLEMENTING THE DBIx::Storage::DBI INTERFACE
238
239 The following methods are delegated all the methods required for the
240 L<DBIx::Class::Storage::DBI> interface.
241
242 =cut
243
244 my $method_dispatch = {
245   writer => [qw/
246     on_connect_do
247     on_disconnect_do
248     on_connect_call
249     on_disconnect_call
250     connect_info
251     _connect_info
252     throw_exception
253     sql_maker
254     sqlt_type
255     create_ddl_dir
256     deployment_statements
257     datetime_parser
258     datetime_parser_type
259     build_datetime_parser
260     last_insert_id
261     insert
262     insert_bulk
263     update
264     delete
265     dbh
266     txn_begin
267     txn_do
268     txn_commit
269     txn_rollback
270     txn_scope_guard
271     _exec_txn_rollback
272     _exec_txn_begin
273     _exec_txn_commit
274     deploy
275     with_deferred_fk_checks
276     dbh_do
277     _prep_for_execute
278     is_datatype_numeric
279     _count_select
280     _subq_update_delete
281     svp_rollback
282     svp_begin
283     svp_release
284     relname_to_table_alias
285     _dbh_last_insert_id
286     _default_dbi_connect_attributes
287     _dbi_connect_info
288     _dbic_connect_attributes
289     auto_savepoint
290     _query_start
291     _query_end
292     _format_for_trace
293     _dbi_attrs_for_bind
294     bind_attribute_by_data_type
295     transaction_depth
296     _dbh
297     _select_args
298     _dbh_execute_array
299     _sql_maker
300     _per_row_update_delete
301     _dbh_execute_inserts_with_no_binds
302     _select_args_to_query
303     _gen_sql_bind
304     _svp_generate_name
305     _multipk_update_delete
306     _normalize_connect_info
307     _parse_connect_do
308     _execute_array
309     savepoints
310     _sql_maker_opts
311     _conn_pid
312     _dbh_autocommit
313     _native_data_type
314     _get_dbh
315     sql_maker_class
316     _execute
317     _do_query
318     _sth
319     _dbh_sth
320     _dbh_execute
321   /, Class::MOP::Class->initialize('DBIx::Class::Storage::DBIHacks')->get_method_list ],
322   reader => [qw/
323     select
324     select_single
325     columns_info_for
326     _dbh_columns_info_for
327     _select
328   /],
329   unimplemented => [qw/
330     _arm_global_destructor
331     _verify_pid
332
333     source_bind_attributes
334
335     get_use_dbms_capability
336     set_use_dbms_capability
337     get_dbms_capability
338     set_dbms_capability
339     _dbh_details
340     _dbh_get_info
341
342     sql_limit_dialect
343     sql_quote_char
344     sql_name_sep
345
346     _prefetch_autovalues
347
348     _max_column_bytesize
349     _is_lob_type
350     _is_binary_lob_type
351     _is_text_lob_type
352
353     sth
354   /,(
355     # the capability framework
356     # not sure if CMOP->initialize does evil things to DBIC::S::DBI, fix if a problem
357     grep
358       { $_ =~ /^ _ (?: use | supports | determine_supports ) _ /x }
359       ( Class::MOP::Class->initialize('DBIx::Class::Storage::DBI')->get_all_method_names )
360   )],
361 };
362
363 if (DBIx::Class::_ENV_::DBICTEST) {
364
365   my $seen;
366   for my $type (keys %$method_dispatch) {
367     for (@{$method_dispatch->{$type}}) {
368       push @{$seen->{$_}}, $type;
369     }
370   }
371
372   if (my @dupes = grep { @{$seen->{$_}} > 1 } keys %$seen) {
373     die(join "\n", '',
374       'The following methods show up multiple times in ::Storage::DBI::Replicated handlers:',
375       (map { "$_: " . (join ', ', @{$seen->{$_}}) } sort @dupes),
376       '',
377     );
378   }
379
380   if (my @cant = grep { ! DBIx::Class::Storage::DBI->can($_) } keys %$seen) {
381     die(join "\n", '',
382       '::Storage::DBI::Replicated specifies handling of the following *NON EXISTING* ::Storage::DBI methods:',
383       @cant,
384       '',
385     );
386   }
387 }
388
389 for my $method (@{$method_dispatch->{unimplemented}}) {
390   __PACKAGE__->meta->add_method($method, sub {
391     my $self = shift;
392     $self->throw_exception("$method must not be called on ".(blessed $self).' objects');
393   });
394 }
395
396 =head2 read_handler
397
398 Defines an object that implements the read side of L<BIx::Class::Storage::DBI>.
399
400 =cut
401
402 has 'read_handler' => (
403   is=>'rw',
404   isa=>Object,
405   lazy_build=>1,
406   handles=>$method_dispatch->{reader},
407 );
408
409 =head2 write_handler
410
411 Defines an object that implements the write side of L<BIx::Class::Storage::DBI>,
412 as well as methods that don't write or read that can be called on only one
413 storage, methods that return a C<$dbh>, and any methods that don't make sense to
414 run on a replicant.
415
416 =cut
417
418 has 'write_handler' => (
419   is=>'ro',
420   isa=>Object,
421   lazy_build=>1,
422   handles=>$method_dispatch->{writer},
423 );
424
425
426
427 has _master_connect_info_opts =>
428   (is => 'rw', isa => HashRef, default => sub { {} });
429
430 =head2 around: connect_info
431
432 Preserves master's C<connect_info> options (for merging with replicants.)
433 Also sets any Replicated-related options from connect_info, such as
434 C<pool_type>, C<pool_args>, C<balancer_type> and C<balancer_args>.
435
436 =cut
437
438 around connect_info => sub {
439   my ($next, $self, $info, @extra) = @_;
440
441   my $merge = Hash::Merge->new('LEFT_PRECEDENT');
442
443   my %opts;
444   for my $arg (@$info) {
445     next unless (reftype($arg)||'') eq 'HASH';
446     %opts = %{ $merge->merge($arg, \%opts) };
447   }
448   delete $opts{dsn};
449
450   if (@opts{qw/pool_type pool_args/}) {
451     $self->pool_type(delete $opts{pool_type})
452       if $opts{pool_type};
453
454     $self->pool_args(
455       $merge->merge((delete $opts{pool_args} || {}), $self->pool_args)
456     );
457
458     ## Since we possibly changed the pool_args, we need to clear the current
459     ## pool object so that next time it is used it will be rebuilt.
460     $self->clear_pool;
461   }
462
463   if (@opts{qw/balancer_type balancer_args/}) {
464     $self->balancer_type(delete $opts{balancer_type})
465       if $opts{balancer_type};
466
467     $self->balancer_args(
468       $merge->merge((delete $opts{balancer_args} || {}), $self->balancer_args)
469     );
470
471     $self->balancer($self->_build_balancer)
472       if $self->balancer;
473   }
474
475   $self->_master_connect_info_opts(\%opts);
476
477   my @res;
478   if (wantarray) {
479     @res = $self->$next($info, @extra);
480   } else {
481     $res[0] = $self->$next($info, @extra);
482   }
483
484   # Make sure master is blessed into the correct class and apply role to it.
485   my $master = $self->master;
486   $master->_determine_driver;
487   Moose::Meta::Class->initialize(ref $master);
488
489   DBIx::Class::Storage::DBI::Replicated::WithDSN->meta->apply($master);
490
491   # link pool back to master
492   $self->pool->master($master);
493
494   wantarray ? @res : $res[0];
495 };
496
497 =head1 METHODS
498
499 This class defines the following methods.
500
501 =head2 BUILDARGS
502
503 L<DBIx::Class::Schema> when instantiating its storage passed itself as the
504 first argument.  So we need to massage the arguments a bit so that all the
505 bits get put into the correct places.
506
507 =cut
508
509 sub BUILDARGS {
510   my ($class, $schema, $storage_type_args, @args) = @_;
511
512   return {
513     schema=>$schema,
514     %$storage_type_args,
515     @args
516   }
517 }
518
519 =head2 _build_master
520
521 Lazy builder for the L</master> attribute.
522
523 =cut
524
525 sub _build_master {
526   my $self = shift @_;
527   my $master = DBIx::Class::Storage::DBI->new($self->schema);
528   $master
529 }
530
531 =head2 _build_pool
532
533 Lazy builder for the L</pool> attribute.
534
535 =cut
536
537 sub _build_pool {
538   my $self = shift @_;
539   $self->create_pool(%{$self->pool_args});
540 }
541
542 =head2 _build_balancer
543
544 Lazy builder for the L</balancer> attribute.  This takes a Pool object so that
545 the balancer knows which pool it's balancing.
546
547 =cut
548
549 sub _build_balancer {
550   my $self = shift @_;
551   $self->create_balancer(
552     pool=>$self->pool,
553     master=>$self->master,
554     %{$self->balancer_args},
555   );
556 }
557
558 =head2 _build_write_handler
559
560 Lazy builder for the L</write_handler> attribute.  The default is to set this to
561 the L</master>.
562
563 =cut
564
565 sub _build_write_handler {
566   return shift->master;
567 }
568
569 =head2 _build_read_handler
570
571 Lazy builder for the L</read_handler> attribute.  The default is to set this to
572 the L</balancer>.
573
574 =cut
575
576 sub _build_read_handler {
577   return shift->balancer;
578 }
579
580 =head2 around: connect_replicants
581
582 All calls to connect_replicants needs to have an existing $schema tacked onto
583 top of the args, since L<DBIx::Storage::DBI> needs it, and any C<connect_info>
584 options merged with the master, with replicant opts having higher priority.
585
586 =cut
587
588 around connect_replicants => sub {
589   my ($next, $self, @args) = @_;
590
591   for my $r (@args) {
592     $r = [ $r ] unless reftype $r eq 'ARRAY';
593
594     $self->throw_exception('coderef replicant connect_info not supported')
595       if ref $r->[0] && reftype $r->[0] eq 'CODE';
596
597 # any connect_info options?
598     my $i = 0;
599     $i++ while $i < @$r && (reftype($r->[$i])||'') ne 'HASH';
600
601 # make one if none
602     $r->[$i] = {} unless $r->[$i];
603
604 # merge if two hashes
605     my @hashes = @$r[$i .. $#{$r}];
606
607     $self->throw_exception('invalid connect_info options')
608       if (grep { reftype($_) eq 'HASH' } @hashes) != @hashes;
609
610     $self->throw_exception('too many hashrefs in connect_info')
611       if @hashes > 2;
612
613     my $merge = Hash::Merge->new('LEFT_PRECEDENT');
614     my %opts = %{ $merge->merge(reverse @hashes) };
615
616 # delete them
617     splice @$r, $i+1, ($#{$r} - $i), ();
618
619 # make sure master/replicants opts don't clash
620     my %master_opts = %{ $self->_master_connect_info_opts };
621     if (exists $opts{dbh_maker}) {
622         delete @master_opts{qw/dsn user password/};
623     }
624     delete $master_opts{dbh_maker};
625
626 # merge with master
627     %opts = %{ $merge->merge(\%opts, \%master_opts) };
628
629 # update
630     $r->[$i] = \%opts;
631   }
632
633   $self->$next($self->schema, @args);
634 };
635
636 =head2 all_storages
637
638 Returns an array of of all the connected storage backends.  The first element
639 in the returned array is the master, and the remainings are each of the
640 replicants.
641
642 =cut
643
644 sub all_storages {
645   my $self = shift @_;
646   return grep {defined $_ && blessed $_} (
647      $self->master,
648      values %{ $self->replicants },
649   );
650 }
651
652 =head2 execute_reliably ($coderef, ?@args)
653
654 Given a coderef, saves the current state of the L</read_handler>, forces it to
655 use reliable storage (e.g. sets it to the master), executes a coderef and then
656 restores the original state.
657
658 Example:
659
660   my $reliably = sub {
661     my $name = shift @_;
662     $schema->resultset('User')->create({name=>$name});
663     my $user_rs = $schema->resultset('User')->find({name=>$name});
664     return $user_rs;
665   };
666
667   my $user_rs = $schema->storage->execute_reliably($reliably, 'John');
668
669 Use this when you must be certain of your database state, such as when you just
670 inserted something and need to get a resultset including it, etc.
671
672 =cut
673
674 sub execute_reliably {
675   my ($self, $coderef, @args) = @_;
676
677   unless( ref $coderef eq 'CODE') {
678     $self->throw_exception('Second argument must be a coderef');
679   }
680
681   ##Get copy of master storage
682   my $master = $self->master;
683
684   ##Get whatever the current read hander is
685   my $current = $self->read_handler;
686
687   ##Set the read handler to master
688   $self->read_handler($master);
689
690   ## do whatever the caller needs
691   my @result;
692   my $want_array = wantarray;
693
694   try {
695     if($want_array) {
696       @result = $coderef->(@args);
697     } elsif(defined $want_array) {
698       ($result[0]) = ($coderef->(@args));
699     } else {
700       $coderef->(@args);
701     }
702   } catch {
703     $self->throw_exception("coderef returned an error: $_");
704   } finally {
705     ##Reset to the original state
706     $self->read_handler($current);
707   };
708
709   return wantarray ? @result : $result[0];
710 }
711
712 =head2 set_reliable_storage
713
714 Sets the current $schema to be 'reliable', that is all queries, both read and
715 write are sent to the master
716
717 =cut
718
719 sub set_reliable_storage {
720   my $self = shift @_;
721   my $schema = $self->schema;
722   my $write_handler = $self->schema->storage->write_handler;
723
724   $schema->storage->read_handler($write_handler);
725 }
726
727 =head2 set_balanced_storage
728
729 Sets the current $schema to be use the </balancer> for all reads, while all
730 writes are sent to the master only
731
732 =cut
733
734 sub set_balanced_storage {
735   my $self = shift @_;
736   my $schema = $self->schema;
737   my $balanced_handler = $self->schema->storage->balancer;
738
739   $schema->storage->read_handler($balanced_handler);
740 }
741
742 =head2 connected
743
744 Check that the master and at least one of the replicants is connected.
745
746 =cut
747
748 sub connected {
749   my $self = shift @_;
750   return
751     $self->master->connected &&
752     $self->pool->connected_replicants;
753 }
754
755 =head2 ensure_connected
756
757 Make sure all the storages are connected.
758
759 =cut
760
761 sub ensure_connected {
762   my $self = shift @_;
763   foreach my $source ($self->all_storages) {
764     $source->ensure_connected(@_);
765   }
766 }
767
768 =head2 limit_dialect
769
770 Set the limit_dialect for all existing storages
771
772 =cut
773
774 sub limit_dialect {
775   my $self = shift @_;
776   foreach my $source ($self->all_storages) {
777     $source->limit_dialect(@_);
778   }
779   return $self->master->limit_dialect;
780 }
781
782 =head2 quote_char
783
784 Set the quote_char for all existing storages
785
786 =cut
787
788 sub quote_char {
789   my $self = shift @_;
790   foreach my $source ($self->all_storages) {
791     $source->quote_char(@_);
792   }
793   return $self->master->quote_char;
794 }
795
796 =head2 name_sep
797
798 Set the name_sep for all existing storages
799
800 =cut
801
802 sub name_sep {
803   my $self = shift @_;
804   foreach my $source ($self->all_storages) {
805     $source->name_sep(@_);
806   }
807   return $self->master->name_sep;
808 }
809
810 =head2 set_schema
811
812 Set the schema object for all existing storages
813
814 =cut
815
816 sub set_schema {
817   my $self = shift @_;
818   foreach my $source ($self->all_storages) {
819     $source->set_schema(@_);
820   }
821 }
822
823 =head2 debug
824
825 set a debug flag across all storages
826
827 =cut
828
829 sub debug {
830   my $self = shift @_;
831   if(@_) {
832     foreach my $source ($self->all_storages) {
833       $source->debug(@_);
834     }
835   }
836   return $self->master->debug;
837 }
838
839 =head2 debugobj
840
841 set a debug object
842
843 =cut
844
845 sub debugobj {
846   my $self = shift @_;
847   return $self->master->debugobj(@_);
848 }
849
850 =head2 debugfh
851
852 set a debugfh object
853
854 =cut
855
856 sub debugfh {
857   my $self = shift @_;
858   return $self->master->debugfh(@_);
859 }
860
861 =head2 debugcb
862
863 set a debug callback
864
865 =cut
866
867 sub debugcb {
868   my $self = shift @_;
869   return $self->master->debugcb(@_);
870 }
871
872 =head2 disconnect
873
874 disconnect everything
875
876 =cut
877
878 sub disconnect {
879   my $self = shift @_;
880   foreach my $source ($self->all_storages) {
881     $source->disconnect(@_);
882   }
883 }
884
885 =head2 cursor_class
886
887 set cursor class on all storages, or return master's
888
889 =cut
890
891 sub cursor_class {
892   my ($self, $cursor_class) = @_;
893
894   if ($cursor_class) {
895     $_->cursor_class($cursor_class) for $self->all_storages;
896   }
897   $self->master->cursor_class;
898 }
899
900 =head2 cursor
901
902 set cursor class on all storages, or return master's, alias for L</cursor_class>
903 above.
904
905 =cut
906
907 sub cursor {
908   my ($self, $cursor_class) = @_;
909
910   if ($cursor_class) {
911     $_->cursor($cursor_class) for $self->all_storages;
912   }
913   $self->master->cursor;
914 }
915
916 =head2 unsafe
917
918 sets the L<DBIx::Class::Storage::DBI/unsafe> option on all storages or returns
919 master's current setting
920
921 =cut
922
923 sub unsafe {
924   my $self = shift;
925
926   if (@_) {
927     $_->unsafe(@_) for $self->all_storages;
928   }
929
930   return $self->master->unsafe;
931 }
932
933 =head2 disable_sth_caching
934
935 sets the L<DBIx::Class::Storage::DBI/disable_sth_caching> option on all storages
936 or returns master's current setting
937
938 =cut
939
940 sub disable_sth_caching {
941   my $self = shift;
942
943   if (@_) {
944     $_->disable_sth_caching(@_) for $self->all_storages;
945   }
946
947   return $self->master->disable_sth_caching;
948 }
949
950 =head2 lag_behind_master
951
952 returns the highest Replicant L<DBIx::Class::Storage::DBI/lag_behind_master>
953 setting
954
955 =cut
956
957 sub lag_behind_master {
958   my $self = shift;
959
960   return max map $_->lag_behind_master, $self->replicants;
961 }
962
963 =head2 is_replicating
964
965 returns true if all replicants return true for
966 L<DBIx::Class::Storage::DBI/is_replicating>
967
968 =cut
969
970 sub is_replicating {
971   my $self = shift;
972
973   return (grep $_->is_replicating, $self->replicants) == ($self->replicants);
974 }
975
976 =head2 connect_call_datetime_setup
977
978 calls L<DBIx::Class::Storage::DBI/connect_call_datetime_setup> for all storages
979
980 =cut
981
982 sub connect_call_datetime_setup {
983   my $self = shift;
984   $_->connect_call_datetime_setup for $self->all_storages;
985 }
986
987 sub _populate_dbh {
988   my $self = shift;
989   $_->_populate_dbh for $self->all_storages;
990 }
991
992 sub _connect {
993   my $self = shift;
994   $_->_connect for $self->all_storages;
995 }
996
997 sub _rebless {
998   my $self = shift;
999   $_->_rebless for $self->all_storages;
1000 }
1001
1002 sub _determine_driver {
1003   my $self = shift;
1004   $_->_determine_driver for $self->all_storages;
1005 }
1006
1007 sub _driver_determined {
1008   my $self = shift;
1009
1010   if (@_) {
1011     $_->_driver_determined(@_) for $self->all_storages;
1012   }
1013
1014   return $self->master->_driver_determined;
1015 }
1016
1017 sub _init {
1018   my $self = shift;
1019
1020   $_->_init for $self->all_storages;
1021 }
1022
1023 sub _run_connection_actions {
1024   my $self = shift;
1025
1026   $_->_run_connection_actions for $self->all_storages;
1027 }
1028
1029 sub _do_connection_actions {
1030   my $self = shift;
1031
1032   if (@_) {
1033     $_->_do_connection_actions(@_) for $self->all_storages;
1034   }
1035 }
1036
1037 sub connect_call_do_sql {
1038   my $self = shift;
1039   $_->connect_call_do_sql(@_) for $self->all_storages;
1040 }
1041
1042 sub disconnect_call_do_sql {
1043   my $self = shift;
1044   $_->disconnect_call_do_sql(@_) for $self->all_storages;
1045 }
1046
1047 sub _seems_connected {
1048   my $self = shift;
1049
1050   return min map $_->_seems_connected, $self->all_storages;
1051 }
1052
1053 sub _ping {
1054   my $self = shift;
1055
1056   return min map $_->_ping, $self->all_storages;
1057 }
1058
1059 # not using the normalized_version, because we want to preserve
1060 # version numbers much longer than the conventional xxx.yyyzzz
1061 my $numify_ver = sub {
1062   my $ver = shift;
1063   my @numparts = split /\D+/, $ver;
1064   my $format = '%d.' . (join '', ('%06d') x (@numparts - 1));
1065
1066   return sprintf $format, @numparts;
1067 };
1068 sub _server_info {
1069   my $self = shift;
1070
1071   if (not $self->_dbh_details->{info}) {
1072     $self->_dbh_details->{info} = (
1073       reduce { $a->[0] < $b->[0] ? $a : $b }
1074       map [ $numify_ver->($_->{dbms_version}), $_ ],
1075       map $_->_server_info, $self->all_storages
1076     )->[1];
1077   }
1078
1079   return $self->next::method;
1080 }
1081
1082 sub _get_server_version {
1083   my $self = shift;
1084
1085   return $self->_server_info->{dbms_version};
1086 }
1087
1088 =head1 GOTCHAS
1089
1090 Due to the fact that replicants can lag behind a master, you must take care to
1091 make sure you use one of the methods to force read queries to a master should
1092 you need realtime data integrity.  For example, if you insert a row, and then
1093 immediately re-read it from the database (say, by doing $row->discard_changes)
1094 or you insert a row and then immediately build a query that expects that row
1095 to be an item, you should force the master to handle reads.  Otherwise, due to
1096 the lag, there is no certainty your data will be in the expected state.
1097
1098 For data integrity, all transactions automatically use the master storage for
1099 all read and write queries.  Using a transaction is the preferred and recommended
1100 method to force the master to handle all read queries.
1101
1102 Otherwise, you can force a single query to use the master with the 'force_pool'
1103 attribute:
1104
1105   my $row = $resultset->search(undef, {force_pool=>'master'})->find($pk);
1106
1107 This attribute will safely be ignore by non replicated storages, so you can use
1108 the same code for both types of systems.
1109
1110 Lastly, you can use the L</execute_reliably> method, which works very much like
1111 a transaction.
1112
1113 For debugging, you can turn replication on/off with the methods L</set_reliable_storage>
1114 and L</set_balanced_storage>, however this operates at a global level and is not
1115 suitable if you have a shared Schema object being used by multiple processes,
1116 such as on a web application server.  You can get around this limitation by
1117 using the Schema clone method.
1118
1119   my $new_schema = $schema->clone;
1120   $new_schema->set_reliable_storage;
1121
1122   ## $new_schema will use only the Master storage for all reads/writes while
1123   ## the $schema object will use replicated storage.
1124
1125 =head1 AUTHOR
1126
1127   John Napiorkowski <john.napiorkowski@takkle.com>
1128
1129 Based on code originated by:
1130
1131   Norbert Csongrádi <bert@cpan.org>
1132   Peter Siklósi <einon@einon.hu>
1133
1134 =head1 LICENSE
1135
1136 You may distribute this code under the same terms as Perl itself.
1137
1138 =cut
1139
1140 __PACKAGE__->meta->make_immutable;
1141
1142 1;