]> git.donarmstrong.com Git - debbugs.git/blob - bin/debbugs-installsql
1ecccb48534799372ef9b5de4241ef2c0f9d7031
[debbugs.git] / bin / debbugs-installsql
1 #!/usr/bin/perl
2 # debbugs-installsql installs the SQL database using DBIx::Class::DeploymentHandler
3 # and is released under the terms of the GNU GPL version 3, or any
4 # later version, at your option. See the file README and COPYING for
5 # more information.
6 # Copyright 2013-2014 by Don Armstrong <don@donarmstrong.com>.
7
8
9 use warnings;
10 use strict;
11
12 use Getopt::Long;
13 use Pod::Usage;
14
15 =head1 NAME
16
17 debbugs-installsql - installs the SQL database using DBIx::Class::DeploymentHandler
18
19 =head1 SYNOPSIS
20
21 debbugs-installsql [ --upgrade | --install ]
22
23  Options:
24   --service postgresql service to connect to
25   --sysconfdir postgresql system configuration directory
26   --deployment-dir SQL deployment directory
27   --debug, -d debugging level (Default 0)
28   --help, -h display this help
29   --man, -m display manual
30
31 =head1 OPTIONS
32
33 =over
34
35 =item B<--service>
36
37 Postgresl service to connect to (defaults to debbugs)
38
39 =item B<--sysconfdir>
40
41 Postgresql sysconf dir. May also be set using the PGSYSCONFDIR
42 environmental variable (which this option overrides).
43
44 =item B<--deployment-dir>
45
46 Deployment directory (defaults to /usr/share/debbugs/sqldeployment)
47
48 =item B<--drop>
49
50 Drop tables before trying to create them. (Useful for --install, primarily).
51 Defaults to not drop tables for safety.
52
53 =item B<--debug, -d>
54
55 Debug verbosity. (Default 0)
56
57 =item B<--help, -h>
58
59 Display brief usage information.
60
61 =item B<--man, -m>
62
63 Display this manual.
64
65 =back
66
67 =head1 EXAMPLES
68
69 debbugs-installsql
70
71 =cut
72
73
74 use vars qw($DEBUG);
75
76 # if we're running out of git, we want to use the git base directory as the
77 # first INC directory. If you're not running out of git, or someone has given a
78 # non-absolute INC, don't do that.
79 use FindBin;
80 use if (-d $FindBin::Bin.'/../.git/' && $INC[0] =~ m#^/#),
81     lib => $FindBin::Bin.'/../';
82
83 use Debbugs::DB;
84 use Debbugs::DB::Util qw(prepare_execute);
85 use aliased 'DBIx::Class::DeploymentHandler' => 'DH';
86
87 my %options = (debug           => 0,
88                help            => 0,
89                man             => 0,
90                overwrite_deployment => 0,
91                drop            => 0,
92                service         => 'debbugs',
93                deployment_dir  => '/usr/share/debbugs/sqldeployment',
94               );
95
96 GetOptions(\%options,
97            'service|s=s',
98            'dsn=s',
99            'sysconfdir|c=s',
100            'install',
101            'install_version_storage|install-version-storage',
102            'upgrade',
103            'drop',
104            'current_version|current-version',
105            'overwrite_deployment|overwrite-deployment|force_overwrite|force-overwrite',
106            'deployment_dir|deployment-dir=s',
107            'debug|d+','help|h|?','man|m');
108
109 pod2usage() if $options{help};
110 pod2usage({verbose=>2}) if $options{man};
111
112 $DEBUG = $options{debug};
113
114 my @USAGE_ERRORS;
115
116 my @exclusive_options = qw(install upgrade current_version install_version_storage);
117 if (1 < grep {exists $options{$_}} @exclusive_options) {
118       push @USAGE_ERRORS,"You must only give one of the ".
119           join(', ',map {s/_/-/g; "--".$_} @exclusive_options).
120           " options";
121 }
122 if (not grep {exists $options{$_}} @exclusive_options) {
123     $options{current_version} = 1;
124 }
125
126 pod2usage(join("\n",@USAGE_ERRORS)) if @USAGE_ERRORS;
127
128 if (exists $options{sysconfdir}) {
129     if (not defined $options{sysconfdir} or not length $options{sysconfdir}) {
130         delete $ENV{PGSYSCONFDIR};
131     } else {
132         $ENV{PGSYSCONFDIR} = $options{sysconfdir};
133     }
134 }
135
136 if (not exists $options{dsn} or
137     not defined $options{dsn} or
138     not length $options{dsn}) {
139     $options{dsn} = 'dbi:Pg:service='.$options{service};
140 }
141
142
143 my $schema = Debbugs::DB->connect($options{dsn}) or
144     die "Unable to connect to database";
145
146
147 my $dh = DH->new({schema => $schema,
148                   force_overwrite => $options{overwrite_deployment},
149                   script_directory => $options{deployment_dir},
150                   databases => 'PostgreSQL',
151                   sql_translator_args => {producer_args => {postgres_version => 8.1},
152                                           add_drop_table => $options{drop},
153                                          },
154                  });
155
156 if ($options{current_version}) {
157     print "The current database version is: ".$dh->database_version."\n";
158     exit 0;
159 } elsif ($options{install}) {
160     $dh->prepare_install;
161     $dh->install;
162     ## this is lame, but because the current release of DeploymentHandler does
163     ## not support WHERE or quoted indexes properly (fixed in git), we create
164     ## these indexes manually here.
165     $schema->storage->
166         dbh_do(sub{my ($s,$dbh) = @_;
167                    prepare_execute($dbh,<<SQL);
168 CREATE UNIQUE INDEX bug_status_cache_bug_col_suite_col_arch_idx ON
169  bug_status_cache(bug,COALESCE(suite,0),COALESCE(arch,0));
170 CREATE UNIQUE INDEX bug_status_cache_bug_suite_idx ON
171  bug_status_cache(bug,suite) WHERE arch is NULL;
172 CREATE UNIQUE INDEX bug_status_cache_bug_idx ON
173  bug_status_cache(bug) WHERE arch is NULL AND suite IS NULL;
174 SQL
175                    });
176 } elsif ($options{upgrade}) {
177     $dh->prepare_deploy;
178     $dh->prepare_upgrade;
179     $dh->upgrade;
180 } elsif ($options{install_version_storage}) {
181     $dh->prepare_version_storage_install;
182     $dh->install_version_storage;
183 }
184
185
186 __END__