]> git.donarmstrong.com Git - debbugs.git/blob - bin/debbugs-installsql
skip bad .debinfo files when loading them
[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<--debug, -d>
49
50 Debug verbosity. (Default 0)
51
52 =item B<--help, -h>
53
54 Display brief usage information.
55
56 =item B<--man, -m>
57
58 Display this manual.
59
60 =back
61
62 =head1 EXAMPLES
63
64 debbugs-installsql
65
66 =cut
67
68
69 use vars qw($DEBUG);
70
71 use Debbugs::DB;
72 use Debbugs::DB::Util qw(prepare_execute);
73 use aliased 'DBIx::Class::DeploymentHandler' => 'DH';
74
75 my %options = (debug           => 0,
76                help            => 0,
77                man             => 0,
78                overwrite_deployment => 0,
79                service         => 'debbugs',
80                deployment_dir  => '/usr/share/debbugs/sqldeployment',
81               );
82
83 GetOptions(\%options,
84            'service|s=s',
85            'dsn=s',
86            'sysconfdir|c=s',
87            'install',
88            'install_version_storage|install-version-storage',
89            'upgrade',
90            'current_version|current-version',
91            'overwrite_deployment|overwrite-deployment|force_overwrite|force-overwrite',
92            'deployment_dir|deployment-dir=s',
93            'debug|d+','help|h|?','man|m');
94
95 pod2usage() if $options{help};
96 pod2usage({verbose=>2}) if $options{man};
97
98 $DEBUG = $options{debug};
99
100 my @USAGE_ERRORS;
101
102 my @exclusive_options = qw(install upgrade current_version install_version_storage);
103 if (1 < grep {exists $options{$_}} @exclusive_options) {
104       push @USAGE_ERRORS,"You must only give one of the ".
105           join(', ',map {s/_/-/g; "--".$_} @exclusive_options).
106           " options";
107 }
108 if (not grep {exists $options{$_}} @exclusive_options) {
109     $options{current_version} = 1;
110 }
111
112 pod2usage(join("\n",@USAGE_ERRORS)) if @USAGE_ERRORS;
113
114 if (exists $options{sysconfdir}) {
115     if (not defined $options{sysconfdir} or not length $options{sysconfdir}) {
116         delete $ENV{PGSYSCONFDIR};
117     } else {
118         $ENV{PGSYSCONFDIR} = $options{sysconfdir};
119     }
120 }
121
122 if (not exists $options{dsn} or
123     not defined $options{dsn} or
124     not length $options{dsn}) {
125     $options{dsn} = 'dbi:Pg:service='.$options{service};
126 }
127
128
129 my $schema = Debbugs::DB->connect($options{dsn}) or
130     die "Unable to connect to database";
131
132
133 my $dh = DH->new({schema => $schema,
134                   force_overwrite => $options{overwrite_deployment},
135                   script_directory => $options{deployment_dir},
136                   databases => 'PostgreSQL',
137                   sql_translator_args => {producer_args=> {postgres_version => 9}},
138                  });
139
140 if ($options{current_version}) {
141     print "The current database version is: ".$dh->database_version."\n";
142     exit 0;
143 } elsif ($options{install}) {
144     $dh->prepare_install;
145     $dh->install;
146     ## this is lame, but because the current release of DeploymentHandler does
147     ## not support WHERE or quoted indexes properly (fixed in git), we create
148     ## these indexes manually here.
149     $schema->storage->
150         dbh_do(sub{my ($s,$dbh) = @_;
151                    prepare_execute($dbh,<<SQL);
152 CREATE UNIQUE INDEX bug_status_cache_bug_col_suite_col_arch_idx ON
153  bug_status_cache(bug,COALESCE(suite,0),COALESCE(arch,0));
154 CREATE UNIQUE INDEX bug_status_cache_bug_suite_idx ON
155  bug_status_cache(bug,suite) WHERE arch is NULL;
156 CREATE UNIQUE INDEX bug_status_cache_bug_idx ON
157  bug_status_cache(bug) WHERE arch is NULL AND suite IS NULL;
158 SQL
159                    });
160 } elsif ($options{upgrade}) {
161     $dh->prepare_deploy;
162     $dh->prepare_upgrade;
163     $dh->upgrade;
164 } elsif ($options{install_version_storage}) {
165     $dh->prepare_version_storage_install;
166     $dh->install_version_storage;
167 }
168
169
170 __END__