3 """ Database Update Main Script
5 @contact: Debian FTP Master <ftpmaster@debian.org>
6 # Copyright (C) 2008 Michael Casadevall <mcasadevall@debian.org>
7 @license: GNU General Public License version 2 or later
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 ################################################################################
26 # <Ganneff> when do you have it written?
27 # <NCommander> Ganneff, after you make my debian account
28 # <Ganneff> blackmail wont work
29 # <NCommander> damn it
31 ################################################################################
41 from daklib import utils
42 from daklib.config import Config
43 from daklib.dak_exceptions import DBUpdateError
44 from daklib.daklog import Logger
46 ################################################################################
49 required_database_schema = 71
51 ################################################################################
54 def usage (self, exit_code=0):
55 print """Usage: dak update-db
56 Updates dak's database schema to the lastest version. You should disable crontabs while this is running
58 -h, --help show this help and exit."""
62 ################################################################################
64 def update_db_to_zero(self):
65 """ This function will attempt to update a pre-zero database schema to zero """
67 # First, do the sure thing, and create the configuration table
69 print "Creating configuration table ..."
71 c.execute("""CREATE TABLE config (
72 id SERIAL PRIMARY KEY NOT NULL,
73 name TEXT UNIQUE NOT NULL,
76 c.execute("INSERT INTO config VALUES ( nextval('config_id_seq'), 'db_revision', '0')")
79 except psycopg2.ProgrammingError:
81 print "Failed to create configuration table."
82 print "Can the projectB user CREATE TABLE?"
84 print "Aborting update."
87 ################################################################################
90 # We keep database revision info the config table
95 q = c.execute("SELECT value FROM config WHERE name = 'db_revision';")
96 return c.fetchone()[0]
98 except psycopg2.ProgrammingError:
99 # Whoops .. no config table ...
101 print "No configuration table found, assuming dak database revision to be pre-zero"
104 ################################################################################
106 def get_transaction_id(self):
108 Returns the current transaction id as a string.
110 cursor = self.db.cursor()
111 cursor.execute("SELECT txid_current();")
112 id = cursor.fetchone()[0]
116 ################################################################################
119 # Ok, try and find the configuration table
120 print "Determining dak database revision ..."
122 logger = Logger('update-db')
125 # Build a connect string
126 if cnf.has_key("DB::Service"):
127 connect_str = "service=%s" % cnf["DB::Service"]
129 connect_str = "dbname=%s"% (cnf["DB::Name"])
130 if cnf.has_key("DB::Host") and cnf["DB::Host"] != '':
131 connect_str += " host=%s" % (cnf["DB::Host"])
132 if cnf.has_key("DB::Port") and cnf["DB::Port"] != '-1':
133 connect_str += " port=%d" % (int(cnf["DB::Port"]))
135 self.db = psycopg2.connect(connect_str)
137 except Exception as e:
138 print "FATAL: Failed connect to database (%s)" % str(e)
141 database_revision = int(self.get_db_rev())
142 logger.log(['transaction id before update: %s' % self.get_transaction_id()])
144 if database_revision == -1:
145 print "dak database schema predates update-db."
147 print "This script will attempt to upgrade it to the lastest, but may fail."
148 print "Please make sure you have a database backup handy. If you don't, press Ctrl-C now!"
150 print "Continuing in five seconds ..."
153 print "Attempting to upgrade pre-zero database to zero"
155 self.update_db_to_zero()
156 database_revision = 0
158 print "dak database schema at %d" % database_revision
159 print "dak version requires schema %d" % required_database_schema
161 if database_revision == required_database_schema:
162 print "no updates required"
163 logger.log(["no updates required"])
166 for i in range (database_revision, required_database_schema):
168 dakdb = __import__("dakdb", globals(), locals(), ['update'+str(i+1)])
169 update_module = getattr(dakdb, "update"+str(i+1))
170 update_module.do_update(self)
171 message = "updated database schema from %d to %d" % (database_revision, i+1)
173 logger.log([message])
174 except DBUpdateError as e:
175 # Seems the update did not work.
176 print "Was unable to update database schema from %d to %d." % (database_revision, i+1)
177 print "The error message received was %s" % (e)
178 logger.log(["DB Schema upgrade failed"])
180 utils.fubar("DB Schema upgrade failed")
181 database_revision += 1
184 ################################################################################
188 arguments = [('h', "help", "Update-DB::Options::Help")]
190 if not cnf.has_key("Update-DB::Options::%s" % (i)):
191 cnf["Update-DB::Options::%s" % (i)] = ""
193 arguments = apt_pkg.ParseCommandLine(cnf.Cnf, arguments, sys.argv)
195 options = cnf.SubTree("Update-DB::Options")
199 utils.warn("dak update-db takes no arguments.")
200 self.usage(exit_code=1)
203 if os.path.isdir(cnf["Dir::Lock"]):
204 lock_fd = os.open(os.path.join(cnf["Dir::Lock"], 'dinstall.lock'), os.O_RDWR | os.O_CREAT)
205 fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
207 utils.warn("Lock directory doesn't exist yet - not locking")
209 if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
210 utils.fubar("Couldn't obtain lock; assuming another 'dak process-unchecked' is already running.")
215 ################################################################################
217 if __name__ == '__main__':