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

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

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

revision 1.14 by jonen, Thu Dec 5 09:40:30 2002 UTC revision 1.32 by joko, Tue Apr 8 22:52:22 2003 UTC
# Line 3  Line 3 
3  #  $Id$  #  $Id$
4  #  #
5  #  $Log$  #  $Log$
6    #  Revision 1.32  2003/04/08 22:52:22  joko
7    #  modified 'querySchema': better behaviour regarding filtering result
8    #
9    #  Revision 1.31  2003/04/05 21:24:09  joko
10    #  modified 'sub getChildNodes': now contains code from 'querySchema'
11    #
12    #  Revision 1.30  2003/03/27 15:31:14  joko
13    #  fixes to modules regarding new namespace(s) below Data::Mungle::*
14    #
15    #  Revision 1.29  2003/02/21 01:47:18  joko
16    #  purged old code
17    #  minor cosmetics
18    #
19    #  Revision 1.28  2003/02/20 20:20:26  joko
20    #  tried to get auto-disconnect working again - failed with that
21    #
22    #  Revision 1.27  2003/01/31 06:30:59  joko
23    #  + enabled 'sendQuery'
24    #
25    #  Revision 1.26  2003/01/30 22:29:47  joko
26    #  + fixed module usage (removed dependency on 'libp.pm')
27    #
28    #  Revision 1.25  2003/01/19 02:30:05  joko
29    #  + fix: modified call to '_initSchema'
30    #
31    #  Revision 1.24  2002/12/22 14:13:01  joko
32    #  + sub dropDb
33    #
34    #  Revision 1.23  2002/12/19 16:31:53  joko
35    #  +- renamed sub to 'rebuildDb'
36    #
37    #  Revision 1.22  2002/12/18 22:28:16  jonen
38    #  + added extended logging at 'getObjectByGuid()'
39    #
40    #  Revision 1.21  2002/12/16 22:20:49  jonen
41    #  + fixed bug at 'getObjectByGuid()'
42    #
43    #  Revision 1.20  2002/12/16 20:49:17  jonen
44    #  + added sub 'getObjectByGuid()'
45    #  + added functionality to use 'getObjectByGuid' at 'getObjectAsHash()'
46    #
47    #  Revision 1.19  2002/12/16 06:46:09  joko
48    #  + attempt to introduce a generic '_patchSchema' - cancelled!
49    #
50    #  Revision 1.18  2002/12/13 21:48:07  joko
51    #  + fix to 'sub sendQuery'
52    #
53    #  Revision 1.17  2002/12/12 02:51:09  joko
54    #  + cosmetics
55    #
56    #  Revision 1.16  2002/12/11 06:54:10  joko
57    #  + fix: encapsulated object-loading inside an 'eval'
58    #
59    #  Revision 1.15  2002/12/05 13:55:21  joko
60    #  + now utilizing 'expand' instead of 'var_deref'
61    #  + played around with having fresh-objects - no progress....
62    #
63  #  Revision 1.14  2002/12/05 09:40:30  jonen  #  Revision 1.14  2002/12/05 09:40:30  jonen
64  #  + added option->{destroy} at getObject for unloading all instance  #  + added option->{destroy} at getObject for unloading all instance
65  #  #
# Line 73  use warnings; Line 130  use warnings;
130  use base ("Data::Storage::Handler");  use base ("Data::Storage::Handler");
131  use base ("Data::Storage::Handler::Abstract");  use base ("Data::Storage::Handler::Abstract");
132    
133  use Tangram;  
134  use Data::Dumper;  use Data::Dumper;
135  use libp qw( getNewPerlObjectByPkgName );  use Tangram;
 use Data::Storage::Result::Tangram;  
 use Data::Compare::Struct qw( isEmpty );  
 use Data::Transform::Deep qw( var_deref );  
 use Data::Transform::Encode qw( var2utf8 );  
136    
137    use DesignPattern::Object;
138    use Data::Storage::Result::Tangram;
139    use Data::Mungle::Compare::Struct qw( isEmpty );
140    use Data::Mungle::Transform::Deep qw( expand );
141    
142  # get logger instance  # get logger instance
143  my $logger = Log::Dispatch::Config->instance;  my $logger = Log::Dispatch::Config->instance;
# Line 101  sub _initSchema { Line 158  sub _initSchema {
158    my $self = shift;    my $self = shift;
159    $logger->debug( __PACKAGE__ . "->_initSchema()" );    $logger->debug( __PACKAGE__ . "->_initSchema()" );
160    #if (!$schema_tangram) {    #if (!$schema_tangram) {
161      my $obj = getNewPerlObjectByPkgName($self->{locator}->{schema}, { EXPORT_OBJECTS => $self->{locator}->{classnames}, want_transactions => $self->{locator}->{want_transactions} } );      #my $obj = getNewPerlObjectByPkgName($self->{locator}->{schema}, { EXPORT_OBJECTS => $self->{locator}->{classnames}, want_transactions => $self->{locator}->{want_transactions} } );
162        my $obj = DesignPattern::Object->fromPackage($self->{locator}->{schema}, { 'EXPORT_OBJECTS' => $self->{locator}->{classnames}, 'want_transactions' => $self->{locator}->{want_transactions} } );
163      $schema_tangram = $obj->getSchema();      $schema_tangram = $obj->getSchema();
164    #}    #}
165    if (!$schema_tangram) {    if (!$schema_tangram) {
166      $logger->error( __PACKAGE__ . "->_initSchema: No Schema available for $self->{schema}" );      $logger->error( __PACKAGE__ . "->_initSchema: No Schema available for $self->{schema}" );
167      return 0;      return 0;
168    }    }
169      #$self->_patchSchema();
170    return 1;    return 1;
171  }  }
172    
173    sub _patchSchema {
174      my $self = shift;
175      foreach (keys %{$schema_tangram->{classes}}) {
176        next if $schema_tangram->{classes}->{$_}->{abstract};
177        #next if ($_ ne 'TsBankAccount');
178        #$_ ne 'AbstractAccount' &&
179        print "class: $_", "\n";
180    #print Dumper($schema_tangram->{classes}->{$_});
181        # create new string property named 'guid'
182        my $tstring = Tangram::String->new();
183        $tstring->{name} = $tstring->{col} = 'guid';
184        # inject property into schema
185        #$schema_tangram->{classes}->{$_}->{root}->{SPECS}->[0]->{fields}->{string}->{$tstring->{name}} = $tstring;
186        print Dumper($schema_tangram->{classes}->{$_}->{root}->{SPECS}->[0]->{fields});
187      }
188    }
189    
190  sub connect {  sub connect {
191    
192      my $self = shift;      my $self = shift;
193            
194      my $dsn = shift;      my $dsn = shift;
195    
196    #print Dumper($self);
197    #exit;
198    
199        # TODO: re-enable
200      $dsn ||= $self->{locator}->{dbi}->{dsn};      $dsn ||= $self->{locator}->{dbi}->{dsn};
       
201      $logger->debug( __PACKAGE__ . "->connect( dsn $dsn )" );      $logger->debug( __PACKAGE__ . "->connect( dsn $dsn )" );
202            
203      #my $storage = Tangram::Relational->connect( $schema, $dsn );      #my $storage = Tangram::Relational->connect( $schema, $dsn );
# Line 129  sub connect { Line 209  sub connect {
209  #      return;  #      return;
210  #    }  #    }
211    
212      return unless $self->_initSchema();      #return unless $self->_initSchema();
213        $self->_initSchema();
214    
215      # create the main tangram storage object      # create the main tangram storage object
216      #$self->{COREHANDLE} = Tangram::Relational->connect( $schema, $dsn );      #$self->{COREHANDLE} = Tangram::Relational->connect( $schema, $dsn );
# Line 156  sub connect { Line 237  sub connect {
237  sub getChildNodes {  sub getChildNodes {
238    
239    my $self = shift;    my $self = shift;
240    my @nodes;    my $mode = shift;
241      my $filter = shift;
242      
243      $mode ||= 'core';
244      $filter ||= 'all';
245      
246      $logger->debug( __PACKAGE__ . "->getChildNodes($mode)" );
247    
248    $logger->debug( __PACKAGE__ . "->getChildNodes()" );    if ($mode eq 'core') {
249    
250    # create new DBI - Data::Storage - object from already connected DBI::db - handle inside the current COREHANDLE      my @nodes;
251    #my $loc = new Data::Storage::Locator( type => "DBI", dbi => { db => $self->{COREHANDLE}->{db} });      
252    #my $loc = new Data::Storage::Locator( type => "DBI", COREHANDLE => $self->{COREHANDLE}->{db} );      # create new DBI - Data::Storage - object from already connected DBI::db - handle inside the current COREHANDLE
253          #my $loc = new Data::Storage::Locator( type => "DBI", dbi => { db => $self->{COREHANDLE}->{db} });
254    # todo: should we retrieve information from the schema here      #my $loc = new Data::Storage::Locator( type => "DBI", COREHANDLE => $self->{COREHANDLE}->{db} );
255    # rather than poorly getting table names from underlying dbi?      
256    my $storage = $self->_getSubLayerHandle();      # todo: should we retrieve information from the schema here
257    @nodes = @{$storage->getChildNodes()};      # rather than poorly getting table names from underlying dbi?
258    #$storage->_configureCOREHANDLE();      my $storage = $self->_getSubLayerHandle();
259  #print "getchildnodes\n";      @nodes = @{$storage->getChildNodes()};
260  #print Dumper($self);      #$storage->_configureCOREHANDLE();
261    #if (my $result = $self->sendCommand( 'SHOW TABLES;' ) ) {    #print "getchildnodes\n";
262      #print Dumper($self);
263        #if (my $result = $self->sendCommand( 'SHOW TABLES;' ) ) {
264        
265        # TODO: REVIEW
266        #$storage->disconnect();
267        
268        $self->{meta}->{childnodes} = \@nodes;
269    
270        return \@nodes;
271        
272    # TODO: REVIEW    } elsif ($mode eq 'root') {
273    #$storage->disconnect();      
274        # FIXME: this will return *all* known classes to 'Class::Tangram',
275        # which might not be what you expect since more than one instance
276        # of Tangram may be in memory and Class::Tangram seems to
277        # offer no methods to determine this or filter its result(s) according
278        # to a specific database.
279        my @object_names = Class::Tangram::known_classes();
280        my @concret_names;
281        my $o_cnt;
282        foreach (sort @object_names) {
283          push @concret_names, $_  if (!Class::Tangram::class_is_abstract($_));
284          $o_cnt++;
285        }
286    
287        if ($filter eq 'all') {
288          return \@object_names;
289        } elsif ($filter eq 'concrete') {
290          return \@concret_names;
291        }
292        
293    $self->{meta}->{childnodes} = \@nodes;    }
294        
   return \@nodes;  
295    
296  }  }
297    
   
298  sub testIntegrity {  sub testIntegrity {
299    
300    my $self = shift;    my $self = shift;
# Line 256  sub configureCOREHANDLE { Line 368  sub configureCOREHANDLE {
368    $logger->debug( __PACKAGE__ . "->configureCOREHANDLE" );    $logger->debug( __PACKAGE__ . "->configureCOREHANDLE" );
369    
370    #my $subLayer = $self->_getSubLayerHandle();    #my $subLayer = $self->_getSubLayerHandle();
371      #print Dumper($self);
372      #exit;
373    
374    # apply configured modifications    # apply configured modifications
375      if (exists $self->{dbi}->{trace_level} && exists $self->{dbi}->{trace_file}) {      if (exists $self->{dbi}->{trace_level} && exists $self->{dbi}->{trace_file}) {
# Line 321  sub retreatSchema { Line 435  sub retreatSchema {
435    return $ok;    return $ok;
436  }  }
437    
438  sub rebuildDbAndSchema {  sub rebuildDb {
439    my $self = shift;    my $self = shift;
440    $logger->info( __PACKAGE__ . "->rebuildDbAndSchema()" );    $logger->info( __PACKAGE__ . "->rebuildDb()" );
441    my @results;    my @results;
442    
443    # sum up results (bool (0/1)) in array    # sum up results (bool (0/1)) in array
# Line 363  sub getListFiltered { Line 477  sub getListFiltered {
477    my @results;    my @results;
478    $logger->debug( __PACKAGE__ . "->getListFiltered( nodename => '" . $nodename . "' )" );    $logger->debug( __PACKAGE__ . "->getListFiltered( nodename => '" . $nodename . "' )" );
479    
480    #print Dumper($filters);  #print Dumper($filters);
481        
482    my @tfilters;    my @tfilters;
483        
# Line 402  sub getListFiltered { Line 516  sub getListFiltered {
516    # HACK: build eval-string (sorry) to get filtered list - please give advice here    # HACK: build eval-string (sorry) to get filtered list - please give advice here
517    my $evalstring = 'return $self->{_COREHANDLE}->select($remote, ' . $tfilter . ');';    my $evalstring = 'return $self->{_COREHANDLE}->select($remote, ' . $tfilter . ');';
518        
519      #print "eval: $evalstring", "\n";
520      
521    # get filtered list/set    # get filtered list/set
522    @results = eval($evalstring);    @results = eval($evalstring);
523    die $@ if $@;    die $@ if $@;
# Line 419  sub createCursor { Line 535  sub createCursor {
535    
536  sub createSet {  sub createSet {
537    my $self = shift;    my $self = shift;
538    #print "-" x 80, "\n";
539    #print Dumper(@_);
540    my @objects = @_;    my @objects = @_;
541    my $rh = Set::Object->new();    my $rh = Set::Object->new();
542    foreach (@objects) {    foreach (@objects) {
543      #print Dumper($_);      if (!isEmpty($_)) {
544      $rh->insert($_) if !isEmpty($_);  #print Dumper($_);
545          $rh->insert($_);
546        }
547    }    }
548    #print Dumper($rh->members());    #print Dumper($rh->members());
549    my $result = Data::Storage::Result::Tangram->new( RESULTHANDLE => $rh );    my $result = Data::Storage::Result::Tangram->new( RESULTHANDLE => $rh );
# Line 440  sub sendQuery { Line 560  sub sendQuery {
560    
561    # HACK: special case: querying by id does not translate into a common tangram query    # HACK: special case: querying by id does not translate into a common tangram query
562    # just load the object by given id(ent)    # just load the object by given id(ent)
563    if ($query->{criterias}->[0]->{key} eq 'id' && $query->{criterias}->[0]->{op} eq 'eq') {    if ($query->{criterias} && ($query->{criterias}->[0]->{key} eq 'id' && $query->{criterias}->[0]->{op} eq 'eq')) {
564      #print "LOAD!!!", "\n";      #print "LOAD!!!", "\n";
565      #exit;      #exit;
566      #return Set::Object->new( $self->{COREHANDLE}->load($query->{criterias}->[0]->{val}) );      #return Set::Object->new( $self->{COREHANDLE}->load($query->{criterias}->[0]->{val}) );
567      my $ident = $query->{criterias}->[0]->{val};      my $ident = $query->{criterias}->[0]->{val};
568  #print "load obj", "\n";  #print "load obj", "\n";
569      #return $self->createSet() if $ident == 5;      #return $self->createSet() if $ident == 5;
570        $self->{_COREHANDLE}->unload($ident);
571      my $object = $self->{_COREHANDLE}->load($ident);      my $object = $self->{_COREHANDLE}->load($ident);
572  #print "get id", "\n";  #print "get id", "\n";
573      my $oid = $self->{_COREHANDLE}->id($object);      my $oid = $self->{_COREHANDLE}->id($object);
574    #print Dumper($object);
575    #print "oid: $oid", "\n";
576      return $self->createSet($object);      return $self->createSet($object);
577      #return $self->createSet( $self->{COREHANDLE}->load('300090018') );      #return $self->createSet( $self->{COREHANDLE}->load('300090018') );
578    }    }
579    
580    die("This should not be reached for now - redirect to \$self->getListFiltered() here!");    my $list = $self->getListFiltered($query->{node}, $query->{criterias});
581      #return $self->createSet($object);
582      #return $self->createSet($list);
583      return $self->createSet(@$list);
584    
585      #die("This should not be reached for now - redirect to \$self->getListFiltered() here!");
586    
587    
588    
   # TODO: do a common tangram query here  
589    
590      # try a generic tangram query here
591      # TODO: try to place an oql on top of that (search.cpan.org!)
592    my @crits;    my @crits;
593    foreach (@{$query->{criterias}}) {    foreach (@{$query->{criterias}}) {
594      my $op = '';      my $op = '';
# Line 493  sub getObject { Line 624  sub getObject {
624    my $self = shift;    my $self = shift;
625    my $oid = shift;    my $oid = shift;
626    my $options = shift;    my $options = shift;
627    # TODO: create a deep_unload method  
628      # TODO: create a deep_unload method (currently _all_ objects are unloaded)
629    # unload($oid) will only unload object, not deep object hashes    # unload($oid) will only unload object, not deep object hashes
630    $self->{_COREHANDLE}->unload() if($options->{destroy});    $self->{_COREHANDLE}->unload() if ($options->{destroy});
631    
632    # TODO: review this    # TODO: review this
633    #if (!$self->{COREHANDLE}) { return; }    #if (!$self->{COREHANDLE}) { return; }
634    return $self->{_COREHANDLE}->load($oid);  
635      # TODO: review this
636      my $object = eval('$self->{_COREHANDLE}->load($oid);');
637      print $@, "\n" if $@;
638    
639      return $object if $object;
640    }
641    
642    sub getObjectByGuid {
643      my $self = shift;
644      my $guid = shift;
645      my $options = shift;
646      
647      # Guid and Classname is needed
648      if(!$guid || !$options->{classname}) {
649       $logger->error( __PACKAGE__ . "->getObjectByGuid: No 'guid' OR no Classname in options hash was given but needed!" );
650        return;
651      }
652      
653      # TODO: create a deep_unload method (currently _all_ objects are unloaded)
654      # unload($oid) will only unload object, not deep object hashes
655      $self->{_COREHANDLE}->unload() if ($options->{destroy});
656    
657      # search for object with given Classname and Guid
658      my $obj_tmp = $self->{_COREHANDLE}->remote($options->{classname});
659      my @result = $self->{_COREHANDLE}->select($obj_tmp, $obj_tmp->{guid} eq $guid);
660      
661      # we searched for global unique identifer of some object,
662      # so I think we can trust there would be only one result
663      if($result[0]) {
664        return $result[0];
665      } else {
666        $logger->error( __PACKAGE__ . "->getObjectByGuid: No Object with Classname $options->{classname} and GUID $guid found!" );
667        return;
668      }
669      
670  }  }
671    
672  sub getObjectAsHash {  sub getObjectAsHash {
673    my $self = shift;    my $self = shift;
674    my $oid = shift;    my $oid = shift;
675    my $options = shift;    my $options = shift;  
676    my $obj = $self->getObject($oid, $options);    my $obj;
677    my $deref = var_deref($obj);    
678    var2utf8($deref) if ($options->{utf8});    if($options->{guid}) {
679    #$obj->clear_refs;      $obj = $self->getObjectByGuid($oid, $options);
680    #$self->{COREHANDLE}->unload($obj) if($options->{destroy});    } else {
681    #$obj->DESTROY;      $obj = $self->getObject($oid, $options);
682    #undef($obj) if($options->{destroy});    }
683    return $deref;    
684      # build options (a callback to unload autovivified objects) for 'expand'
685      # TODO: use $logger to write to debug here!
686      my $cb; # = sub {};
687    
688      # deactivated way to get rid of used instances, if requested
689    =pod
690        if ($options->{destroy}) {
691          $options->{cb}->{destroy} = sub {
692            print "================ DESTROY", "\n";
693            my $object = shift;
694            #print Dumper($object);
695            $self->{_COREHANDLE}->unload($object);
696            #undef($object);
697          };
698        }
699    =cut
700    
701      my $hash = expand($obj, $options);
702    
703      # old (unsuccessful) attempts to get rid of used instances, if requested
704    
705        # V1:
706        #$options->{cb}->{destroy}->($obj);
707        #$self->{_COREHANDLE}->unload($obj);
708      
709        # V2:
710        #$obj->clear_refs;
711        #$self->{COREHANDLE}->unload($obj) if($options->{destroy});
712        #$obj->DESTROY;
713        #undef($obj) if($options->{destroy});
714      
715      return $hash;
716  }  }
717    
718  sub getSchema {  sub getSchema {
# Line 524  sub getCOREHANDLE { Line 724  sub getCOREHANDLE {
724    return $self->{_COREHANDLE};    return $self->{_COREHANDLE};
725  }  }
726    
727    sub dropDb {
728      my $self = shift;
729      my $storage = $self->_getSubLayerHandle();
730      return $storage->dropDb();
731    }
732    
733    sub testAvailability {
734      my $self = shift;
735      my $storage = $self->_getSubLayerHandle();
736      return $storage->testAvailability();
737    }
738    
739    sub disconnect2 {
740      my $self = shift;
741      my $storage = $self->_getSubLayerHandle();
742      print "DISC!", "\n";
743    
744      my $storage_ll = $storage->{_COREHANDLE};
745      $storage_ll->disconnect();
746      
747      print Dumper($storage);
748      exit;
749      
750      #$self->{_COREHANDLE}
751      #$storage->disconnect();
752      $self->{dataStorageLayer}->disconnect();
753    }
754    
755  1;  1;
756    __END__

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.32

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