-
Notifications
You must be signed in to change notification settings - Fork 14
/
MicrobeDB.pm
237 lines (169 loc) · 5.83 KB
/
MicrobeDB.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#Copyright (C) 2011 Morgan G.I. Langille
#Author contact: [email protected]
#This file is part of MicrobeDB.
#MicrobeDB is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#MicrobeDB is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with MicrobeDB. If not, see <http://www.gnu.org/licenses/>.
package MicrobeDB::MicrobeDB;
#MicrobeDB is the parent class for all classes in the microDB project
#perldoc MicrobeDB - for more information (or see end of this file)
use strict;
use warnings;
use Carp;
use DBI;
our $AUTOLOAD;
my @FIELDS;
BEGIN{
@FIELDS = qw(comment);
}
use fields @FIELDS;
use Log::Log4perl qw(get_logger :nowarn);
my $logger = Log::Log4perl->get_logger();
#MicrobeDB MySQL settings
my $db_config = "$ENV{HOME}/.my.cnf";
$logger->logdie("MySQL config file: $db_config can not be found!") unless -e $db_config;
my $database=$ENV{"MicrobeDB"}||"microbedb"; # if unable to access .bashrc, use microbedb
my $dsn = "DBI:mysql:database=$database;mysql_read_default_file=$db_config;mysql_local_infile=1";
#note that these fields are taken from the config file "my.cnf"
my ($user,$pass) = ("","");
sub new {
my ( $class, %arg ) = @_;
#bless and restrict the object
my $self = fields::new($class);
#Set each attribute that is given as an arguement
foreach ( keys(%arg) ) {
$self->$_( $arg{$_} );
}
return $self;
}
#inserts a record in the database
#Input: name of table and hash ref
#Requires the table name, an array ref of fields and an array ref of values
#Returns the primary key for the record that was created
sub _insert_record {
my ( $self, $object, $table_name ) = @_;
my $dbh = $self->_db_connect();
my @fields = $object->field_names($table_name);
my @values;
foreach (@fields) {
push( @values, $object->$_ );
}
#Need to add back ticks around each field name because certain fields (eg. order) will cause problems
my @new_fields;
foreach (@fields) {
push( @new_fields, "`$_`" );
}
#Make the array of fields into a comma seperated string
my $fields = join( ',', @new_fields );
#Makes a string of ?'s so we can bind to them later
#Note: always bind the values because it looks after converting undef to null
my $bind = join( ',', ('?') x @values );
#my $sql = "INSERT IGNORE $table_name ($fields) VALUES ($bind)";
#Use REPLACE instead of INSERT so this method can be used for both inserts or replacements
my $sql = "REPLACE $table_name ($fields) VALUES ($bind)";
#Create new genomeproject recordicrobedb
my $sth = $dbh->prepare($sql);
#call the statement
$sth->execute(@values);
#This should return the auto_increment number that was just updated
return $dbh->last_insert_id( undef, undef, undef, undef );
}
sub _db_connect {
my ($self) = @_;
#Make connection to the database
# Do we have an existing connection? If so, just return it
# Yay singletons!
# return $self->{dbhandle} if($self->{dbhandle});
my $dbh;
my $max_tries = 5;
for my $try (1..$max_tries) {
eval {
#Try to connect to microbeDB
$dbh = DBI->connect( $dsn, $user, $pass, { RaiseError => 1 } )
|| $logger->logdie($DBI::errstr);
};
#if there is an error or we the handle is empty then try again
if($@ || !defined($dbh)){
$logger->logcroak("Failed to connect to microbeDB! $max_tries tries have failed! $@") if $try == $max_tries;
$logger->logwarn("Failed to connect to microbeDB! Trying again in 5 seconds. This is attempt $try of $max_tries. $@");
#increase wait time by 5 seconds on each failure
sleep(5*$try);
}else{
last;
}
}
unless(defined($dbh)){
$logger->logdie("Can't connect to db: $!");
}
# Save the dhb for later
# $self->{dbhandle} = $dbh;
return $dbh;
}
# This takes the place of methods to set or get the value of an attribute
sub AUTOLOAD {
my ($self,$newvalue) = @_;
#get the unknown method call
my $attr = $AUTOLOAD;
#Keep only the method name
$attr =~ s/.*:://;
#Die if the key does not already exist in the hash
unless (exists($self->{$attr})){
# croak "No such attribute '$attr' exists in the class ";
}
# Turn off strict references to enable "magic" AUTOLOAD speedup
no strict 'refs';
# define subroutine
*{$AUTOLOAD} = sub {my($self,$newvalue)=@_;
$self->{$attr}=$newvalue if defined($newvalue);
return $self->{$attr}};
# Turn strict references back on
use strict 'refs';
#Set the new value for the attribute if available
$self->{$attr} = $newvalue if defined($newvalue);
#Always return the current value for the attribute
return $self->{$attr};
}
#returns an array of all field names for this class
sub all_fields{
my ($self) = @_;
return keys(%$self);
}
#set all the fields in the object when given a hash
sub set_hash{
my($self,%hash)=@_;
foreach(keys(%hash)){
$self->$_($hash{$_});
}
}
#returns a hash of the complete object
sub get_hash{
my ($self) = @_;
return %{$self};
}
#print object to tab-delimited file
#TODO: need to update the print function to use filenames
sub print_obj{
my ($self, $filename) =@_;
my @print_line = join('\t',values(%$self));
print @print_line;
}
#Anything put in this method will be run when the object is destroyed
sub DESTROY{
}
1;
__END__
=head1 NAME
Replicon: contains features that are associated with a single replicon (chromosome or plasmid) within an organism
=head1 Synopsis
=head1 AUTHOR
Morgan Langille
=head1 Date Created
June 2nd, 2006
=cut