]> git.donarmstrong.com Git - biopieces.git/blob - bp_bin/remove_mysql_tables
b25b79dd22ce8554b233c7b9c3ec3f6fafae377f
[biopieces.git] / bp_bin / remove_mysql_tables
1 #!/usr/bin/env perl
2
3 # Copyright (C) 2007-2009 Martin A. Hansen.
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
19 # http://www.gnu.org/copyleft/gpl.html
20
21
22 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> DESCRIPTION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
23
24 # Remove MySQL database tables.
25
26 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
27
28
29 use strict;
30 use Maasha::Biopieces;
31 use Maasha::Common;
32 use Maasha::SQL;
33 use Maasha::UCSC;
34
35
36 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
37
38
39 my ( $options, $in, $out, $record, %table_hash, $dbh, $table );
40
41 $options = Maasha::Biopieces::parse_options(
42     [
43         { long => 'database', short => 'd', type => 'string', mandatory => 'yes', default => undef, allowed => undef, disallowed => undef },
44         { long => 'tables',   short => 't', type => 'list',   mandatory => 'no',  default => undef, allowed => undef, disallowed => undef },
45         { long => 'keys',     short => 'k', type => 'list',   mandatory => 'no',  default => undef, allowed => undef, disallowed => undef },
46         { long => 'user',     short => 'u', type => 'string', mandatory => 'no',  default => undef, allowed => undef, disallowed => undef },
47         { long => 'password', short => 'p', type => 'string', mandatory => 'no',  default => undef, allowed => undef, disallowed => undef },
48     ]   
49 );
50
51 $in  = Maasha::Biopieces::read_stream( $options->{ "stream_in" } );
52 $out = Maasha::Biopieces::write_stream( $options->{ "stream_out" } );
53
54 Maasha::Common::error( qq(both --tables and --keys specified) ) if     $options->{ "tables" } and     $options->{ "keys" };
55 Maasha::Common::error( qq(no --tables or --keys specified) )    if not $options->{ "tables" } and not $options->{ "keys" };
56
57 $options->{ "user" }     ||= Maasha::UCSC::ucsc_get_user();
58 $options->{ "password" } ||= Maasha::UCSC::ucsc_get_password();
59
60 map { $table_hash{ $_ } = 1 } @{ $options->{ 'tables' } };
61
62 while ( $record = Maasha::Biopieces::get_record( $in ) )
63 {
64     map { $table_hash{ $record->{ $_ } } = 1 } @{ $options->{ 'keys' } };
65
66     Maasha::Biopieces::put_record( $record, $out ) if not $options->{ 'no_stream' };
67 }
68
69 $dbh = Maasha::SQL::connect( $options->{ "database" }, $options->{ "user" }, $options->{ "password" } );
70
71 foreach $table ( sort keys %table_hash )
72 {
73     if ( Maasha::SQL::table_exists( $dbh, $table ) )
74     {
75         print STDERR qq(Removing table "$table" from database "$options->{ 'database' }" ... ) if $options->{ 'verbose' };
76         Maasha::SQL::delete_table( $dbh, $table );
77         print STDERR "done.\n" if $options->{ 'verbose' };
78     }
79     else
80     {
81         print STDERR qq(WARNING: table "$table" not found in database "$options->{ 'database' }\n");
82     }
83 }
84
85 Maasha::SQL::disconnect( $dbh );
86
87 Maasha::Biopieces::close_stream( $in );
88 Maasha::Biopieces::close_stream( $out );
89
90
91 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
92
93
94 BEGIN
95 {
96     Maasha::Biopieces::status_set();
97 }
98
99
100 END
101 {
102     Maasha::Biopieces::status_log();
103 }
104
105
106 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
107
108
109 __END__