]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/Driver/Pg.pm
fixing search_fts and adding param parsing to the "search*" interface
[working/Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Storage / Driver / Pg.pm
1
2 { # The driver package itself just needs a db_Main method (or db_Slaves if
3   #Class::DBI::Replication is in use) for Class::DBI to call.
4   #
5   # Any other fixups can go in here too... Also, the drivers should subclass the
6   # DBI driver that they are wrapping, or provide a 'quote()' method that calls
7   # the DBD::xxx::quote() method on FTI's behalf.
8   #
9   # The dirver MUST be a subclass of Class::DBI(::Replication) and
10   # OpenILS::Application::Storage.
11   #-------------------------------------------------------------------------------
12         package OpenILS::Application::Storage::Driver::Pg;
13         use OpenILS::Application::Storage::Driver::Pg::cdbi;
14         use OpenILS::Application::Storage::Driver::Pg::fts;
15         use OpenILS::Application::Storage::Driver::Pg::storage;
16         use OpenILS::Application::Storage::Driver::Pg::dbi;
17         use Class::DBI;
18         use base qw/Class::DBI OpenILS::Application::Storage/;
19         use DBI;
20         use OpenSRF::EX qw/:try/;
21         use OpenSRF::DomainObject::oilsResponse;
22         use OpenSRF::Utils::Logger qw/:level/;
23         my $log = 'OpenSRF::Utils::Logger';
24
25         __PACKAGE__->set_sql( retrieve_limited => 'SELECT * FROM __TABLE__ ORDER BY id LIMIT ?' );
26         __PACKAGE__->set_sql( copy_start => 'COPY %s (%s) FROM STDIN;' );
27         __PACKAGE__->set_sql( copy_end => '\.' );
28
29         my $master_db;
30         my @slave_dbs;
31         my $_db_params;
32         sub child_init {
33                 my $self = shift;
34                 $_db_params = shift;
35
36                 $log->debug("Running child_init inside ".__PACKAGE__, INTERNAL);
37
38                 $_db_params = [ $_db_params ] unless (ref($_db_params) eq 'ARRAY');
39
40                 my %attrs = (   %{$self->_default_attributes},
41                                 RootClass => 'DBIx::ContextualFetch',
42                                 ShowErrorStatement => 1,
43                                 RaiseError => 1,
44                                 AutoCommit => 1,
45                                 PrintError => 1,
46                                 Taint => 1,
47                                 pg_enable_utf8 => 1,
48                                 FetchHashKeyName => 'NAME_lc',
49                                 ChopBlanks => 1,
50                 );
51
52                 my $master = shift @$_db_params;
53                 $master_db = DBI->connect("dbi:Pg:host=$$master{host};dbname=$$master{db}",$$master{user},$$master{pw}, \%attrs);
54                 $master_db->do("SET NAMES '$$master{client_encoding}';") if ($$master{client_encoding});
55
56                 $log->debug("Connected to MASTER db '$$master{db} at $$master{host}", INFO);
57                 
58                 for my $db (@$_db_params) {
59                         push @slave_dbs, DBI->connect("dbi:Pg:host=$$db{host};dbname=$$db{db}",$$db{user},$$db{pw}, \%attrs);
60                         $slave_dbs[-1]->do("SET NAMES '$$db{client_encoding}';") if ($$master{client_encoding});
61
62                         $log->debug("Connected to MASTER db '$$master{db} at $$master{host}", INFO);
63                 }
64
65                 $log->debug("All is well on the western front", INTERNAL);
66         }
67
68         sub db_Main {
69                 my $self = shift;
70                 return $master_db if ($self->current_xact_session);
71                 return $master_db unless (@slave_dbs);
72                 return ($master_db, @slave_dbs)[rand(scalar(@slave_dbs))];
73         }
74
75         sub quote {
76                 my $self = shift;
77                 return $self->db_Main->quote(@_)
78         }
79
80 #       sub tsearch2_trigger {
81 #               my $self = shift;
82 #               return unless ($self->value);
83 #               $self->index_vector(
84 #                       $self->db_Slaves->selectrow_array(
85 #                               "SELECT to_tsvector('default',?);",
86 #                               {},
87 #                               $self->value
88 #                       )
89 #               );
90 #       }
91
92         my $_xact_session;
93
94         sub current_xact_session {
95                 my $self = shift;
96                 if (defined($_xact_session)) {
97                         return $_xact_session;
98                 }
99                 return undef;
100         }
101
102         sub current_xact_is_auto {
103                 my $self = shift;
104                 my $auto = shift;
105                 if (defined($_xact_session) and ref($_xact_session)) {
106                         if (defined $auto) {
107                                 $_xact_session->session_data(autocommit => $auto);
108                         }
109                         return $_xact_session->session_data('autocommit'); 
110                 }
111         }
112
113         sub current_xact_id {
114                 my $self = shift;
115                 if (defined($_xact_session) and ref($_xact_session)) {
116                         return $_xact_session->session_id;
117                 }
118                 return undef;
119         }
120
121         sub set_xact_session {
122                 my $self = shift;
123                 my $ses = shift;
124                 if (!defined($ses)) {
125                         return undef;
126                 }
127                 $_xact_session = $ses;
128                 return $_xact_session;
129         }
130
131         sub unset_xact_session {
132                 my $self = shift;
133                 my $ses = $_xact_session;
134                 undef $_xact_session;
135                 return $ses;
136         }
137
138 }
139
140 1;