1 package Koha
::Database
;
3 # Copyright 2013 Catalyst IT
4 # chrisc@catalyst.net.nz
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 my $database = Koha::Database->new();
29 my $schema = $database->schema();
39 use base
qw(Class::Accessor);
41 __PACKAGE__
->mk_accessors(qw( ));
44 # Internal helper function (not a method!). This creates a new
45 # database connection from the data given in the current context, and
48 my $context = C4
::Context
->new();
49 my $db_driver = C4
::Context
::db_scheme2dbi
($context->config("db_scheme"));
51 my $db_name = $context->config("database");
52 my $db_host = $context->config("hostname");
53 my $db_port = $context->config("port") || '';
54 my $db_user = $context->config("user");
55 my $db_passwd = $context->config("pass");
56 my $schema = Koha
::Schema
->connect(
57 "DBI:$db_driver:dbname=$db_name;host=$db_host;port=$db_port",
58 $db_user, $db_passwd );
64 $schema = $database->schema;
66 Returns a database handle connected to the Koha database for the
67 current context. If no connection has yet been made, this method
68 creates one, and connects to the database.
70 This database handle is cached for future use: if you call
71 C<$database-E<gt>schema> twice, you will get the same handle both
72 times. If you need a second database handle, use C<&new_schema> and
73 possibly C<&set_schema>.
80 if ( defined( $self->{"schema"} ) && $self->{"schema"}->storage->connected() ) {
81 return $self->{"schema"};
84 # No database handle or it died . Create one.
85 $self->{"schema"} = &_new_schema
();
87 return $self->{"schema"};
92 $schema = $database->new_schema;
94 Creates a new connection to the Koha database for the current context,
95 and returns the database handle (a C<DBI::db> object).
97 The handle is not saved anywhere: this method is strictly a
98 convenience function; the point is that it knows which database to
99 connect to so that the caller doesn't have to know.
107 return &_new_schema
();
112 $my_schema = $database->new_schema;
113 $database->set_schema($my_schema);
115 $database->restore_schema;
117 C<&set_schema> and C<&restore_schema> work in a manner analogous to
118 C<&set_context> and C<&restore_context>.
120 C<&set_schema> saves the current database handle on a stack, then sets
121 the current database handle to C<$my_schema>.
123 C<$my_schema> is assumed to be a good database handle.
129 my $new_schema = shift;
131 # Save the current database handle on the handle stack.
132 # We assume that $new_schema is all good: if the caller wants to
133 # screw himself by passing an invalid handle, that's fine by
135 push @
{ $self->{"schema_stack"} }, $self->{"schema"};
136 $self->{"schema"} = $new_schema;
139 =head2 restore_schema
141 $database->restore_schema;
143 Restores the database handle saved by an earlier call to
144 C<$database-E<gt>set_schema>.
151 if ( $#{ $self->{"schema_stack"} } < 0 ) {
154 die "SCHEMA stack underflow";
157 # Pop the old database handle and set it.
158 $self->{"schema"} = pop @
{ $self->{"schema_stack"} };
160 # FIXME - If it is determined that restore_context should
161 # return something, then this function should, too.
171 Chris Cormack, E<lt>chrisc@catalyst.net.nzE<gt>