/[cvs]/nfo/perl/libs/Data/Storage/Handler/DBI.pm
ViewVC logotype

Diff of /nfo/perl/libs/Data/Storage/Handler/DBI.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by joko, Sun Dec 1 07:09:09 2002 UTC revision 1.13 by joko, Tue Apr 8 23:06:45 2003 UTC
# Line 3  Line 3 
3  #  $Id$  #  $Id$
4  #  #
5  #  $Log$  #  $Log$
6    #  Revision 1.13  2003/04/08 23:06:45  joko
7    #  renamed core database helper functions
8    #
9    #  Revision 1.12  2003/01/30 22:28:21  joko
10    #  + implemented new concrete methods
11    #
12    #  Revision 1.11  2002/12/19 16:31:05  joko
13    #  + sub dropDb
14    #  + sub rebuildDb
15    #
16    #  Revision 1.10  2002/12/15 02:02:22  joko
17    #  + fixed logging-message
18    #
19    #  Revision 1.9  2002/12/05 07:58:20  joko
20    #  + now using Tie::SecureHash as a base for the COREHANDLE
21    #  + former public COREHANDLE becomes private _COREHANDLE now
22    #
23    #  Revision 1.8  2002/12/01 22:20:43  joko
24    #  + sub createDb (from Storage.pm)
25    #
26  #  Revision 1.7  2002/12/01 07:09:09  joko  #  Revision 1.7  2002/12/01 07:09:09  joko
27  #  + sub getListFiltered (dummy redirecting to getListUnfiltered)  #  + sub getListFiltered (dummy redirecting to getListUnfiltered)
28  #  #
# Line 37  use warnings; Line 57  use warnings;
57    
58  use base ("Data::Storage::Handler::Abstract");  use base ("Data::Storage::Handler::Abstract");
59    
60    
61  use DBI;  use DBI;
62  use Data::Dumper;  use Data::Dumper;
63  use libdb qw( getDbNameByDsn hash2Sql );  use shortcuts::db qw( hash2sql dsn2dbname );
64  use Data::Storage::Result::DBI;  use Data::Storage::Result::DBI;
65    
66    
67  # get logger instance  # get logger instance
68  my $logger = Log::Dispatch::Config->instance;  my $logger = Log::Dispatch::Config->instance;
69    
# Line 71  sub connect { Line 93  sub connect {
93          #use Data::Dumper; print Dumper($self->{dbi});          #use Data::Dumper; print Dumper($self->{dbi});
94                    
95          eval {          eval {
96            $self->{COREHANDLE} = DBI->connect( $dsn, '', '', $self->{locator}->{dbi} );            $self->{_COREHANDLE} = DBI->connect( $dsn, '', '', $self->{locator}->{dbi} );
97            if (!$self->{COREHANDLE}) {            if (!$self->{_COREHANDLE}) {
98              $logger->warning( __PACKAGE__ . "->connect failed: " . DBI::errstr );              $logger->warning( __PACKAGE__ . "->connect failed: " . DBI::errstr );
99              return;              return;
100            }            }
# Line 94  sub configureCOREHANDLE { Line 116  sub configureCOREHANDLE {
116    
117    $logger->debug( __PACKAGE__ . "->configureCOREHANDLE" );    $logger->debug( __PACKAGE__ . "->configureCOREHANDLE" );
118    
119      return if !$self->{_COREHANDLE};
120    
121    # apply configured modifications to DBI-handle    # apply configured modifications to DBI-handle
122      if (exists $self->{locator}->{dbi}->{trace_level} && exists $self->{locator}->{dbi}->{trace_file}) {      if (exists $self->{locator}->{dbi}->{trace_level} && exists $self->{locator}->{dbi}->{trace_file}) {
123        $self->{COREHANDLE}->trace($self->{locator}->{dbi}->{trace_level}, $self->{locator}->{dbi}->{trace_file});        $self->{_COREHANDLE}->trace($self->{locator}->{dbi}->{trace_level}, $self->{locator}->{dbi}->{trace_file});
124      }      }
125      if (exists $self->{locator}->{dbi}->{RaiseError}) {      if (exists $self->{locator}->{dbi}->{RaiseError}) {
126        $self->{COREHANDLE}->{RaiseError} = $self->{locator}->{dbi}->{RaiseError};        $self->{_COREHANDLE}->{RaiseError} = $self->{locator}->{dbi}->{RaiseError};
127      }      }
128      if (exists $self->{locator}->{dbi}->{PrintError}) {      if (exists $self->{locator}->{dbi}->{PrintError}) {
129        $self->{COREHANDLE}->{PrintError} = $self->{locator}->{dbi}->{PrintError};        $self->{_COREHANDLE}->{PrintError} = $self->{locator}->{dbi}->{PrintError};
130      }      }
131      if (exists $self->{locator}->{dbi}->{HandleError}) {      if (exists $self->{locator}->{dbi}->{HandleError}) {
132        $self->{COREHANDLE}->{HandleError} = $self->{locator}->{dbi}->{HandleError};        $self->{_COREHANDLE}->{HandleError} = $self->{locator}->{dbi}->{HandleError};
133      }      }
134    
135  }  }
# Line 116  sub _sendSql { Line 140  sub _sendSql {
140        
141    # two-level handling for implicit connect:    # two-level handling for implicit connect:
142    # if there's no corehandle ...    # if there's no corehandle ...
143    if (!$self->{COREHANDLE}) {    if (!$self->{_COREHANDLE}) {
144      # ... try to connect, but ...      # ... try to connect, but ...
145      $self->connect();      $self->connect();
146      # ... if this still fails, there's something wrong probably, so we won't continue      # ... if this still fails, there's something wrong probably, so we won't continue
147      if (!$self->{COREHANDLE}) {      if (!$self->{_COREHANDLE}) {
148        return;        return;
149      }      }
150    }    }
151        
152    #print "prepare sql: $sql\n";    #print "prepare sql: $sql\n";
153        
154    my $sth = $self->{COREHANDLE}->prepare($sql);    my $sth = $self->{_COREHANDLE}->prepare($sql);
155    $sth->execute();    $sth->execute();
156    return $sth;    return $sth;
157  }  }
# Line 146  sub getChildNodes { Line 170  sub getChildNodes {
170    my $self = shift;    my $self = shift;
171    my @nodes;    my @nodes;
172    $logger->debug( __PACKAGE__ . "->getChildNodes()" );    $logger->debug( __PACKAGE__ . "->getChildNodes()" );
173      my $locator = $self->{locator};
174      #print Dumper($locator); exit;
175    if (my $result = $self->sendCommand( 'SHOW TABLES;' ) ) {    if (my $result = $self->sendCommand( 'SHOW TABLES;' ) ) {
176      my $dbname = getDbNameByDsn($self->{locator}->{dbi}->{dsn});      my $dbname = dsn2dbname($self->{locator}->{dbi}->{dsn});
177      my $key = "Tables_in_$dbname";      my $key = "Tables_in_$dbname";
178      while ( my $row = $result->getNextEntry() ) {      while ( my $row = $result->getNextEntry() ) {
179        push @nodes, $row->{$key};        push @nodes, $row->{$key};
# Line 172  sub getListUnfiltered { Line 198  sub getListUnfiltered {
198  sub sendQuery {  sub sendQuery {
199    my $self = shift;    my $self = shift;
200    my $query = shift;    my $query = shift;
201    
202      $logger->debug( __PACKAGE__ . "->sendQuery" );
203    
204    #my $sql = "SELECT cs FROM $self->{metainfo}->{$descent}->{node} WHERE $self->{metainfo}->{$descent}->{IdentProvider}->{arg}='$self->{entry}->{source}->{ident}';";    #my $sql = "SELECT cs FROM $self->{metainfo}->{$descent}->{node} WHERE $self->{metainfo}->{$descent}->{IdentProvider}->{arg}='$self->{entry}->{source}->{ident}';";
205    #my $result = $self->{metainfo}->{$descent}->{storage}->sendCommand($sql);    #my $result = $self->{metainfo}->{$descent}->{storage}->sendCommand($sql);
206    my @crits;    my @crits;
# Line 184  sub sendQuery { Line 213  sub sendQuery {
213    map { $subnodes->{$_}++ } @{$query->{subnodes}};    map { $subnodes->{$_}++ } @{$query->{subnodes}};
214    # HACK: this is hardcoded ;(    expand possibilities!    # HACK: this is hardcoded ;(    expand possibilities!
215    my $crit = join(' AND ', @crits);    my $crit = join(' AND ', @crits);
216    my $sql = hash2Sql($query->{node}, $subnodes, 'SELECT', $crit);    my $sql = hash2sql($query->{node}, $subnodes, 'SELECT', $crit);
217    return $self->sendCommand($sql);    return $self->sendCommand($sql);
218  }  }
219    
220  sub eraseAll {  sub eraseAll {
221    my $self = shift;    my $self = shift;
222    my $classname = shift;    my $classname = shift;
223      $logger->debug( __PACKAGE__ . "->eraseAll" );
224    my $sql = "DELETE FROM $classname";    my $sql = "DELETE FROM $classname";
225    $self->sendCommand($sql);    $self->sendCommand($sql);
226  }  }
# Line 202  sub getListFiltered { Line 232  sub getListFiltered {
232    return $self->getListUnfiltered($nodename);    return $self->getListUnfiltered($nodename);
233  }  }
234    
235    # TODO: do this via a parametrized "$self->connect(<connect just to database server - don't select database>)"
236    sub createDb {
237      
238      my $self = shift;
239      
240      # get dsn from Data::Storage::Locator instance
241      my $dsn = $self->{locator}->{dbi}->{dsn};
242    
243      $logger->debug( __PACKAGE__ .  "->createDb( dsn $dsn )" );
244    
245      # remove database setting from dsn-string
246      $dsn =~ s/database=(.+?);//;
247      
248      # remember extracted database name to know what actually to create right now
249      my $database_name = $1;
250    
251      # flag to indicate goodness
252      my $ok;
253      
254      # connect to database server - don't select/use any specific database
255      #if ( my $dbh = DBI->connect($dsn, '', '', { PrintError => 0 } ) ) {
256      if ( my $dbh = DBI->connect($dsn, '', '', $self->{locator}->{dbi} ) ) {
257    
258        if ($database_name) {
259          if ($dbh->do("CREATE DATABASE $database_name")) {
260            $ok = 1;
261          }
262        }
263    
264        $dbh->disconnect();
265    
266      }
267      
268      return $ok;
269      
270    }
271    
272    sub getCOREHANDLE2 {
273      my $self = shift;
274      return $self->{_COREHANDLE};
275    }
276    
277    sub dropDb {
278      my $self = shift;
279      my $dsn = $self->{locator}->{dbi}->{dsn};
280    
281      $logger->debug( __PACKAGE__ .  "->dropDb( dsn $dsn )" );
282    
283      $dsn =~ s/database=(.+?);//;
284      my $database_name = $1;
285    
286      my $ok;
287      
288      if ( my $dbh = DBI->connect($dsn, '', '', {
289                                                          PrintError => 0,
290                                                          } ) ) {
291        if ($database_name) {
292          if ($dbh->do("DROP DATABASE $database_name;")) {
293            $ok = 1;
294          }
295        }
296    
297        $dbh->disconnect();
298    
299      }
300      
301      return $ok;
302    }
303    
304    sub rebuildDb {
305      my $self = shift;
306      $logger->info( __PACKAGE__ . "->rebuildDb()" );
307      my @results;
308    
309      # sum up results (bool (0/1)) in array
310      #push @results, $self->retreatSchema();
311      push @results, $self->dropDb();
312      push @results, $self->createDb();
313      #push @results, $self->deploySchema();
314    
315      # scan array for "bad ones"
316      my $res = 1;
317      map {
318        $res = 0 if (!$_);
319      } @results;
320      
321      return $res;
322    }
323    
324    sub testAvailability {
325      my $self = shift;
326      my $status = $self->testDsn();
327      $self->{locator}->{status}->{available} = $status;
328      return $status;
329    }
330    
331    sub testDsn {
332      my $self = shift;
333      my $dsn = $self->{locator}->{dbi}->{dsn};
334      my $result;
335      if ( my $dbh = DBI->connect($dsn, '', '', {
336                                                          PrintError => 0,
337                                                          } ) ) {
338        
339        # TODO: REVIEW
340        $dbh->disconnect();
341        
342        return 1;
343      } else {
344        $logger->warning( __PACKAGE__ .  "[$self->{locator}->{type}]" . "->testDsn(): " . "DBI-error: " . $DBI::errstr );
345      }
346    }
347    
348  1;  1;
349    __END__

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.13

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed