=pod =head1 NAME Bio::EnsEMBL::Hive::DBSQL::AccumulatorAdaptor =head1 SYNOPSIS $dba->get_AccumulatorAdaptor->store( \@rows ); =head1 DESCRIPTION This is currently an "objectless" adaptor for building accumulated structures. =head1 LICENSE Copyright [1999-2014] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =head1 CONTACT Please subscribe to the Hive mailing list: http://listserver.ebi.ac.uk/mailman/listinfo/ehive-users to discuss Hive-related questions or to be notified of our updates =cut package Bio::EnsEMBL::Hive::DBSQL::AccumulatorAdaptor; use strict; use warnings; use Bio::EnsEMBL::Hive::Utils ('destringify'); use base ('Bio::EnsEMBL::Hive::DBSQL::NakedTableAdaptor'); sub default_table_name { return 'accu'; } sub fetch_structures_for_job_ids { my ($self, $job_ids_csv, $id_scale, $id_offset) = @_; $id_scale ||= 1; $id_offset ||= 0; my %structures = (); if( $job_ids_csv ) { my $sql = "SELECT receiving_job_id, struct_name, key_signature, value FROM accu WHERE receiving_job_id in ($job_ids_csv)"; my $sth = $self->prepare( $sql ); $sth->execute(); ROW: while(my ($receiving_job_id, $struct_name, $key_signature, $stringified_value) = $sth->fetchrow_array() ) { my $value = destringify($stringified_value); my $sptr = \$structures{$receiving_job_id * $id_scale + $id_offset}{$struct_name}; while( $key_signature=~/(?:(?:\[(\d*)\])|(?:\{(.*?)\}))/g) { my ($array_index, $hash_key) = ($1, $2); if(defined($array_index)) { unless(length($array_index)) { $array_index = scalar(@{$$sptr||[]}); } $sptr = \$$sptr->[$array_index]; } elsif(defined($hash_key)) { if(length($hash_key)) { $sptr = \$$sptr->{$hash_key}; } else { $sptr = \$$sptr->{$value}; $$sptr++; next ROW; } } } $$sptr = $value; } $sth->finish; } return \%structures; } 1;