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

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

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

revision 1.1 by cvsjoko, Thu Oct 10 03:43:12 2002 UTC revision 1.19 by joko, Tue Feb 18 19:22:11 2003 UTC
# Line 1  Line 1 
1  #################################  ## ------------------------------------------------------------------------
2  #  ##
3  #  $Id$  ##    $Id$
4  #  ##
5  #  $Log$  ##    Copyright (c) 2002  Andreas Motl <andreas.motl@ilo.de>
6  #  Revision 1.1  2002/10/10 03:43:12  cvsjoko  ##
7  #  + new  ##    See COPYRIGHT section in pod text below for usage and distribution rights.
8  #  ##
9  #  ## ------------------------------------------------------------------------
10  #################################  ##
11    ##  $Log$
12    ##  Revision 1.19  2003/02/18 19:22:11  joko
13    ##  + fixed logging
14    ##
15    ##  Revision 1.18  2003/01/30 22:12:17  joko
16    ##  - removed/refactored old code: ->Data::Storage::Handler::Tangram|DBI
17    ##
18    ##  Revision 1.17  2003/01/30 21:42:22  joko
19    ##  + minor update: renamed method
20    ##
21    ##  Revision 1.16  2003/01/20 16:52:13  joko
22    ##  + now using 'DesignPattern::Object' to create a new 'Data::Storage::Handler::Xyz' on demand - before we did this in a hand-rolled fashion
23    ##
24    ##  Revision 1.15  2003/01/19 03:12:59  joko
25    ##  + modified header
26    ##  - removed pod-documentation - now in 'Storage.pod'
27    ##
28    ##  Revision 1.14  2002/12/19 16:27:59  joko
29    ##  - moved 'sub dropDb' to Data::Storage::Handler::DBI
30    ##
31    ##  Revision 1.13  2002/12/17 21:54:12  joko
32    ##  + feature when using Tangram:
33    ##    + what? each object created should delivered with a globally(!?) unique identifier (GUID) besides the native tangram object id (OID)
34    ##        + patched Tangram::Storage (jonen)
35    ##        + enhanced Data::Storage::Schema::Tangram (joko)
36    ##        + enhanced Data::Storage::Handler::Tangram 'sub getObjectByGuid' (jonen)
37    ##    + how?
38    ##        + each concrete (non-abstract) class gets injected with an additional field/property called 'guid' - this is done (dynamically) on schema level
39    ##        + this property ('guid') gets filled on object creation/insertion from 'sub Tangram::Storage::_insert' using Data::UUID from CPAN
40    ##        + (as for now) this property can get accessed by calling 'getObjectByGuid' on the already known storage-handle used throughout the application
41    ##
42    ##  Revision 1.12  2002/12/12 02:50:15  joko
43    ##  + this now (unfortunately) needs DBI for some helper functions
44    ##  + TODO: these have to be refactored to another scope! (soon!)
45    ##
46    ##  Revision 1.11  2002/12/11 06:53:19  joko
47    ##  + updated pod
48    ##
49    ##  Revision 1.10  2002/12/07 03:37:23  joko
50    ##  + updated pod
51    ##
52    ##  Revision 1.9  2002/12/01 22:15:45  joko
53    ##  - sub createDb: moved to handler
54    ##
55    ##  Revision 1.8  2002/11/29 04:48:23  joko
56    ##  + updated pod
57    ##
58    ##  Revision 1.7  2002/11/17 06:07:18  joko
59    ##  + creating the handler is easier than proposed first - for now :-)
60    ##  + sub testAvailability
61    ##
62    ##  Revision 1.6  2002/11/09 01:04:58  joko
63    ##  + updated pod
64    ##
65    ##  Revision 1.5  2002/10/29 19:24:18  joko
66    ##  - reduced logging
67    ##  + added some pod
68    ##
69    ##  Revision 1.4  2002/10/27 18:35:07  joko
70    ##  + added pod
71    ##
72    ##  Revision 1.3  2002/10/25 11:40:37  joko
73    ##  + enhanced robustness
74    ##  + more logging for debug-levels
75    ##  + sub dropDb
76    ##
77    ##  Revision 1.2  2002/10/17 00:04:29  joko
78    ##  + sub createDb
79    ##  + sub isConnected
80    ##  + bugfixes regarding "deep recursion" stuff
81    ##
82    ##  Revision 1.1  2002/10/10 03:43:12  cvsjoko
83    ##  + new
84    ## ------------------------------------------------------------------------
85    
86    
87    BEGIN {
88      $Data::Storage::VERSION = 0.03;
89    }
90    
91  package Data::Storage;  package Data::Storage;
92    
93  use strict;  use strict;
94  use warnings;  use warnings;
95    
96    use Data::Dumper;
97    # FIXME: wipe out!
98    use DBI;
99    
100  use Data::Storage::Locator;  use Data::Storage::Locator;
101  use Data::Storage::Handler::DBI;  use DesignPattern::Object;
102  use Data::Storage::Handler::Tangram;  
103    
104    # TODO: actually implement level (integrate with Log::Dispatch)
105    my $TRACELEVEL = 0;
106    
107  # get logger instance  # get logger instance
108  my $logger = Log::Dispatch::Config->instance;  my $logger = Log::Dispatch::Config->instance;
# Line 25  sub new { Line 111  sub new {
111    my $invocant = shift;    my $invocant = shift;
112    my $class = ref($invocant) || $invocant;    my $class = ref($invocant) || $invocant;
113    #my @args = normalizeArgs(@_);    #my @args = normalizeArgs(@_);
114      
115    my $arg_locator = shift;    my $arg_locator = shift;
116    my $arg_options = shift;    my $arg_options = shift;
117      #my @args = @_;
118      #@args ||= ();
119    
120      if (!$arg_locator) {
121        $logger->critical( __PACKAGE__ . "->new: No locator passed in!" );
122        return;
123      }
124        
125      #print Dumper($arg_locator);
126    
127    #my $self = { STORAGEHANDLE => undef, @_ };    #my $self = { STORAGEHANDLE => undef, @_ };
128    my $self = { STORAGEHANDLE => undef, locator => $arg_locator, options => $arg_options };    my $self = { STORAGEHANDLE => undef, locator => $arg_locator, options => $arg_options };
129    $logger->debug( __PACKAGE__ . "[$self->{locator}->{type}]" . "->new(@_)" );    #$logger->debug( __PACKAGE__ . "[$self->{locator}->{type}]" . "->new(@_)" );
130      $logger->debug( __PACKAGE__ . "[$arg_locator->{type}]" . "->new()" );
131    return bless $self, $class;    return bless $self, $class;
132  }  }
133    
134  sub AUTOLOAD {  sub AUTOLOAD {
135        
136      # since this is a core function acting as dispatcher to $self->{STORAGEHANDLE},
137      # some sophisticated handling and filtering is needed to avoid things like
138      #     - Deep recursion on subroutine "Data::Storage::AUTOLOAD"
139      #     - Deep recursion on subroutine "Data::Storage::Handler::Abstract::AUTOLOAD"
140      #     - Deep recursion on anonymous subroutine at [...]
141      # we also might filter log messages caused by logging to itself in "advanced logging of AUTOLOAD calls"
142      
143    my $self = shift;    my $self = shift;
144    our $AUTOLOAD;    our $AUTOLOAD;
145        
# Line 46  sub AUTOLOAD { Line 149  sub AUTOLOAD {
149    my $method = $AUTOLOAD;    my $method = $AUTOLOAD;
150    $method =~ s/^.*:://;    $method =~ s/^.*:://;
151    
152    #$logger->debug( __PACKAGE__ . "[$self->{locator}->{type}]" . "->" . $method . "(@_)" . " (AUTOLOAD)" );    # advanced logging of AUTOLOAD calls ...
153      # ... nice but do it only when TRACING (TODO) is enabled
154          my $logstring = "";
155          $logstring .= __PACKAGE__ . "[$self->{locator}->{type}]" . "->" . $method;
156          #print "count: ", $#_, "\n";
157          #$logstring .= Dumper(@_) if ($#_ != -1);
158          my $tabcount = int( (80 - length($logstring)) / 10 );
159          $logstring .= "\t" x $tabcount . "(AUTOLOAD)";
160          # TODO: only ok if logstring doesn't contain
161          #            e.g. "Data::Storage[Tangram]->insert(SystemEvent=HASH(0x5c0034c))          (AUTOLOAD)"
162          # but that would be _way_ too specific as long as we don't have an abstract handler for this  ;)
163        if ($TRACELEVEL) {
164          $logger->debug( $logstring );
165          #print join('; ', @_);
166        }
167        
168      # filtering AUTOLOAD calls and first-time-touch of the actual storage impl
169    if ($self->_filter_AUTOLOAD($method)) {    if ($self->_filter_AUTOLOAD($method)) {
170      $self->_accessStorage();      #print "=== FILTER!", "\n";
171      $self->{STORAGEHANDLE}->$method(@_);      $self->_accessStorageHandle();
172        if ($self->{STORAGEHANDLE}) {
173          return $self->{STORAGEHANDLE}->$method(@_);
174        } else {
175          $logger->critical( __PACKAGE__ . "->AUTOLOAD: ERROR: " . $logstring );
176          return;
177        }
178    }    }
179        
180  }  }
# Line 67  sub _filter_AUTOLOAD { Line 191  sub _filter_AUTOLOAD {
191  }  }
192    
193    
194  sub normalizeArgs {  sub _accessStorageHandle {
195    my %args = @_;    my $self = shift;
196    if (!$args{dsn} && $args{meta}{dsn}) {    # TODO: to some tracelevel!
197      $args{dsn} = $args{meta}{dsn};    #print "=========== _accessStorage", "\n";
198      if ($TRACELEVEL) {
199        $logger->debug( __PACKAGE__ .  "[$self->{locator}->{type}]" . "->_accessStorageHandle()" );
200      }
201      if (!$self->{STORAGEHANDLE}) {
202        return $self->_createStorageHandle();
203    }    }
   my @result = %args;  
   return @result;  
204  }  }
205    
206  sub _accessStorage {  sub _createStorageHandle1 {
207    my $self = shift;    my $self = shift;
208    # TODO: to some tracelevel!    my $type = $self->{locator}->{type};
209    #$logger->debug( __PACKAGE__ .  "[$self->{type}]" . "->_accessStorage()" );    $logger->debug( __PACKAGE__ .  "[$type]" . "->_createStorageHandle()" );
210    if (!$self->{STORAGEHANDLE}) {  
211      $self->_createStorageHandle();    my $pkg = "Data::Storage::Handler::" . $type . "";
212      
213      # try to load perl module at runtime
214      my $evalstr = "use $pkg;";
215      eval($evalstr);
216      if ($@) {
217        $logger->error( __PACKAGE__ .  "[$type]" . "->_createStorageHandle(): $@" );
218        return;
219    }    }
220      
221      # build up some additional arguments to pass on
222      #my @args = %{$self->{locator}};
223      my @args = ();
224    
225      # - create new storage handle object
226      # - propagate arguments to handler
227      # - pass locator by reference to be able to store status- or meta-information in it
228      $self->{STORAGEHANDLE} = $pkg->new( locator => $self->{locator}, @args );
229    
230  }  }
231    
232  sub _createStorageHandle {  sub _createStorageHandle {
233    my $self = shift;    my $self = shift;
   
234    my $type = $self->{locator}->{type};    my $type = $self->{locator}->{type};
235    $logger->debug( __PACKAGE__ .  "[$type]" . "->_createStorageHandle()" );    $logger->debug( __PACKAGE__ .  "[$type]" . "->_createStorageHandle()" );
236    
237    #print Dumper($self);
238    #exit;
239    
240    my $pkg = "Data::Storage::Handler::" . $type . "";    my $pkg = "Data::Storage::Handler::" . $type . "";
241        
242    # propagate args to handler    # try to load perl module at runtime
243    # needs some more thoughts! (not only "dbi" to Tangram, when (in future) db is not more the common case)  =pod
244    if ($type eq 'DBI') {    my $evalstr = "use $pkg;";
245      #my @args = %{$self->{locator}->{dbi}};    eval($evalstr);
246      my @args = %{$self->{locator}};    if ($@) {
247      $self->{STORAGEHANDLE} = $pkg->new( @args );      $logger->error( __PACKAGE__ .  "[$type]" . "->_createStorageHandle(): $@" );
248    }      return;
   if ($type eq 'Tangram') {  
     #$self->{STORAGEHANDLE} = $pkg->new( dsn => $self->{locator}->{dbi}->{dsn} );  
     #my @args = %{$self->{locator}->{dbi}};  
     my @args = %{$self->{locator}};  
     $self->{STORAGEHANDLE} = $pkg->new( @args );  
     #$self->{STORAGEHANDLE_UNDERLYING} = $self->{STORAGEHANDLE}->getUnderlyingStorage();  
     #$self->{STORAGEHANDLE_UNDERLYING}->_configureCOREHANDLE();  
249    }    }
250        
251      # build up some additional arguments to pass on
252      #my @args = %{$self->{locator}};
253      my @args = ();
254    
255      # - create new storage handle object
256      # - propagate arguments to handler
257      # - pass locator by reference to be able to store status- or meta-information in it
258      $self->{STORAGEHANDLE} = $pkg->new( locator => $self->{locator}, @args );
259    =cut
260    
261      $self->{STORAGEHANDLE} = DesignPattern::Object->fromPackage( $pkg, locator => $self->{locator} );
262      return 1;
263    
264  }  }
265    
266  sub addLogDispatchHandler {  sub addLogDispatchHandler {
# Line 116  sub addLogDispatchHandler { Line 268  sub addLogDispatchHandler {
268        my $self = shift;        my $self = shift;
269        my $name = shift;        my $name = shift;
270        my $package = shift;        my $package = shift;
271        my $logger = shift;        my $logger1 = shift;
272        my $objectCreator = shift;        my $objectCreator = shift;
273                
274        #$logger->add( Log::Dispatch::Tangram->new( name => $name,        #$logger->add( Log::Dispatch::Tangram->new( name => $name,
# Line 140  sub addLogDispatchHandler { Line 292  sub addLogDispatchHandler {
292  }  }
293    
294  sub removeLogDispatchHandler {  sub removeLogDispatchHandler {
   
       my $self = shift;  
       my $name = shift;  
       my $logger = shift;  
   
       $logger->remove($name);  
   
 }  
   
 sub getDbName {  
295    my $self = shift;    my $self = shift;
296    my $dsn = $self->{locator}->{dbi}->{dsn};    my $name = shift;
297    $dsn =~ m/database=(.+?);/;    #my $logger = shift;
298    my $database_name = $1;    $logger->remove($name);
   return $database_name;  
299  }  }
300    
 sub testDsn {  
   my $self = shift;  
   my $dsn = $self->{locator}->{dbi}->{dsn};  
   my $result;  
   if ( my $dbh = DBI->connect($dsn, '', '', {  
                                                       PrintError => 0,  
                                                       } ) ) {  
     $dbh->disconnect();  
     return 1;  
   } else {  
     $logger->error( __PACKAGE__ .  "[$self->{locator}->{type}]" . "->testDsn(): " . "DBI-error: " . DBI::errstr );  
   }  
 }  
301    
 1;  
302    1;
303    __END__

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.19

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