=pod =head1 NAME Bio::EnsEMBL::Hive::DBSQL::DBAdaptor =head1 SYNOPSIS my $db = Bio::EnsEMBL::Hive::DBSQL::DBAdaptor->new( -url => 'mysql://my_username:my_password@my_hostname:3306/my_hive_database' ); =head1 DESCRIPTION This object represents the handle for a Hive system enabled database =head1 LICENSE Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute Copyright [2016-2021] 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::DBAdaptor; use strict; use warnings; use Bio::EnsEMBL::Hive; use Bio::EnsEMBL::Hive::DBSQL::DBConnection; use Bio::EnsEMBL::Hive::DBSQL::SqlSchemaAdaptor; use Bio::EnsEMBL::Hive::Utils ('throw'); use Bio::EnsEMBL::Hive::Utils::Collection; use Bio::EnsEMBL::Hive::MetaParameters; use Bio::EnsEMBL::Hive::PipelineWideParameters; use Bio::EnsEMBL::Hive::ResourceClass; use Bio::EnsEMBL::Hive::ResourceDescription; use Bio::EnsEMBL::Hive::Analysis; use Bio::EnsEMBL::Hive::AnalysisStats; sub new { my $class = shift @_; my %flags = @_; my ($dbc, $url, $reg_conf, $reg_type, $reg_alias, $species, $no_sql_schema_version_check) = @flags{qw(-dbconn -url -reg_conf -reg_type -reg_alias -species -no_sql_schema_version_check)}; $url .= ';nosqlvc=1' if($url && $no_sql_schema_version_check); if($reg_conf or $reg_alias) { # need to initialize Registry even if $reg_conf is not really given require Bio::EnsEMBL::Registry; Bio::EnsEMBL::Registry->load_all($reg_conf); # if undefined, default reg_conf will be used } my $self; if($url) { $dbc = Bio::EnsEMBL::Hive::DBSQL::DBConnection->new(-url => $url) or die "Unable to create a DBC using url='$url'"; } elsif($reg_alias) { $reg_type ||= 'hive'; $self = Bio::EnsEMBL::Registry->get_DBAdaptor($reg_alias, $reg_type) or die "Unable to connect to DBA using reg_conf='$reg_conf', reg_type='$reg_type', reg_alias='$reg_alias'\n"; if($reg_type ne 'hive') { # ensure we are getting a Hive adaptor even from a non-Hive Registry entry: $dbc = $self->dbc; $self = undef; } } if($dbc && !$self) { $self = bless {}, $class; $self->dbc( $dbc ); } unless($no_sql_schema_version_check) { my $dbc = $self->dbc(); my $safe_url = $dbc->url('EHIVE_PASS'); my $code_sql_schema_version = Bio::EnsEMBL::Hive::DBSQL::SqlSchemaAdaptor->get_code_sql_schema_version() || die "DB($safe_url) Could not establish code_sql_schema_version, please check that 'EHIVE_ROOT_DIR' environment variable is set correctly"; my $db_sql_schema_version = eval { $self->get_MetaAdaptor->get_value_by_key( 'hive_sql_schema_version' ); }; if($@) { if($@ =~ /hive_meta.*doesn't exist/) { die "\nDB($safe_url) The 'hive_meta' table does not seem to exist in the database yet.\nPlease patch the database up to sql_schema_version '$code_sql_schema_version' and try again.\n"; } else { die "DB($safe_url) $@"; } } elsif(!$db_sql_schema_version) { die "\nDB($safe_url) The 'hive_meta' table does not contain 'hive_sql_schema_version' entry.\nPlease investigate.\n"; } elsif($db_sql_schema_version < $code_sql_schema_version) { my $new_patches = Bio::EnsEMBL::Hive::DBSQL::SqlSchemaAdaptor->get_sql_schema_patches( $db_sql_schema_version, $dbc->driver ) || die "DB($safe_url) sql_schema_version mismatch: the database's version is '$db_sql_schema_version' but the code is already '$code_sql_schema_version'.\n" ."Unfortunately we cannot patch the database; you may have to create a new database or agree to run older code\n"; my $patcher_command = "$ENV{'EHIVE_ROOT_DIR'}/scripts/db_cmd.pl -url $safe_url"; die "DB($safe_url) sql_schema_version mismatch: the database's version is '$db_sql_schema_version' but the code is already '$code_sql_schema_version'.\n" ."Please upgrade the database by applying the following patches:\n\n".join("\n", map { "\t$patcher_command < $_" } @$new_patches)."\n\nand try again.\n"; } elsif($code_sql_schema_version < $db_sql_schema_version) { die "DB($safe_url) sql_schema_version mismatch: the database's version is '$db_sql_schema_version', but your code is still '$code_sql_schema_version'.\n" ."Please update the code and try again.\n"; } } if($species) { # [compatibility with core code] store the DBAdaptor in Registry: require Bio::EnsEMBL::Registry; Bio::EnsEMBL::Registry->add_DBAdaptor( $species, 'hive', $self ); } return $self; } sub dbc { my $self = shift; $self->{'_dbc'} = bless shift, 'Bio::EnsEMBL::Hive::DBSQL::DBConnection' if(@_); return $self->{'_dbc'}; } sub hive_use_triggers { # getter only, not setter my $self = shift @_; unless( defined($self->{'_hive_use_triggers'}) ) { my $hive_use_triggers = $self->get_MetaAdaptor->get_value_by_key( 'hive_use_triggers' ); $self->{'_hive_use_triggers'} = $hive_use_triggers // 0; } return $self->{'_hive_use_triggers'}; } sub hive_use_param_stack { # getter only, not setter my $self = shift @_; unless( defined($self->{'_hive_use_param_stack'}) ) { my $hive_use_param_stack = $self->get_MetaAdaptor->get_value_by_key( 'hive_use_param_stack' ); $self->{'_hive_use_param_stack'} = $hive_use_param_stack // 0; } return $self->{'_hive_use_param_stack'}; } sub hive_auto_rebalance_semaphores { # getter only, not setter my $self = shift @_; unless( defined($self->{'_hive_auto_rebalance_semaphores'}) ) { my $hive_auto_rebalance_semaphores = $self->get_MetaAdaptor->get_value_by_key( 'hive_auto_rebalance_semaphores' ); $self->{'_hive_auto_rebalance_semaphores'} = $hive_auto_rebalance_semaphores // 0; } return $self->{'_hive_auto_rebalance_semaphores'}; } our %adaptor_type_2_package_name = ( 'Accumulator' => 'Bio::EnsEMBL::Hive::DBSQL::AccumulatorAdaptor', 'Analysis' => 'Bio::EnsEMBL::Hive::DBSQL::AnalysisAdaptor', 'AnalysisCtrlRule' => 'Bio::EnsEMBL::Hive::DBSQL::AnalysisCtrlRuleAdaptor', 'AnalysisData' => 'Bio::EnsEMBL::Hive::DBSQL::AnalysisDataAdaptor', 'AnalysisJob' => 'Bio::EnsEMBL::Hive::DBSQL::AnalysisJobAdaptor', 'AnalysisStats' => 'Bio::EnsEMBL::Hive::DBSQL::AnalysisStatsAdaptor', 'DataflowRule' => 'Bio::EnsEMBL::Hive::DBSQL::DataflowRuleAdaptor', 'LogMessage' => 'Bio::EnsEMBL::Hive::DBSQL::LogMessageAdaptor', 'Meta' => 'Bio::EnsEMBL::Hive::DBSQL::MetaAdaptor', 'PipelineWideParameters'=> 'Bio::EnsEMBL::Hive::DBSQL::PipelineWideParametersAdaptor', 'NakedTable' => 'Bio::EnsEMBL::Hive::DBSQL::NakedTableAdaptor', 'ResourceClass' => 'Bio::EnsEMBL::Hive::DBSQL::ResourceClassAdaptor', 'ResourceDescription' => 'Bio::EnsEMBL::Hive::DBSQL::ResourceDescriptionAdaptor', 'Role' => 'Bio::EnsEMBL::Hive::DBSQL::RoleAdaptor', 'Queen' => 'Bio::EnsEMBL::Hive::Queen', # aliases: 'Job' => 'Bio::EnsEMBL::Hive::DBSQL::AnalysisJobAdaptor', 'Worker' => 'Bio::EnsEMBL::Hive::Queen', 'MetaParameters' => 'Bio::EnsEMBL::Hive::DBSQL::MetaAdaptor', ); sub get_available_adaptors { return \%adaptor_type_2_package_name; } sub parse_underscored_id_name { my ($self, $underscored_id_name) = @_; my ($is_an_id, $foo_id_method_name, $foo_obj_method_name); my @syll = split(/_/, $underscored_id_name); if($syll[scalar(@syll)-1] eq 'id') { pop @syll; ($is_an_id, $foo_id_method_name, $foo_obj_method_name) = ( 1, $underscored_id_name, join('_', @syll) ); } else { ($is_an_id, $foo_id_method_name, $foo_obj_method_name) = ( 0, $underscored_id_name .'_id' , $underscored_id_name ); } my $AdaptorType = ''; # will be growing from right to left while(@syll) { $AdaptorType = ucfirst(pop @syll) . $AdaptorType; if(exists( $self->get_available_adaptors->{ $AdaptorType })) { return ($AdaptorType, $is_an_id, $foo_id_method_name, $foo_obj_method_name); } } return; # could not parse } sub get_adaptor { my $self = shift; my $AdaptorType = shift; my $adaptor_package_name = $self->get_available_adaptors()->{$AdaptorType} or throw("Could not find a module corresponding to '$AdaptorType'"); my $signature = join(':', $adaptor_package_name, @_); unless( $self->{'_cached_adaptor'}{$signature} ) { eval "require $adaptor_package_name" or throw("Could not load or compile module '$adaptor_package_name'"); $self->{'_cached_adaptor'}{$signature} = $adaptor_package_name->new( $self, @_ ); } return $self->{'_cached_adaptor'}{$signature}; } sub DESTROY { } # to simplify AUTOLOAD sub AUTOLOAD { our $AUTOLOAD; my $type; if ( $AUTOLOAD =~ /^.*::get_(\w+)Adaptor$/ ) { $type = $1; } elsif ( $AUTOLOAD =~ /^.*::get_(\w+)$/ ) { $type = $1; } else { die "DBAdaptor::AUTOLOAD: Could not interpret the method: $AUTOLOAD"; } my $self = shift; return $self->get_adaptor($type, @_); } sub init_collections { # should not really belong to DBAdaptor, temporarily squatting here... foreach my $AdaptorType ('MetaParameters', 'PipelineWideParameters', 'ResourceClass', 'ResourceDescription', 'Analysis', 'AnalysisStats', 'AnalysisCtrlRule', 'DataflowRule') { my $class = 'Bio::EnsEMBL::Hive::'.$AdaptorType; $class->collection( Bio::EnsEMBL::Hive::Utils::Collection->new() ); } } sub load_collections { my $self = shift @_; foreach my $AdaptorType ('MetaParameters', 'PipelineWideParameters', 'ResourceClass', 'ResourceDescription', 'Analysis', 'AnalysisStats', 'AnalysisCtrlRule', 'DataflowRule') { my $adaptor = $self->get_adaptor( $AdaptorType ); my $class = 'Bio::EnsEMBL::Hive::'.$AdaptorType; $class->collection( Bio::EnsEMBL::Hive::Utils::Collection->new( $adaptor->fetch_all ) ); } } sub save_collections { my $self = shift @_; foreach my $AdaptorType ('MetaParameters', 'PipelineWideParameters', 'ResourceClass', 'ResourceDescription', 'Analysis', 'AnalysisStats', 'AnalysisCtrlRule', 'DataflowRule') { my $adaptor = $self->get_adaptor( $AdaptorType ); my $class = 'Bio::EnsEMBL::Hive::'.$AdaptorType; foreach my $storable_object ( $class->collection()->list ) { $adaptor->store_or_update_one( $storable_object, $class->unikey() ); # warn "Stored/updated ".$storable_object->toString()."\n"; } } my $job_adaptor = $self->get_AnalysisJobAdaptor; foreach my $analysis ( Bio::EnsEMBL::Hive::Analysis->collection()->list ) { if(my $our_jobs = $analysis->jobs_collection ) { $job_adaptor->store( $our_jobs ); foreach my $job (@$our_jobs) { # warn "Stored ".$job->toString()."\n"; } } } } 1;