4 * StatusNet, the distributed open-source microblogging tool
6 * Database schema utilities
10 * LICENCE: This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 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 Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
37 public function __construct($schema)
39 $this->schema = $schema;
40 $this->checksums = $this->getChecksums();
44 * @param string $tableName
45 * @param array $tableDef
47 public function register($tableName, array $tableDef)
49 $this->tables[$tableName] = $tableDef;
55 * @fixme handle tables that belong on different database servers...?
57 public function checkSchema()
59 $checksums = $this->checksums;
60 foreach ($this->tables as $table => $def) {
61 $checksum = $this->checksum($def);
62 if (empty($checksums[$table])) {
63 common_log(LOG_DEBUG, "No previous schema_version for $table: updating to $checksum");
64 } else if ($checksums[$table] == $checksum) {
65 common_log(LOG_DEBUG, "Last schema_version for $table up to date: $checksum");
68 common_log(LOG_DEBUG, "Last schema_version for $table is {$checksums[$table]}: updating to $checksum");
70 //$this->conn->query('BEGIN');
71 $this->schema->ensureTable($table, $def);
72 $this->saveChecksum($table, $checksum);
73 //$this->conn->commit();
78 * Calculate a checksum for this table definition array.
83 public function checksum(array $def)
85 $flat = serialize($def);
90 * Pull all known table checksums into an array for easy lookup.
92 * @return array: associative array of table names to checksum strings
94 protected function getChecksums()
98 PEAR::pushErrorHandling(PEAR_ERROR_EXCEPTION);
100 $sv = new Schema_version();
102 while ($sv->fetch()) {
103 $checksums[$sv->table_name] = $sv->checksum;
107 } catch (Exception $e) {
109 common_log(LOG_DEBUG, "Possibly schema_version table doesn't exist yet.");
111 PEAR::popErrorHandling();
117 * Save or update current available checksums.
119 * @param string $table
120 * @param string $checksum
122 protected function saveChecksum($table, $checksum)
124 PEAR::pushErrorHandling(PEAR_ERROR_EXCEPTION);
126 $sv = new Schema_version();
127 $sv->table_name = $table;
128 $sv->checksum = $checksum;
129 $sv->modified = common_sql_now();
130 if (isset($this->checksums[$table])) {
135 } catch (Exception $e) {
137 common_log(LOG_DEBUG, "Possibly schema_version table doesn't exist yet.");
139 PEAR::popErrorHandling();
140 $this->checksums[$table] = $checksum;